/* Deine bisherigen CSS-Regeln hier einfügen … */

.heute-marker {
  width: 100%;
  text-align: center;
  position: relative;
  margin: 25px 0;
  z-index: 20;
}

.heute-marker::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 0.5px;      /* super dünn */
  background-color: red;
  opacity: 0.9;
}


.heute-marker span {
  background: #f7f7f7;
  padding: 2px 8px;
  font-size: 0.85em;
  color: red;
  position: relative;
  z-index: 2;
  border-radius: 4px;
}

.termin:nth-child(odd) {
  background-color: rgba(0,0,0,0.04); /* sehr leichtes Grau */
}

.termin:nth-child(even) {
  background-color: rgba(0,0,0,0.015); /* noch dezenter */
}

/* Optional: etwas Innenabstand, damit es schöner aussieht */
.termin {
  padding: 12px 0;
  border-radius: 4px;
}

.sticky-booking-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;

  padding: 14px 22px;
  border-radius: 999px;

  background: #003d7a;       /* dein Blau */
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;

  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sticky-booking-btn:hover {
  background: #002f5f;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.3);
}
@media (max-width: 480px) {
  .sticky-booking-btn {
    right: 12px;
    bottom: 12px;
    padding: 12px 18px;
    font-size: 14px;
  }
}
