@import url('https://fonts.googleapis.com/css2?family=Patrick+Hand&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Mono&display=swap');


:root {
    --main-darklg: #131313;
    --main-dark: #1a1a1a;
    --primary-color: #f75f18;
    --main-light: #eeeeee;
    --chat-bg: #2b2b2b;
    font-family: 'Fira Mono', monospace;
}

body {
    font-family: 'Fira Mono', monospace;
    min-height: 100vh;
    background-color: #343541;
    color: white;
}

.btn:focus {
    outline: none;
    box-shadow: none;
  }

.hidden {
    display: none;
}

.card, input, .password-input {
    background-color: #282831;
    color: rgb(218, 218, 218);
}

td, tr, th {
    color: rgb(218, 218, 218);
}

.movein {
    opacity: 0;
}

.navbar {
    background-color: #1d1e20 !important;
}

.bg-dark {
    background-color: #28283100 !important;
}

.progress {
    background-color: #18181d !important;
}

.badge {
    min-width: calc(100% - 30px) !important;
    overflow: hidden;
    max-width: 300px;
}

.AlignRight {
    text-align: right;
}

.AlignLeft {
    text-align: left;
}

.table-striped {
    border-color: #414150 !important;
}

#TimerLine {
    height: 2px;
    width: 70%;
    position: fixed;
    z-index: 1000;
    animation: progressbar-countdown;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
    animation-play-state: paused;
    animation-timing-function: linear;
}

@keyframes progressbar-countdown {
    0% {
      width: 100%;
    }
    100% {
      width: 0%;
    }
}