::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #333;        /* color of the tracking area */
}

::-webkit-scrollbar-thumb {
    background-color: white;
    border-radius: 1px;
    border: 1px solid black;
}
head {
    background-color:white;
}
.full-screen {
    background-color: #777;
    border-bottom: 5px solid #555;
    display: table;
    width: 100%;
    padding-bottom: 20px;
}
@media (max-width: 1270px) {
    .full-screen {
        display: block;
    }
}
body {
    margin: 0;
    background-color: white;
}
.col-md-2 {
    padding: 10px;
    background-color: #777;
}
.col-md-3 {
    padding: 10px;
    background-color: #777;
}
.col-md-4 {
    padding: 10px;
    background-color: #777;
}
.col-md-6 {
    padding: 10px;
    background-color: #777;
}
.col-md-9 {
    padding: 10px;
    background-color: #777;
}
.col-md-12 {
    padding: 10px;
    background-color: #777;
}
.header {
    height: 100px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    overflow-y: hidden;
}
#main-content{
    height: 100%;
    white-space: nowrap;
    border-top: 1px solid #333;
    border-bottom: 5px solid black;
}
.menu-item {
    width: 3%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-item span {
    font-size: 18px;
    cursor: pointer;
}

.menu-content {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    padding-right: 20px; /* Platz für das Scrollbar */
}

.result-container {
    z-index: 2;
    min-width: 180px;
    border-right: 1px solid #777; /* Trennlinie zwischen den Spielen */
    padding-right: 10px; /* Platz für die Trennlinie */
    display: flex;
    justify-content: center;
    align-items: center;
}

.result-container:last-child {
    border-right: none; /* Die Trennlinie am Ende entfernen */
}

.result-table {
    width: 100%; /* Volle Breite des Containers */
    height: 100%;
    padding: 4px;
}

.result-table table {
    width: 100%;
    font-size: 12px;
    margin-top: 3px;
}
.result-table table tr {
    box-sizing: border-box;
    height: 30px;
    line-height: 80%;
}
.result-table table td {
    text-transform: uppercase; /* Großbuchstaben */
    font-family: "Madimi One", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
}

.result-container-date {
    z-index: 1;
    min-width: 70px;
    border-right: 1px solid #000; /* Trennlinie zwischen den Spielen */
    border-left: 1px solid #000; /* Trennlinie zwischen den Spielen */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 1px 1px 10px #555;
    margin-left: -4px;
    padding-right: -4px;

}

.result-container-date:last-child {
    border-right: none; /* Die Trennlinie am Ende entfernen */
}

.result-table-date {
    width: 100%; /* Volle Breite des Containers */
    height: 100%;
}

.result-table-date table {
    width: 100%;
    font-size: 12px;
    margin-top: 40px;
}
.result-table-date table tr {
    box-sizing: border-box;
    height: 30px;
}
.result-table-date table td {
    text-transform: uppercase; /* Großbuchstaben */
    font-family: "Aldrich", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
}

.menu {
    width: 100%;
    height: 60px;
    background-color: #333333;
    display: flex;
    border-top: 1px solid #999;
}

.menu2 {
    width: 100%;
    height: 40px;
    background-color: #344c59;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 3px solid black;
    padding-bottom: 15px;
}

.logo-container {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-container img {
    margin-right: 5px;
    margin-left: 5px;
    display: flex;
}

/* Logo im grauen Menü zentriert */
.menu .logo-container {
    height: 100%; /* Volle Höhe des Menüs */
    display: flex;
    align-items: center;
}

.menu-link {
    width: 100%;
    text-align: right;
    margin-right: 2%
}

.menu-link2 {
    width: 100%;
    text-align: center;
    margin-right: 2%;
    margin-left: 2%;
}

.menu-link a {
    text-transform: uppercase; /* Großbuchstaben */
    color: #ffffff; /* Farbe (rot) */
    text-decoration: none; /* Keine Unterstreichung */
    font-family: "Aldrich", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    display: inline-block;
    margin-top: 10px;
    margin-left: 15px;
    transition: color 0.3s, font-size 0.3s; /* Übergangseffekte für Farbe und Schriftgröße */
    text-decoration: none;
}

.menu-link a:hover {
    color: #777; /* Neue Farbe bei Hover (grün) */
    font-size: 12px; /* Größere Schriftgröße bei Hover */
    text-decoration: none;
}

.menu-link a:last-child {
    margin-right: 0; /* Kein Abstand für das letzte <a> Element */
}

.menu-link2 a {
    text-transform: uppercase; /* Großbuchstaben */
    color: #ffffff; /* Farbe (rot) */
    text-decoration: none; /* Keine Unterstreichung */
    font-family: "Aldrich", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    display: inline-block;
    margin-top: 10px;
    margin-left: 15px;
    transition: color 0.3s, font-size 0.3s; /* Übergangseffekte für Farbe und Schriftgröße */
    text-decoration: none;
}

.menu-link2 a:hover {
    color: #777; /* Neue Farbe bei Hover (grün) */
    font-size: 12px; /* Größere Schriftgröße bei Hover */
    text-decoration: none;
}

.material-symbols-outlined {
    font-size: 20px;
    font-variation-settings:
    'FILL' 1,
    'wght' 500,
    'GRAD' 200,
    'opsz' 24;
}

.material-symbols-outlined2 {
  font-variation-settings:
  'FILL' 1,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}


.aldrich-regular {
    font-family: "Aldrich", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

  .chakra-petch-light {
    font-family: "Chakra Petch", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .chakra-petch-regular {
    font-family: "Chakra Petch", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .chakra-petch-medium {
    font-family: "Chakra Petch", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .chakra-petch-semibold {
    font-family: "Chakra Petch", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .chakra-petch-bold {
    font-family: "Chakra Petch", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .chakra-petch-light-italic {
    font-family: "Chakra Petch", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .chakra-petch-regular-italic {
    font-family: "Chakra Petch", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .chakra-petch-medium-italic {
    font-family: "Chakra Petch", sans-serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .chakra-petch-semibold-italic {
    font-family: "Chakra Petch", sans-serif;
    font-weight: 600;
    font-style: italic;
  }
  
  .chakra-petch-bold-italic {
    font-family: "Chakra Petch", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
.imgbutton {
    height:25px;
    object-fit: cover;
}
.imgbutton2 {
    height:20px;
    object-fit: cover;
}
.imgbutton:hover {
    filter: brightness(0.8);
    object-fit: cover;
}

@keyframes backgroundAnimation {
    0% {
        background-position: 0% 0%; /* Anfangsposition des Gradients */
    }
    100% {
        background-position: 100% 100%; /* Endposition des Gradients */
    }
}

.alert-eel {
    padding: 15px;
    border: hidden;
    border-top: 7px solid black;
    background-color: rgb(251, 73, 73);
    border-radius:0px;
    margin-bottom:0px;
    height:50px;
}
.alert-eel-mitteilung {
    z-index: 2;
    min-width: 100%;
    max-width: 100%;
    padding-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height:18px;
}


.statscontainer {
    width: 100%;
    background: linear-gradient(to bottom, #8ED4FF, #004CB3); /* Hintergrundgradient */
    animation: backgroundAnimation 20s linear infinite; /* Animation des Hintergrundgradients */
    padding-bottom: 2px; 
    display: absolute; 
    height: 80px;
    border-top-left-radius:6px;
    border-top-right-radius:6px;padding:0px;
}
.titelcontainer {
    width: 100%;
    background: linear-gradient(to bottom, #8ED4FF, #004CB3); /* Hintergrundgradient */
    animation: backgroundAnimation 20s linear infinite; /* Animation des Hintergrundgradients */
    padding-bottom: 2px; 
    display: absolute; 
    height: 80px;
    border-top-left-radius:6px;
    border-top-right-radius:6px;padding:0px;
    display: flex;
    vertical-align: middle;
    align-items: center;
}
.titelcontainer b{
    font-size:20px;
    margin-left: 10px;
    color: white;
    text-shadow: 0px 0px 1px;
}

.panel-titelcontainer{
    padding-left: 5%;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding-bottom: 30px;
    padding-top: 20px;
    padding-right: 10px;
}

.register-box{
    display: flex;
    width: 100%;
}

.tresult {
    width: 100%;
    background: linear-gradient(#0364a9, #74caff); /* Hintergrundgradient */
    animation: backgroundAnimation 20s linear infinite; /* Animation des Hintergrundgradients */
    height: 70px;
    color: white;
    font-family: "Chakra Petch", sans-serif;
    font-weight: 700;
    font-style: italic;
    border-bottom: 2px solid black;
}

.result-box {
    background:#002d5d;
    color:white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: .4rem;
    padding-top: 2px;
    margin: auto;
    font-size: 22px;
    border:1px solid lightgrey;
}

.menuM {
    background: #666;
    background-blend-mode: screen;
    bottom: 0;
    display: flex;
    height: 8%;
    position: fixed;
    width: 100%;
    justify-content: center;
    border-top: 3px solid #323232;
    text-align: center;
    z-index: 9999;
}

.menuMNoLogin {
    background: #666;
    background-blend-mode: screen;
    bottom: 0;
    display: flex;
    height: 8%;
    position: fixed;
    width: 100%;
    justify-content: center;
    border-top: 3px solid #323232;
    text-align: center;
    z-index: 9999;
}

.menuMNoLogin:hover {
    background: #555;
    color: white;
}

.optionM {
    display: flex;
    justify-content: center;
    align-items: center;
}
