.select-box {
    padding: 10px;
    margin: 6px 0;
    border-radius: 6px;
    cursor: pointer;
    background: #eee;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.select-box.selected {
    background: #b7e5b7;
    border-color: #3fa63f;
}

.team-box {
    font-weight: bold;
}

.team-header {
    background: var(--spot1);
    color: #fff;
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.team-row {
    display: flex;
    align-items: center;
}

.team-logo-wrap {
    width: 50px;        /* feste Spaltenbreite */
    text-align: center;
}

.team-logo {
    max-width: 40px;
    height: auto;
}

.team-name {
    padding-left: 10px;
}

.team-players {
    display: none;
    padding: 5px 10px;
}

.form-submit {
    margin-top: 20px;
}

#tipp_footer{
    background-color: black;
    text-align: center;
    position: relative;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 900px;
    clear: left;

}
]

/* ==========================
   Mobile Optimierung – Schriftgrößen
   ========================== */

@media (max-width: 768px) {

    /* Basis */
    body {
        font-size: 16px;
        line-height: 1.4;
    }

    /* Seitenüberschriften */
    h1 {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    h2, h3 {
        font-size: 1.2rem;
    }

    /* Vereins-Boxen (Site 1 & 2) */
    .team-box {
        font-size: 1.05rem;
        font-weight: 600;
    }

    /* Vereins-Header (Site 3) */
    .team-header {
        font-size: 1.1rem;
        font-weight: 600;
    }

    /* Spieler-Box */
    .player-box {
        font-size: 0.95rem;
    }

    /* Geburtsdatum dezent */
    .player-box span.geb {
        font-size: 0.85rem;
        opacity: 0.8;
    }

    /* Klickbox allgemein */
    .select-box {
        padding: 14px;
    }

    /* Submit Button */
    .form-submit input[type="submit"] {
        font-size: 1.15rem;
        font-weight: 600;
    }
}


.arrow::before {
  content: "➔ ";  /* Pfeil vor dem Text */
}


/* -------------------------------
   Submit-Button Styling
   ------------------------------- */
.form-submit {
    width: 100%;
    margin: 10px 0; /* Abstand oben/unten */
}

.form-submit input[type="submit"] {
    width: 100%;                     /* volle Breite */
    background-color: var(--spot2);       /* $spot2 */
    color: white;                    /* Textfarbe */
    font-family: 'Titillium Web', sans-serif; /* Schrift wie im Rest */
    font-size: 1.2em;                /* Desktop-Schriftgröße */
    font-weight: 700;                /* fetter Text */
    text-align: center;              /* Text zentrieren */
    padding: 12px 0;                 /* Höhe des Buttons */
    border: none;                    /* Rahmen entfernen */
    border-radius: 5px;              /* abgerundete Ecken */
    cursor: pointer;                 /* Mauszeiger */
    transition: background-color 0.3s ease; /* sanfte Hover-Animation */
}

.form-submit input[type="submit"]:hover {
    background-color: var(--spot3);       /* dunklerer Ton beim Hover */
}

/* -------------------------------
   Mobile-Anpassungen
   ------------------------------- */
@media screen and (max-width: 768px) {
    .form-submit input[type="submit"] {
        font-size: 1em;              /* kleinere Schrift auf mobilen Geräten */
        padding: 10px 0;             /* Höhe anpassen */
    }
}

@media screen and (max-width: 480px) {
    .form-submit input[type="submit"] {
        font-size: 0.95em;           /* noch kleinere Schrift für sehr kleine Geräte */
        padding: 8px 0;              /* Höhe verringern */
    }
}



/*------------------

Formularfelderr

----------------------*/

.contact-form {
  max-width: 500px; /* Breite des Formulars */
  display: flex;
  flex-direction: column;
  gap: 12px; /* Abstand zwischen den Feldern */
}

.form-row {
  display: flex;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.form-group label,
.form-label {
  margin-bottom: 4px;
  font-weight: 600;
}


.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="date"] {
  padding: 8px;
  font-size: 1em;
  width: 100%;
  box-sizing: border-box;
}

.street-wrapper {
    display: flex;
    
}

.street {
   width: 100%;
    margin-right: 8px;
    
}

.street-number {
 width: 100% 
}

.plz {
  width: 100%;
  
}

.ort {
  width: 100%;
}

.form-submit input[type="submit"],
.form-submit-button {
  background-color: #52b0ff; /* z.B. $spot1 */
  color: #fff;
  font-size: 1.1em;
  font-weight: 700;
  border: none;
  padding: 12px;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

.form-submit input[type="submit"]:hover
.form-submit-button:hover {
  background-color: #3990cc;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5em; /* Abstand zwischen Checkbox und Text */
    font-family: 'Titillium Web', sans-serif;
    font-size: 1em;
    line-height: 1.5em;
}

.checkbox-label a {
    color: #199acf; /* Link-Farbe */
    text-decoration: underline;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.2em; /* Checkbox leicht vertikal anpassen */
}


.checkbox-label {
  display: flex;
  align-items: flex-start; /* Checkbox oben mit Text ausrichten */
  gap: 10px; /* Abstand zwischen Checkbox und Text */
}

.checkbox-text {
  display: block; /* Text nimmt volle Breite ein */
}