@media screen and (max-width: 2560px) {
/*======= BODY & MAIN =======*/
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
:root {
    --body-color: #887874;
    --container-color: #124554;
    --text-color: #c6b9b8;
    --nav-color: #93979d;
    --highlite: whitesmoke;
    --body-background: #222cb5;
}

body {
    display: flex;
    flex-direction: column;
    font-size: 17px;
    font-family: Arial, sans-serif;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    background-color: var(--body-background);
    color: var(--body-background);
}

body::before {
    content: ' ';
    display: block;
    background-position: center;
    background-size: cover;
    height: 100vh;
    width: 100vw;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: fixed;
    z-index: -10;
}
h1 {
    color: white;
}
div.scrollable-table {
    overflow-x: auto;
    max-width: 100%; /* Begrenze die Breite auf den verfügbaren Raum */
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
header, main, footer {
    padding: 20px;
}

main {
    flex: 1;
}
/* ======== TURNIER SEITE ========= */
.turnier-container {
    background-color: var(--container-color);
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    height: 100%;
    overflow: hidden;
}
/* #challonge-embed {
    width: 100%;
    height: 100%;
    border: none;
} */

/* ======== TURNIER SEITE ========= ENDE */
.swiper-slide img {
    width: 100%;
}
.swiper-pagination {
    position: relative;
}

.sponsor-thanks {
    text-align: center;
    margin: 5px;
}

.container .cantera {
    list-style: none;
}
.cantera-team {
    width: 300px;
}

.sponsor img {
    border-radius: 10px;
    background-color: var(--container-color);
    
}
.sponsor  {
    text-align: center;
    margin: 5px;
    width: 300px;
}

/* ============ LOGIN =============== */

.login-button a {
    align-items: center;
    text-align: center;
    text-decoration: none;
    width: 100%;
    color: var(--highlite);
    background-color: var(--container-color);
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.login-button a:hover {
    background-color: #555;
    border-radius: 20px;
}

/* ============ LOGIN =============== ENDE */

/* =========== Challonge =========== */
.turnier_login {
    display: flex;
    justify-content: center;
}
.login-container {
    background-color: #1e1e1e;
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}
.social-login {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.social-login button {
    display: flex;
    align-items: center;
    justify-content: center;  /* This ensures the text and icon are centered */
    background-color: #5865f2;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}
.social-login button.facebook {
    background-color: #1877f2;
}
.social-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.login-form {
    margin-bottom: 20px;
}
.login-form input {
    width: 93%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #444;
    border-radius: 20px;
    background-color: #2e2e2e;
    color: white;
    font-size: 14px;
}
.login-form .remember {
    /* display: flex; */
    align-items: center;
    margin-bottom: 20px;
    font-size: 10px;
}
.login-form .remember label {
    display: flex;
    align-items: center;
    background-color: var(--container-color);
    border-radius: 20px;
}
.checkbox-label {
    font-size: 10px;
}

.login-form .forgot-password {
    font-size: 14px;
    color: #f7931e;
    text-decoration: none;
}

.login-button {
    border: none;
    color: var(--highlite);
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    display: none;
    align-items: center;
}

#popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
/* =========== Challonge ENDE =========== */

/* =====BUCHUNGSSEITE ========*/
     /* Einbindung des CSS aus deiner style.css */
     html,
     body {
         height: 100%;
         margin: 0;
         padding: 0;
     }

     :root {
         --body-color: #887874;
         --container-color: #124554;
         --text-color: #c6b9b8;
         --nav-color: #93979d;
         --highlite: whitesmoke;
     }


     header,
     main {
         padding: 20px;
     }


     table {
         width: 100%;
         border-collapse: collapse;
         background-color: var(--highlite);
         color: var(--body-background);
     }

     #bookingTable {
         width: 95%;
         margin: 0 auto;
     }

     th,
     td {
         border: 1px solid black;
         padding: 8px;
         text-align: center;
     }

     .booked {
         /* background-color: #f8d7da; */
         color: #721c24;
         font-weight: bold;
     }

     #logoutButton {
         display: none;
         padding: 10px;
         background-color: var(--highlite);
         color: var(--body-background);
         border: 1px solid #f5c6cb;
         border-radius: 5px;
         cursor: pointer;
     }

     #profileButton {
         display: none;
         margin: 20px 0;
         cursor: pointer;
         background: url('../Bilder/Icon/head.svg') no-repeat center center;
         width: 50px;
         height: 50px;
         background-size: cover;
         border: none;
     }

     #profileModal {
         color: var(--container-color);
         display: none;
         position: fixed;
         z-index: 1;
         left: 0;
         top: 0;
         width: 100%;
         height: 100%;
         overflow: auto;
         background-color: rgb(0, 0, 0);
         background-color: rgba(0, 0, 0, 0.4);
     }

     #profileContent {
         background-color: #fefefe;
         margin: 15% auto;
         padding: 20px;
         border: 1px solid #888;
         width: 80%;
     }

     #closeProfile {
         color: #aaa;
         float: right;
         font-size: 28px;
         font-weight: bold;
         cursor: pointer;
     }

     #closeProfile:hover,
     #closeProfile:focus {
         color: black;
         text-decoration: none;
         cursor: pointer;
     }

     .calendar {
         margin: 0 auto;
         font-family: Arial, sans-serif;
     }

     .calendar header {
         display: flex;
         justify-content: space-between;
         align-items: center;
     }

     .calendar table {
         width: 100%;
         border-collapse: collapse;
         background-color: var(--container-color);
         color: var(--text-color);
     }

     .calendar th,
     .calendar td {
         text-align: center;
         padding: 10px;
         cursor: pointer;
     }

     .calendar th {
         background-color: var(--nav-color);
     }

     .calendar td:hover {
         background-color: #e0e0e0;
     }

     .calendar .today {
         background-color: #87ceeb;
         color: white;
     }

     .calendar .disabled {
         color: #ccc;
         cursor: not-allowed;
     }

     select,
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="date"],
    input[type="tel"],
    textarea {
        border-radius: 5px;
        background-color: var(--highlite);
        color: var(--body-background);
        padding: 5px;
        border: 1px solid var(--body-background);
}

    input::placeholder,
    textarea::placeholder {
     color: blue;
    }
    

     button {
         color: var(--container-color);
         background-color: var(--body-color);
         border-style: outset;
         border-radius: 5px;
         padding: 10px 20px;
         cursor: pointer;
     }

     button:hover {
         color: var(--text-color);
         background-color: var(--nav-color);
     }

     .popup {
         display: none;
         position: fixed;
         z-index: 1000;
         left: 0;
         top: 0;
         width: 100%;
         height: 100%;
         overflow: auto;
         background-color: rgba(0, 0, 0, 0.5);
     }

     .popup-content {
         background-color: #fefefe;
         margin: 15% auto;
         padding: 20px;
         border: 1px solid #888;
         width: 80%;
         max-width: 300px;
         border-radius: 10px;
     }

     .close-popup {
         color: #aaa;
         float: right;
         font-size: 28px;
         font-weight: bold;
         cursor: pointer;
     }

     .close-popup:hover,
     .close-popup:focus {
         color: black;
         text-decoration: none;
         cursor: pointer;
     }

     .booking_table {
         border: none;
         border-radius: 50px;
     }


     #registerForm>button[type="submit"] {
         display: block;
     }

     .rangliste {
         background-color: #808080;
         /* Grau */
         color: white;
     }

     .punktspiel {
         background-color: #FF0000;
         /* Rot */
         color: white;
     }

     .turnier {
         background-color: #008000;
         /* Grün */
         color: white;
     }

     .training {
         background-color: #FFFF00;
         /* Gelb */
         color: black;
     }

     /* ===============BUCHUNHSSEITE ENDE ===========*/

