/* /Pages/Index.razor.rz.scp.css */
#main-bg[b-4mozd3gsk8] {
  position: relative;
  margin: 0;
  padding: 0;
  color: white;
  font-family: Arial, sans-serif;
  background-color: #111;
  z-index: -2;
}

#main[b-4mozd3gsk8] {
  height: 90vh;
}

#center[b-4mozd3gsk8] {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#scroll-hint[b-4mozd3gsk8] {
  height: 5vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1[b-4mozd3gsk8] {
  font-size: 8rem;
  display: flex;
  align-items: center;
  user-select: none;
}

h2[b-4mozd3gsk8] {
  font-size: 3rem;
  margin-top: 6rem;
  margin-bottom: 1rem;
}

p[b-4mozd3gsk8] {
  font-size: 1.25rem;
  max-width: 80vw;
  text-align: center;
}

.red[b-4mozd3gsk8] {
  color: red;
  margin-left: 0.2em;
}

.clock[b-4mozd3gsk8] {
  width: 1.2em;
  height: 1.2em;
  border: 0.1em solid white;
  border-radius: 50%;
  position: relative;
  margin: 0 10px;
  cursor: grab;
}

.hand[b-4mozd3gsk8] {
  position: absolute;
  width: 0.1em;
  height: 0.5em;
  top: 0;
  left: 50%;
  transform-origin: bottom center;
  border-radius: 0.1em;
}

.hour[b-4mozd3gsk8] {
  background: red;
}

.minute[b-4mozd3gsk8] {
  background: white;
}

.center[b-4mozd3gsk8] {
  max-width: 90vw;
  margin: 0.2em;
}

#display-diff[b-4mozd3gsk8] {
  font-size: 1.5em;
}

#sub-info[b-4mozd3gsk8] {
  font-size: 2em;
}

.arrow-down[b-4mozd3gsk8] {
  border: solid white;
  border-width: 0 0.5em 0.5em 0;
  padding: 0.5em;
  margin-bottom: 3em;
  display: inline-block;
  transform: rotate(45deg);
}

#content[b-4mozd3gsk8] {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#content  *:last-child[b-4mozd3gsk8] {
  margin-bottom: 3em;
}

