.show-info-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    background: #fff9f0;
    border: 1px solid #d8c8a8;
    border-radius: 10px;
    padding: 14px 22px;
    margin-bottom: 28px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.92em;
    color: #6b4c2a;
}

.day-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}
.day-tab {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #c9923a;
    border-radius: 8px;
    background: #fff;
    color: #6b4c2a;
    font-family: 'Segoe UI', sans-serif;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.day-tab:hover { background: #fff3e0; }
.day-tab.active {
    background: #c9923a;
    color: #fff;
    border-color: #c9923a;
}

.day-heading {
    color: #5a7a3a;
    font-size: 1.3em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d8c8a8;
}

.schedule-section {
    margin-bottom: 24px;
}
.section-label {
    color: #6b4c2a;
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    padding-left: 4px;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.93em;
    margin-bottom: 4px;
}
.schedule-table thead th {
    background: #5a7a3a;
    color: #fff;
    padding: 8px 12px;
    text-align: left;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.schedule-table thead th:first-child {
    border-radius: 6px 0 0 0;
    width: 70px;
    text-align: center;
}
.schedule-table thead th:last-child {
    border-radius: 0 6px 0 0;
    width: 120px;
}
.schedule-table tbody tr {
    border-bottom: 1px solid #e8dcc8;
}
.schedule-table tbody tr:nth-child(even) {
    background: #fdf8f0;
}
.schedule-table tbody tr:hover {
    background: #f5ead6;
}
.schedule-table tbody td {
    padding: 9px 12px;
    color: #3a2e1e;
}
.schedule-table tbody td:first-child {
    text-align: center;
    font-weight: bold;
    color: #c9923a;
}

.schedule-break {
    text-align: center;
    padding: 12px 16px;
    margin: 16px 0;
    background: #f0e6d6;
    border-left: 4px solid #c9923a;
    border-radius: 0 8px 8px 0;
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.9em;
    color: #6b4c2a;
    font-weight: bold;
}

.schedule-disclaimer {
    margin-top: 32px;
    padding: 16px 20px;
    background: #fff9f0;
    border: 1px solid #d8c8a8;
    border-radius: 8px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.88em;
    color: #6b4c2a;
    line-height: 1.6;
}

/* Current class highlighting */
.class-in-progress {
    background: #e8f5e0 !important;
    border-left: 4px solid #5a7a3a;
    animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green {
    0%, 100% { background: #e8f5e0; }
    50% { background: #d4edca; }
}
.now-badge {
    display: inline-block;
    background: #5a7a3a;
    color: #fff;
    font-size: 0.65em;
    font-weight: bold;
    padding: 1px 6px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
    letter-spacing: 0.05em;
}

/* Admin controls */
.admin-set-current {
    background: none;
    border: 1px solid #d8c8a8;
    color: #5a7a3a;
    border-radius: 4px;
    padding: 2px 8px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.78em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
}
.admin-set-current:hover {
    background: #e8f5e0;
    border-color: #5a7a3a;
}
.admin-set-current.active {
    background: #5a7a3a;
    color: #fff;
    border-color: #5a7a3a;
}

@media (max-width: 600px) {
    .show-info-bar { flex-direction: column; gap: 6px; text-align: center; }
    .day-tabs { flex-direction: column; }
    .schedule-table thead th:last-child { width: 80px; }
    .schedule-table { font-size: 0.85em; }
    .schedule-table tbody td,
    .schedule-table thead th { padding: 7px 8px; }
}