.menu-toggle {
    order: 1; /* Ändert die Reihenfolge, damit der Hamburger-Button nach links verschoben wird */
    margin-right: auto; /* Schiebt den Hamburger-Button ganz nach links */
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: fixed;
    top: 10px;
    left: 10px; /* Positioniert den Button 10px von der linken Seite */
    transform: none; /* Entfernt die Zentrierung */
    z-index: 999; /* Stellen Sie sicher, dass der Button über anderen Elementen liegt */
}

.menu-toggle .bar {
    background-color: var(--highlite);
    width: 30px; /* Breite der einzelnen "Bar" */
    height: 3px; /* Höhe der einzelnen "Bar" */
    margin: 5px 0; /* Abstand zwischen den Bars */
    transition: 0.3s ease;
}

.hidden {
    display: none;
}

.container_galarie {
    width: 90%;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}

.team-info-container {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.team-photo-container {
    flex: 0 0 auto;
}

.team-data-container {
    flex: 1;
}

.Ligainfo,
.Spieltermine {
    width: 100%;
}

i {
    /* font-size: 50px; */
    /* color: var(--text-color); */
    padding-right: 8px;
}

i:hover {
    text-shadow: 0 0 20px;
}

nav ul {
    width: 100%;
    display: flex;
    background-color: var(--nav-color);
    padding: 0;
    list-style: none;
}

.activ {
    /* background-color: var(--highlite); */
    text-decoration: underline;
}

.activ a {
    color: var(--container-color);
}

nav li {
    padding: 10px;
}

li a {
    text-decoration: none;
    color: var(--container-color);
}

nav ul :hover {
    background-color: var(--highlite);
    color: var(--container-color);
}

/*Formatierungen INDEX*/

.bildercontainer {
    padding: 20px;
    /* background-color: var(--container-color); */
    margin-top: 20px;
    text-align: center;
    margin: 5px;
}
.carousel-inner img {
    width: 100%;
    height: auto;
}

.carousel-caption h5 {
    background-color: rgba(0, 0, 0, 0.5);
    display: inline;
    padding: 10px;
}

.bilderboxlarge {
    text-align: center;
}

.bilderboxsmall {
    text-align: center;
    flex-wrap: wrap;
    gap: 10px;
}

.bilderboxsmall img {
    width: calc(80.33% - 10px);
    max-width: 100%;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
    align-items: center;
    text-align: center;
    border-radius: 50%;
    justify-content: center;
}

.bilderboxsmall img:hover {
    transform: scale(1.1);
}

.bildercontainer h3 {
    text-align: left;
}

caption {
    text-align: center;
}
.Ligainfo {
    text-align: left;
    margin-bottom: 1rem;
    border-spacing: 5px;
}
.result-set {
    border-spacing: 5px;
    width: 100%;
}
.tabelle_nuliga div {
    overflow: auto;
}
#test40 td:nth-child(1),
#test40 th:nth-child(1) {
    display: none;
}
/* ============================= JUNIOREN A ================================*/
#junioren_a_3 td:nth-child(3),
#junioren_a_3 th:nth-child(3) {
    display: none;
}
#junioren_a_3 td:nth-child(5),
#junioren_a_3 th:nth-child(5) {
    display: none;
}
#junioren_a_3 td:nth-child(6),
#junioren_a_3 th:nth-child(6) {
    display: none;
}
#junioren_a_3 td:nth-child(7),
#junioren_a_3 th:nth-child(7) {
    display: none;
}
#junioren_a_3 td:nth-child(8),
#junioren_a_3 th:nth-child(8) {
    display: none;
}
#junioren_a_3 td:nth-child(9),
#junioren_a_3 th:nth-child(9) {
    display: none;
}

