
/*--------------------------------------------------------------
# schul-it.html
--------------------------------------------------------------*/

    .accordion-clean .accordion-button {
  background-color: white;
  color: inherit;
  font-weight: normal;
  box-shadow: none;
}

/* Zustand: geöffnet */
.accordion-clean .accordion-button:not(.collapsed) {
  background-color: #dee2e6 !important;
  color: #000 !important;
  font-weight: normal !important;
  box-shadow: none !important;
}

/* Entfernt das Standard-Pfeil-Icon von Bootstrap */
.accordion-clean .accordion-button::after {
  background-image: none !important;
  display: none !important;
}

    .accordion-body {
    padding-left: 2.7rem; /* exakt wie .accordion-button Icon + Abstand */
  }

  .accordion-body a {
    display: block;
    margin-bottom: 0.0rem;
    text-decoration: none;
  }

  .accordion-begrenzt {
  width: 100%;
  max-width: 770px;
  margin: 0 auto;
  padding: 0 15px; /* etwas Innenabstand links/rechts auf kleinen Screens */
}


 /*Für "Tabelle"*/

    .form-container {
      max-width: 800px;
      margin: 0 auto;
      padding: 20px;
      border-color: #DEE2E6;
    }

    .table {
      width: 100%;
    }

     .form-control:focus, .form-select:focus {
    border-color: #00937a !important; /* Grün */
    box-shadow: none !important; /* Kein blauer Shadow */
    outline: none !important;     /* Kein zusätzlicher Rand */
  }


/*Für "Links wie Datenschutz, Grafik neu laden, Bitte auswählen, placeholder, Ihre Nachricht"*/


  /* Standard-Style (für Desktop) */
.form-label a,
.mt-2 a {
  color: #555;
  text-decoration: underline;
  text-decoration-style: dotted; /* Desktop: gepunktet */
  transition: all 0.2s ease-in-out;
}

/* Hover-Effekt auf Desktop */
.form-label a:hover,
.mt-2 a:hover {
  color: #00937a;
}

/* Style speziell für Smartphones */
@media (max-width: 768px) {
  .form-label a,
  .mt-2 a {
    text-decoration-style: dotted; /* Mobile: normale Unterstreichung */
  }
}

  .form-label {
    font-size: 16px; /* Schriftgröße */
    color: #444444;   /* Schriftfarbe (z.B. Blau) */
  }

  .form-select {
    font-size: 14px;
    color: #595c5f; /* Textfarbe innerhalb des Dropdowns */
  }

  input::placeholder {
    color: #595c5f;       /* Farbe des Platzhalters */
    font-size: 14px;      /* Schriftgröße des Platzhalters */
   /* font-style: italic; Optional: kursiv */
  }

  .custom-textarea::placeholder {
    color: #595c5f;
    font-size: 14px;
  }