/* Bereich für Überschrift + Tabelle */
.termine {
  margin-top: 1.2em;
  margin-bottom: 1em;
}

.termine__heading {
  font-weight: bold;
  font-size: 1.15em;
  border-bottom: 2px solid #999;
  padding-bottom: 0.15em;
  margin-bottom: 0.4em;
  display: inline-block;
}

/* Tabelle */
.termine__table th,
.termine__table td {
  padding: 0.7em 1.1em; /* mehr Innenabstand schafft wieder Luft */
  line-height: 1.4em; /* größere Zeilenhöhe */
  text-align: left;
  border-bottom: 1px solid #ccc;
  vertical-align: middle; /* Text erscheint optisch ausgewogener */
}

.termine__table tr:nth-child(even) {
  background-color: #fff; /* neutral ? vermeidet grauen Block-Effekt */
}

.termine__table tr:hover {
  background-color: #f9f9f9;
}

/* Links */
.termine__table td a {
  text-decoration: none;
}

.termine__table td a:hover {
  text-decoration: underline;
}

/* Hervorhebung f?r heutige Termine */
.termine__row--today {
  background-color: #f0f7ff !important;
  font-weight: 500;
}

/* Lade-Status und Fehler */
.termine-loading {
  padding: 1em;
  color: #666;
  font-style: italic;
}

.termine-error {
  padding: 1em;
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 4px;
}