/* ============================= JUNIOREN B ================================*/
#junioren_b_2 td:nth-child(3),
#junioren_b_2 th:nth-child(3) {
    display: none;
}
#junioren_b_2 td:nth-child(5),
#junioren_b_2 th:nth-child(5) {
    display: none;
}
#junioren_b_2 td:nth-child(6),
#junioren_b_2 th:nth-child(6) {
    display: none;
}
#junioren_b_2 td:nth-child(7),
#junioren_b_2 th:nth-child(7) {
    display: none;
}
#junioren_b_2 td:nth-child(8),
#junioren_b_2 th:nth-child(8) {
    display: none;
}
#junioren_b_2 td:nth-child(9),
#junioren_b_2 th:nth-child(9) {
    display: none;
}
/* ============================= JUNIOREN C ================================*/
#junioren_c_2 td:nth-child(3),
#junioren_c_2 th:nth-child(3) {
    display: none;
}
#junioren_c_2 td:nth-child(5),
#junioren_c_2 th:nth-child(5) {
    display: none;
}
#junioren_c_2 td:nth-child(6),
#junioren_c_2 th:nth-child(6) {
    display: none;
}
#junioren_c_2 td:nth-child(7),
#junioren_c_2 th:nth-child(7) {
    display: none;
}
#junioren_c_2 td:nth-child(8),
#junioren_c_2 th:nth-child(8) {
    display: none;
}
#junioren_c_2 td:nth-child(9),
#junioren_c_2 th:nth-child(9) {
    display: none;
}
/* ============================= JUNIOREN u10 ================================*/
#junioren_u10_2 td:nth-child(3),
#junioren_u10_2 th:nth-child(3) {
    display: none;
}
#junioren_u10_2 td:nth-child(5),
#junioren_u10_2 th:nth-child(5) {
    display: none;
}
#junioren_u10_2 td:nth-child(6),
#junioren_u10_2 th:nthild(6) { /* corrected typo */
    display: none;
}
#junioren_u10_2 td:nth-child(7),
#junioren_u10_2 th:nthild(7) { /* corrected typo */
    display: none;
}
#junioren_u10_2 td:nth-child(8),
#junioren_u10_2 th:nthild(8) { /* corrected typo */
    display: none;
}
#junioren_u10_2 td:nth-child(9),
#junioren_u10_2 th:nthild(9) { /* corrected typo */
    display: none;
}
/* ============================= Herren 30 ================================*/

