        /* Zusätzliche Stile für bessere Lesbarkeit der Ausfallhinweise */
        .place-r36 { color: #3498db; } /* Beispiel Farbe Blau */
        .place-r26 { color: #2ecc71; } /* Beispiel Farbe Grün */
        .cancelled-text { color: #e74c3c; font-weight: 500; } /* Rote Farbe für Ausfälle */


.cancelled-notice-desktop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(0.7rem, 1vw, 1rem); /* ← so ist korrekt */
  color: #e74c3c;
  font-weight: 600;
  word-break: break-word;
  max-width: 95%;
  margin: auto;
  padding: 2px;
}

   .download-pdf-btn {
            display: block;
            margin: 15px auto;
            padding: 10px 20px;
            background-color: #4CAF50;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            transition: background-color 0.3s ease;
            max-width: 250px;
            text-align: center;
        }
        .download-pdf-btn:hover {
            background-color: #45a049;
        }
        .download-pdf-btn:disabled {
            background-color: #cccccc;
            cursor: not-allowed;
        }


        .activity { /* Stellen Sie sicher, dass .activity genug Höhe hat, auch ohne Emoji */
            min-height: 1.2em; /* Oder eine passende Höhe */
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column; /* Damit der Hinweis unter dem Emoji (falls vorhanden) Platz hat */
        }
         .mobile-entry .titleTag .cancelled-text { /* Kein Emoji davor im Titel */
             margin-left: 5px; /* Kleiner Abstand zum Rest des Titels */
         }
         .mobile-entry .info .cancelled-text { /* Wenn Info nur Ausfall zeigt */
              display: block; /* Eigene Zeile */
              text-align: center;
              margin-top: 5px;
         }

.schedule-container {
    max-width: 80vw;
    margin: auto;
    min-width: 70vw;
}

.titleOfSite {
    max-width: 80vw;
    margin: 0 auto 5vh auto;
    background-color: #34495e;
    color: #1abc9c;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    text-align: center;
    font-weight: 600;
    font-size: 30px;
    padding: 20px 0 20px 0;
}


/* Der Punkt (Tag-Indikator) */
.day-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 1rem; /* Abstand zwischen Punkt und Titel */
  margin-top:  0.6vh;
}

/* Der Container für Titel und Punkt nebeneinander */
.entry-title {
  display: flex;
  align-items: center;  /* Vertikale Ausrichtung */
  font-weight: bold;
  font-size: 16px;
  gap: 0.5rem; /* Abstand zwischen Punkt und Titel */
}

/* Tag-Farben für den Punkt */
.tag-Montag     { background-color: #FF9999; } /* rot */
.tag-Dienstag   { background-color: #FFC288; } /* orange */
.tag-Mittwoch   { background-color: #FFF07C; } /* gelb */
.tag-Donnerstag { background-color: #F29ACD; } /* grün */
.tag-Freitag    { background-color: #91C4F2; } /* blau */
.tag-Samstag    { background-color: #BFA5E4; } /* violett */
.tag-Sonntag    { background-color: #88E0A4; } /* pink */

.place-r26 {
  color: #4B9CD3; /* ein schönes Blau für Reichsgrafenstraße 26 */
  font-weight: 600;
}

.place-r36 {
  color: #C06C84; /* ein warmes Rosa-Lila für Reichsgrafenstraße 36 */
  font-weight: 600;
}


/* ---------- STANDARD (Plan sichtbar) ---------- */
.schedule {
  display: grid;
  grid-template-columns: auto repeat(7, minmax(10px, 1fr));
  gap: 0.4vw;
  padding: 16px;
  background-color: #34495e;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  overflow-x: auto;
}

.header-day,
.time-label {
  background-color: #1abc9c;
  color: white;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  font-size: 14px;
}

.day {
  background-color: #1f2d3d;
  border-radius: 6px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px; /* statt nur height: 50px */
  text-align: center;
  font-size: 1.4rem; /* Schriftgröße ein bisschen kleiner und einheitlich */
  padding: 4px; /* minimal für besseres Aussehen */
  box-sizing: border-box;
}

.activity {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  font-size: 1.8rem; /* größer für Emoji oder Hinweis */
  text-align: center;
}


.tooltip {
  position: absolute;
  background: rgba(0, 0, 0, 0.95);
  color: #fff;
  padding: 10px 20px 20px 20px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  white-space: pre-line;
  pointer-events: none;
  z-index: 990;
  opacity: 0;
  transition: opacity 0.2s ease;
  max-width: 320px;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
  text-align: left;
}


/* ---------- MOBILE (Liste wird sichtbar) ---------- */
@media (max-width: 768px) {
  .schedule {
    display: block;
    padding: 0;
    min-width: 100%;
  }
  
  .titleOfSite {
   max-width: 90vw;   
  }

  .schedule-container {
    max-width: 90vw;
    min-width: 90%;
    margin: 0 5vw 0 5vw;
  }

  .time-label,
  .header-day,
  .day,
  .activity,
  .tooltip {
    display: none;
  }

  .mobile-entry {
    background-color: #1f2d3d;
    border-radius: 10px;
    padding: 12px;
    margin: 10px auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    font-size: 15px;
    max-width: 80vw;
    display: flex;
    flex-direction: column;
  }
  
  .titleTag {
      display: flex;
      flex-direction: row;
  }

  .mobile-entry .entry-title {
    font-weight: bold;
    color: #1abc9c;
    margin-bottom: 8px;
    text-align: left; /* Titel nach links ausrichten */
  }
}


