.program-container {
    max-width: 850px;
    margin: 0 auto;
    width: 100%;
}
.program-header {
    margin-bottom: 40px;
}
.badge-program {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 12px;
}

.program-header h1 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
}

.program-header p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.days-tabs {
    display: flex;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.03);
    padding: 6px;
    border-radius: 20px;
    margin-bottom: 40px;
    gap: 5px;
    overflow-x: auto; 
}

.tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 12px 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 14px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.tab-btn:hover, .tab-btn.active {
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}


.schedule-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.schedule-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    gap: 30px;
    align-items: center;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.2s ease;
}

.schedule-card:hover {
    transform: translateY(-2px);
}

.schedule-card.is-live {
    border-color: rgba(255, 71, 87, 0.3);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 35px rgba(255, 71, 87, 0.05);
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    text-align: center;
}

.start-time {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-main);
}

.end-time {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 2px;
}


.show-showcase {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-grow: 1;
}

.show-cover {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.show-details {
    display: flex;
    flex-direction: column;
}

.show-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
}

.show-host {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
    margin: 3px 0 6px 0;
    display: flex;
    align-items: center;
    gap: 4px;
}
.show-host .material-icons-round { font-size: 14px; }

.show-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.show-status-wrapper {
    margin-bottom: 6px;
}

.live-indicator-tag {
    background: rgba(255, 71, 87, 0.1);
    color: var(--accent-color);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.5px;
}

.mini-pulse {
    width: 6px; height: 6px; background: var(--accent-color);
    border-radius: 50%; animation: pulse 1.5s infinite;
}


@media (max-width: 650px) {
    .schedule-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 20px;
    }
    
    .time-block {
        flex-direction: row;
        gap: 8px;
        min-width: auto;
    }
    
    .end-time::before { content: "- "; }
    .end-time { margin-top: 0; font-size: 22px; font-weight: 800; color: var(--text-main); }
    
    .show-showcase {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .show-cover {
        width: 64px; height: 64px;
    }
}
.day-schedule {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.day-schedule.active {
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 1;
    transform: translateY(0);
}

.no-shows-alert {
    background: var(--card-bg);
    border: 1px dashed rgba(0, 0, 0, 0.1);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 500;
}