#test44 td:nth-child(3),
#test44 th:nth-child(3) {
    display: none;
}
#test44 td:nth-child(5),
#test44 th:nth-child(5) {
    display: none;
}
#test44 td:nth-child(6),
#test44 th:nth-child(6) { /* corrected typo */
    display: none;
}
#test44 td:nth-child(7),
#test44 th:nth-child(7) { /* corrected typo */
    display: none;
}
#test44 td:nth-child(8),
#test44 th:nth-child(8) { /* corrected typo */
    display: none;
}
#test44 td:nth-child(9),
#test44 th:nth-child(9) { /* corrected typo */
    display: none;
}
/*Einzelne Box Angespochen Large*/
.boxlarge {
    flex: 2;
    border: 0 solid #ccc;
    margin: 5px;
    text-align: center;
}
.boxlarge a {
    color: var(--container-color);
}
img.flex2 {
    width: 100%;
    min-width: 250px;
    max-width: 250px;
}

.boxsmall {
    flex: 1;
    border: 0 solid #ccc;
    margin: 10px;
    text-align: center;
}
/* =======================    Kontaktformular angesprochen ================*/
input {
    color: var(--highlite);
    border-radius: 5px;
    height: 30px;
    font-family: Lucida Sans, sans-serif;
    background-color: var(--nav-color);
    border-style: solid;
}
textarea {
    width: 95%;
    border-radius: 5px;
    resize: none;
    font-family: Lucida Sans, sans-serif;
    background-color: var(--highlite);
}

select {
    border-radius: 5px;
    /* background-color: var(--text-color); */
}
input[type="checkbox"] {
    width: 15px;
    height: 15px;
    margin: 0 auto;
}
.checkbox {
    text-align: center;
}

/* ==============    Absendebutton    =======================*/
button:hover {
    color: var(--text-color);
    background-color: var(--nav-color);
    /* border-radius: 20px; */
    font-family: Lucida Sans, sans-serif;
}
button {
    color: var(--container-color);
    background-color: var(--body-color);
    border-style: outset;
    border-radius: 5px;
    font-family: Lucida Sans, sans-serif;
}

.Spieltermine {
    border-collapse: collapse;
    border-collapse: separate;
    border-spacing: 5px;
}

.result-set {
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.center {
    text-align: center;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: var(--container-color);
}
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}
.close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: var(--text-color);
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    margin: 20px 0;
}

.team-member {
    flex: 1 1 45%; /* Passt die Breite der Teammitglieder im Desktop-Layout an */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin: 10px;
    text-align: center;
    padding: 20px;
    background-color: var(--highlite);
}

