body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #333;
    margin-bottom: 20px;
    font-size: 2rem;
}

.buttons {
    margin-bottom: 20px;
}

.btn {
    background-color: #ddd;
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1rem;
}

.btn.active {
    background-color: #007bff;
    color: white;
}

.btn:hover {
    background-color: #007bff;
    color: white;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin: 15px 0;
    border-radius: 10px;
    position: relative;
    background-color: #f9f9f9; /* Standard-Hintergrund */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* Leichte Schatten */
    text-align: left;
    transition: background-color 0.3s ease;
}

.schedule-item.on-air {
    background-color: #ffe5e5; /* Hintergrund für die aktuelle Sendung */
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2); /* Stärkerer Schatten für die aktuelle Sendung */
}

.schedule-time-wrapper {
    display: flex;
    flex-direction: column; /* Vertikale Anordnung von LIVE und Uhrzeit */
    align-items: flex-start; /* Links ausrichten */
    flex: 1;
}

.schedule-time {
    font-size: 1rem;
    color: #000;
    margin-left: 10px;
}

.schedule-info {
    flex: 2;
    text-align: left;
}

.schedule-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.schedule-description {
    font-size: 0.95rem;
    color: #666;
}

.on-air-label {
    display: inline-block;
    background-color: red;
    color: white;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 1rem;
    margin-bottom: 5px; /* Abstand zum Uhrzeittext */
    text-align: center;
}

.on-air-label:after {
    content: 'LIVE';
}

.schedule-item.on-air .schedule-time,
.schedule-item.on-air .schedule-info {
    text-align: left; /* Sicherstellen, dass der Text linksbündig ist */
    margin-left: 10px; /* Gleicher Abstand wie bei anderen Sendungen */
}

/* Vorheriger CSS-Code bleibt bestehen */

/* Allgemeine Styles für den Wochenplan */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.table th, .table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #ddd;
    vertical-align: top; /* Wichtig für den Inhalt */
}

.table th {
    background-color: #f7f7f7;
    font-size: 1.2rem;
    text-align: center;
}

.table td {
    background-color: #fff;
    font-size: 1rem;
}

.table td:nth-child(even) {
    background-color: #f9f9f9;
}

.table td strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: #333;
}

.table td p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Vergrößerung des Abstands zwischen den Zellen und Verbesserung des Layouts */
.table td {
    padding: 20px;
    line-height: 1.5;
}

/* Verbessertes Layout für Mobilgeräte */
@media (max-width: 768px) {
    .table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