.images[b-4mozd3gsk8] {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.images img[b-4mozd3gsk8] {
  width: 400px;
  max-width: 90vw;
  margin: 2em;
}

#background[b-4mozd3gsk8] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.background[b-4mozd3gsk8] {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("9/img/background.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

@media only screen and (max-width: 1100px) {
  h1[b-4mozd3gsk8] {
    font-size: 4rem;
  }
  
  h2[b-4mozd3gsk8] {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

@media only screen and (max-width: 600px) {
  h1[b-4mozd3gsk8] {
    font-size: 3rem;
  }
  
  h2[b-4mozd3gsk8] {
    font-size: 1.5rem;
    margin-top: 6rem;
    margin-bottom: 3rem;
  }

  #footer[b-4mozd3gsk8] {
    height: 16em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #footer span[b-4mozd3gsk8] {
    margin: 1em;
  }
}

@media only screen and (max-width: 400px) {
  h1[b-4mozd3gsk8] {
    font-size: 2rem;
  }
}

@media only screen and (max-height: 800px) {
  .arrow-down[b-4mozd3gsk8] {
    visibility: hidden;
  }
}
/* /Pages/ScoreboardTeamView.razor.rz.scp.css */
.scoreboard[b-a6gd0h9aib] {
    width: 100%;
    table-layout: fixed;
}

    /* Gracefully borrowed from bambiscoreboard. */
    .scoreboard .blood[b-a6gd0h9aib] {
        color: #b40000;
    }

    /* Flag stores should start at the top of their container */
    .scoreboard .firstblood-list-cell[b-a6gd0h9aib] {
        vertical-align: top;
    }

    /* The droplet and text is separated by 5px, and the text does not wrap over overflow. */
    .scoreboard .firstblood-list[b-a6gd0h9aib] {
        display: flex;
        overflow: hidden;
        gap: 5px;
        white-space: nowrap;
    }

    /* Our fa icons may be in <a> tags, but we don't want them blue */
    .scoreboard .fabutton[b-a6gd0h9aib] {
        color: inherit;
    }

    /* The backward buttons should stick to the left, the round to the middle, and the forward buttons to the right */
    .scoreboard .roundcontrol[b-a6gd0h9aib] {
        display: flex;
        justify-content: space-between;
    }

    /* Highlight your own team's row */
    .scoreboard .ownrow[b-a6gd0h9aib] {
        border: 1px solid rgb(198, 202, 209);
        border-collapse: collapse;
        background-color: dodgerblue;
    }

    /* Boring borders for the others */
    .scoreboard .otherrow[b-a6gd0h9aib] {
        border: 1px solid rgb(198, 202, 209);
        border-collapse: collapse;
    }

    /* The error message is visible if one hovers over the parent service-block */
    .scoreboard .service-block:hover .errormessage[b-a6gd0h9aib] {
        visibility: visible;
    }

    .scoreboard .errormessage[b-a6gd0h9aib] {
        transform: translateX(-50%) translateY(calc(-75% - .25em));
        border-radius: .5em;
        position: absolute;
        width: 20em;
        background-color: black;
        text-align: center;
        visibility: hidden;
        color: #fff;
        z-index: 1;
    }

    .scoreboard .rightaligned[b-a6gd0h9aib] {
        text-align: right;
    }

    .scoreboard .team-rank[b-a6gd0h9aib] {
        border: none;
        text-align: center;
    }

    .scoreboard .team-container[b-a6gd0h9aib] {
        overflow: hidden;
        font-weight: bold;
        border: none;
        display: flex;
        align-items: center;
    }

    .scoreboard .team-name[b-a6gd0h9aib] {
        padding: 16px;
    }

    .scoreboard .team-logo-container[b-a6gd0h9aib] {
        min-width: 64px;
        min-height: 64px;
    }

    .scoreboard .team-logo[b-a6gd0h9aib] {
        max-width: 64px;
        max-height: 64px;
    }

    .scoreboard .team-countryflag[b-a6gd0h9aib] {
        max-width: 32px;
        max-height: 32px;
    }

    .scoreboard .team-score[b-a6gd0h9aib] {
        border: none;
        padding: 2px;
    }

    .scoreboard .service-stats[b-a6gd0h9aib] {
        display: grid;
        grid-column-gap: 5px;
        grid-template-columns: min-content min-content min-content;
    }

    .scoreboard .scoreboard-icon[b-a6gd0h9aib] {
        line-height: inherit;
    }

    .scoreboard .scoreboard-text[b-a6gd0h9aib] {
        text-align: right
    }

.service-OK[b-a6gd0h9aib] {
    background-color: rgb(125, 252, 116);
}

.service-INTERNAL_ERROR[b-a6gd0h9aib] {
    background-color: white;
}

.service-RECOVERING[b-a6gd0h9aib] {
    background-color: rgb(81, 145, 255);
}

.service-MUMBLE[b-a6gd0h9aib] {
    background-color: rgb(255, 193, 0);
}

.service-OFFLINE[b-a6gd0h9aib] {
    background-color: rgb(255, 91, 91);
}

.service-INACTIVE[b-a6gd0h9aib] {
    background-color: gray;
}
/* /Pages/ScoreboardView.razor.rz.scp.css */
.scoreboard[b-sdvnsiey4d] {
    width: 100%;
    table-layout: fixed;
}

    /* Gracefully borrowed from bambiscoreboard. */
    .scoreboard .blood[b-sdvnsiey4d] {
        color: #b40000;
    }

    /* Flag stores should start at the top of their container */
    .scoreboard .firstblood-list-cell[b-sdvnsiey4d] {
        vertical-align: top;
    }

    /* The droplet and text is separated by 5px, and the text does not wrap over overflow. */
    .scoreboard .firstblood-list[b-sdvnsiey4d] {
        display: flex;
        overflow: hidden;
        gap: 5px;
        white-space: nowrap;
    }

    /* Our fa icons may be in <a> tags, but we don't want them blue */
    .scoreboard .fabutton[b-sdvnsiey4d] {
        color: inherit;
    }

    /* The backward buttons should stick to the left, the round to the middle, and the forward buttons to the right */
    .scoreboard .roundcontrol[b-sdvnsiey4d] {
        display: flex;
        justify-content: space-between;
    }

    /* Highlight your own team's row */
    .scoreboard .ownrow[b-sdvnsiey4d] {
        border: 1px solid rgb(198, 202, 209);
        border-collapse: collapse;
        background-color: dodgerblue;
    }

    /* Boring borders for the others */
    .scoreboard .otherrow[b-sdvnsiey4d] {
        border: 1px solid rgb(198, 202, 209);
        border-collapse: collapse;
    }

    /* The error message is visible if one hovers over the parent service-block */
    .scoreboard .service-block:hover .errormessage[b-sdvnsiey4d] {
        visibility: visible;
    }

    .scoreboard .errormessage[b-sdvnsiey4d] {
        transform: translateX(-50%) translateY(calc(-75% - .25em));
        border-radius: .5em;
        position: absolute;
        width: 20em;
        background-color: black;
        text-align: center;
        visibility: hidden;
        color: #fff;
        z-index: 1;
    }

    .scoreboard .rightaligned[b-sdvnsiey4d] {
        text-align: right;
    }

    .scoreboard .team-rank[b-sdvnsiey4d] {
        border: none;
        text-align: center;
    }

    .scoreboard .team-container[b-sdvnsiey4d] {
        overflow: hidden;
        font-weight: bold;
        border: none;
        display: flex;
        align-items: center;
    }

    .scoreboard .team-name[b-sdvnsiey4d] {
        padding: 16px;
    }

    .scoreboard .team-logo-container[b-sdvnsiey4d] {
        min-width: 64px;
        min-height: 64px;
    }

    .scoreboard .team-logo[b-sdvnsiey4d] {
        max-width: 64px;
        max-height: 64px;
    }

    .scoreboard .team-countryflag[b-sdvnsiey4d] {
        max-width: 32px;
        max-height: 32px;
    }

    .scoreboard .team-score[b-sdvnsiey4d] {
        border: none;
        padding: 2px;
    }

    .scoreboard .service-stats[b-sdvnsiey4d] {
        display: grid;
        grid-column-gap: 5px;
        grid-template-columns: min-content min-content min-content;
    }

    .scoreboard .scoreboard-icon[b-sdvnsiey4d] {
        line-height: inherit;
    }

    .scoreboard .scoreboard-text[b-sdvnsiey4d] {
        text-align: right
    }

.service-OK[b-sdvnsiey4d] {
    background-color: rgb(125, 252, 116);
}

.service-INTERNAL_ERROR[b-sdvnsiey4d] {
    background-color: white;
}

.service-RECOVERING[b-sdvnsiey4d] {
    background-color: rgb(81, 145, 255);
}

.service-MUMBLE[b-sdvnsiey4d] {
    background-color: rgb(255, 193, 0);
}

.service-OFFLINE[b-sdvnsiey4d] {
    background-color: rgb(255, 91, 91);
}

.service-INACTIVE[b-sdvnsiey4d] {
    background-color: gray;
}

.adv-scoreboard[b-sdvnsiey4d] {
    width: 100%;
    border-collapse : 'collapse';
    margin-top: 20px;
    font-family: Arial, sans-serif;
}

.adv-scoreboard-header[b-sdvnsiey4d] {
    background-color: #f2f2f2;
    color: #333;
}

.adv-scoreboard-header-cell[b-sdvnsiey4d] {
    font-weight: bold;
    text-align: center;
}

.adv-scoreboard-row[b-sdvnsiey4d], .adv-scoreboard-row-cell[b-sdvnsiey4d] {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
}

/* /Pages/TeamsView.razor.rz.scp.css */

.teams-list-container[b-wpbz7z5c32] {
    display: flex;
    align-items: center;
}
/*
    .teams-list-container:hover {
        background-color: #AA998e;
    }
*/
.team-list-item-logo-container[b-wpbz7z5c32] {
    min-width: 64px;
    min-height: 64px;
}

.team-list-item-logo[b-wpbz7z5c32] {
    max-width: 64px;
    max-height: 64px;
}

.team-list-item-name-container[b-wpbz7z5c32] {
    padding: 16px;
    overflow: hidden;
    width: 500px;
}

.team-list-item-countryflag[b-wpbz7z5c32] {
    max-width: 32px;
    max-height: 32px;
}
/* /Shared/MainLayout.razor.rz.scp.css */
/* /Shared/NavMenu.razor.rz.scp.css */
/*

@media (min-width: 900px) {
    .navbar-toggler {
        display: none;
    }

    .collapse {
        display: block; // Never collapse the sidebar for wide screens 
    }
}
*/