.team-photo {
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}
.team-photo-heim {
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.bildervorstand {
    height: 100px;
    border-radius: 40%;
}

.team-member h2 {
    font-size: 1.5em;
    margin: 10px 0;
}

.team-member h3 {
    font-size: 1.2em;
    color: var(--body-background);
    margin-bottom: 10px;
}

.team-member p {
    font-size: 0.9em;
    line-height: 1.4em;
}
.email-icon, .phone-icon {
    height: 50px;
    cursor: pointer;
    /* filter: brightness(0) invert(1); Macht das Icon schwarz */
    color: black; /* Funktioniert für Font-Icons */
    height: 50px;
    cursor: pointer;
}
    form {
        width: 100%;
        box-sizing: border-box;
    }

    input[type="text"],
    input[type="date"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    textarea,
    select,
    button, #logoutbutton {
        width: 95%;
        /* padding: 20px; */
        margin-bottom: 15px;
        box-sizing: border-box;
        font-size: 1rem;
        /* margin: 10px; */

    }

    label {
        /* display: block; */
        margin-bottom: 10px;
    }

    button {
        background-color: var(--nav-color); /* Ein Beispiel für eine Hintergrundfarbe */
        color: var(--body-background);
        font-size: 18px;
        cursor: pointer;
        border: none;
    }

    button:hover {
        background-color: #45a049;
    }



/* ==================== Formatierungen Impressum ===========*/
.datenschutz a {
    color: var(--text-color);
}

hr {
    background-color: var(--nav-color);
    backdrop-filter: blur(5px);
    border-radius: 5px;
    border: none;
    height: 5px;
}

.gallery-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 95%;
    margin-top: 5px;
}

.main-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border: 2px solid #ccc;
}

.thumbnail-container {
    justify-content: center;
    margin-top: 10px;
    width: 100%;
    text-align: center;
}

.thumbnail {
    width: 80px;
    height: 80px;
    margin: 0 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.3s ease;
}

.thumbnail:hover {
    border: 2px solid var(--nav-color);
}

footer {
    background-color: var(--highlite); 
    color: var(--body-background);
    text-align: center; 
    padding: 20px 0; 
    position: relative;
}

.footer-imp a {
    color: var(--body-background); 
    text-decoration: none; 
}

.footer-imp a:hover {
    text-decoration: underline; 
}

#tabs {
    margin: 0 auto;
    border-radius: 5px;
    border: none;
}

.ui-tabs .ui-tabs-nav {
    background: var(--highlite);
    border: none;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 0;
    margin: 0;
    list-style: none;
    justify-content: center; /* Zentriert die Tabs horizontal */
    text-align: center;
    align-items: center;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    border: none;
    background-color: var(--highlite);
}

.ui-tabs .ui-tabs-nav li {
    margin: 0;
    padding: 0;
}

.ui-tabs .ui-tabs-nav li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--nav-color);
    font-weight: bold;
    /* border-radius: 10px 10px 0 0; */
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active a {
    background: var(--nav-color);
    color: var(--highlite);
    border-bottom: 1px solid var(--container-color);
}

.ui-tabs .ui-tabs-panel {
    padding: 20px;
    border: 1px solid var(--container-color);
    border-radius: 0 0 10px 10px;
    color: var(--body-background);
}

