
/*--------------------------------------------------------------
# Schulgeld
--------------------------------------------------------------*/

.btn-primary {
  background-color: #00937a !important;
  border-color: #00937a !important;
  color: #fff !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #007e69 !important;
  border-color: #007e69 !important;
  color: #fff !important;
}



/* Allgemeiner Stil für alle Tabs */
.tab-titel {
  color: #000;
  font-weight: normal;
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* Hover für alle Tabs */
.tab-titel:hover {
  background-color: #f0f0f0;
  color: #000;
}

/* Aktiver Tab */
.tab-titel.active {
  background-color: #f4f6f9;
  color: #000;
  font-weight: normal;
  border-color: #dee2e6 #dee2e6 #fff;
}

/* Hover für aktiven Tab – optional leicht dunkler */
.tab-titel.active:hover {
  background-color: #f0f0f0;
}

/* Styling für aktive Tabs – Bootstrap setzt diese Klasse automatisch */
.nav-link.active.tab-titel {
  background-color: #f4f6f9;
  color: #000;
  font-weight: normal;
  border-color: #dee2e6 #dee2e6 #fff;
}

/* Optional: Hover-Effekt für aktiven Tab */
.nav-link.active.tab-titel:hover {
  background-color: #f0f0f0;
}

.tab-titel:not(.active):hover {
  background-color: #f0f0f0;
}

<!--/* Für Buttons Anmeldung Tabs Schulgeldübersicht */     -->
.custom-outline-btn {
  color: #00937a;
  border: 1px solid #00937a;
  background-color: transparent;
  transition: all 0.3s ease;
}

.custom-outline-btn:hover {
  background-color: #00937a;
  color: #ffffff;
  text-decoration: none;
}

<!--/* geschlossene Rahmen im Resposiv */     -->
@media (max-width: 767.98px) {
    #dropdownSchulform {
      border: 1px solid #ced4da; /* klassischer Bootstrap-Rahmen */
      border-radius: 0.375rem;   /* abgerundet wie bei form-control */
      background-color: #f4f6f9; /* hellgrauer Hintergrund */
      padding: 0.375rem 0.75rem;
      width: 100%;
      text-align: left;
    }

    /* Optional: entfernt blauen Fokusrahmen beim Klick */
    #dropdownSchulform:focus {
      outline: none;
      box-shadow: none;
    }

    .dropdown-menu {
      border: 1px solid #ced4da;
    }


    /* Schließt die Lücke zum Inhaltsbereich */
    #schulformTabsContent {
      border-top: 1px solid #ced4da !important;
      margin-top: -1px; /* klebt direkt ans Dropdown */
    }

    /* Optional: Hinweisbox bündig halten */
    #hinweis-tab .alert {
      margin-top: 0;
    }
  }

   /* Pfeil ganz rechts im Dropdown */
 .dropdown-toggle-custom {
    position: relative;
    padding-right: 2.5rem; /* Platz für den rechten Pfeil */
  }

  .dropdown-chevron {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 1rem;
      color: #343a40;
  }

  /* für einzelne hervorgehobene Wörter */
  .hervorgehoben {
    font-family: "Sofia Pro ExtraLight", sans-serif;
    font-optical-sizing: none;
    font-weight: 400;
    font-style: italic;
    color: #000;
    font-size: 1.03rem;
    letter-spacing: 0.03em;     /* Buchstabenabstand */
    line-height: 1.5;           /* Zeilenhöhe */
    /*text-transform: uppercase;   Großbuchstaben */
    /*text-decoration: underline;  Unterstreichen */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); /* feiner Schatten */
    }


/* <!--Bündig Schulgeldübersicht--> */

  .list-group-item {
    display: flex;
  }

  .kind-label {
    display: inline-flex;
    width: 140px;
    margin-left: -9px;
  }

  .kind-number {
    display: inline-block;
    width: 20px;
    text-align: right;
    font-variant-numeric: tabular-nums;
  }

  .kind-text {
  margin-left: 4px;
  width: 140px;
  white-space: nowrap;
}

  .betrag {
    display: flex;
    min-width: 80px;
  }

  .betrag-wert {
    width: 40px;
    text-align: right;
    font-variant-numeric: tabular-nums;
    font-weight: bold;
  }

  .betrag-euro {
    margin-left: 4px;
    font-weight: bold;
  }