/* ================ MEDIA Q ==================*/

    .thumbnail {
        width: 60px;
        height: 60px;
    }

    h1, h4, .container h3 {
        text-align: center;
        font-size: 1.2rem;
    }

    .menu-toggle {
        display: flex;
        transition: opacity 0.5s ease;
    }
    .menu-toggle.hide {
        opacity: 0;
        pointer-events: none;
    }

    .maps-container {
        width: 100%;
        height: 450px;
        margin-top: 20px;
    }
    
    .maps-container iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }
    .email-phone-icon {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .team-info-container {
        flex-direction: column;
    }

    .team-data-container,
    .team-photo-container {
        width: 100%;
        text-align: center;
    }

    .team-member {
        flex: 1 1 100%;
    }

    .team-photo {
        height: 250px;
    }
    .team-photo-heim {
        height: 150px;
    }

    .team-member h2 {
        font-size: 1.2em;
        color: var(--body-background);
    }

    .team-member h3 {
        font-size: 1em;
    }

    .team-member p {
        font-size: 0.8em;
    }

    .navbar {
        z-index: 2;
        top: 55px;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transition: max-height 0.5s ease, opacity 0.5s ease;
    }

    .navbar.active {
        max-height: 500px;
        opacity: 1;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        align-items: center;
        padding: 0;
        margin: 0;
        display: none;
    }

    nav li {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .Spieltermine {
        width: 100%;
        
        overflow-x: auto;
       
        display: block;
        white-space: nowrap;
        
    }

    .Spieltermine td,
    .Spieltermine th {
        font-size: 12px;
        padding: 8px;
    }

    .Spieltermine a {
        font-size: 12px;
        margin: 0;
        padding: 0;
    }

    

    #herren40, #juniorenB, #juniorenC, #junioren_u10 {
        text-align: center;
        font-size: 1.7rem;
        color: var(--body-background);
    }

    .tabellekontakt {
        width: 10%;
        background-color: var(--text-color);
    }
    .Ligainfo {
        text-align: center;
        margin-bottom: 1rem;
        border-spacing: 5px;
    }
    caption, .tabelle_nuliga p {
        font-size: 1.2rem;
    }
    footer {
        font-size: 1rem;
        
        width: 100%;
    }

    .ui-tabs .ui-tabs-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .ui-tabs .ui-tabs-nav li {
        width: 100%;
        text-align: center;
        /* margin: 5px 0;  */
    }

    .ui-tabs .ui-tabs-nav li a {
        display: block;
        width: 100%;
        padding: 10px;
        text-align: center;
        box-sizing: border-box; 
    }

.ui-widget-content a {
    color: var(--body-background);
}
.ui-widget.ui-widget-content {
    background-color: var(--highlite);
}


.cookie-consent-banner {
    display: none;  
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background-color: var(--container-color);
    color: var(--text-color);
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    text-align: center;
    border-radius: 5px;
}

.cookie-consent-banner p {
    margin: 0 0 10px;
    font-size: 14px;
}

.cookie-consent-banner a {
    color: var(--nav-color);
    text-decoration: none;
}

.cookie-consent-banner a:hover {
    text-decoration: underline;
}

.cookie-consent-banner button {
    background-color: var(--nav-color);
    color: var(--text-color);
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
}
.ui-widget-content {
    color: var(--text-color);
}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    border-color: var(--body-background);
}

.cookie-consent-banner button:hover {
    background-color: var(--text-color);
}


.cc-window {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    width: 300px; /* Passen Sie die Breite nach Bedarf an */
    height: auto;
    z-index: 1000; /* Stellt sicher, dass das Popup über anderen Inhalten liegt */
    background-color: #000;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 10px; /* Optional: für abgerundete Ecken */
}

.cookieconsent {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #000;
    color: var(--text-color);
    z-index: 1000;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookieconsent a {
    color: var(--text-color-color);
    text-decoration: none;
}

.cookieconsent button {
    background-color: var(--nav-color);
    color: var(--container-color);
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

    .cookieconsent {
        flex-direction: column;
        text-align: center;
    }

    .cookieconsent button {
        margin-top: 10px;
    }


/* Cookie-Policy Seite spezifische Stile */
.container, .herren40 {
    background-color: var(--highlite);
    border-radius: 5px;
    margin: 20px auto;
    max-width: 800px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.container_h2 {
    background-color: var(--highlite);
    border-radius: 5px;
    /* margin: 0px auto; */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    /* width: 97%; */
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    color: var(--body-background);
}

.container_kinder {
    text-align: center;
    /* background-color: var(--highlite); */
    border-radius: 5px;
    text-align: left;
    list-style: none;

}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    background-color: var(--highlite);
    color: var(--body-background);
}
.container_kinder_h3 {
    text-align: center;
    background-color: var(--highlite);
    border-radius: 5px;
}


/* .container .boxlarge{
 margin-top: 50px; 
} */
.container_h1 {
    width: 95%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.container h1, .container h2, .container h3 {
    color: var(--body-background);
}
.container p, .container ul {
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
}
.container a {
    /* color: var(--highlite); */
    text-decoration: none;
}
.container a:hover {
    text-decoration: underline;
}

.container ul {
    list-style: inside square;
}

.container li {
    margin-bottom: 10px;
}

/* Für das Karussell */
.container-galarie {
    width: 95%;
    overflow: hidden;
    position: relative;
    margin-bottom: 5px;
}

.gallery-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.gallery-wrapper img {
    min-width: 100%;
    flex-shrink: 0;
}

/* Pfeile für das Karussell */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}
.resulatat ul{
    text-align: left;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}


    .gallery-wrapper img {
        width: 100%;
    }
}

.p_links {
    text-align: left;
}