/* Modern Radio Schedule Styles */
.radio-schedule-modern {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.modern-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    margin-bottom: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modern-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.highlight-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.highlight-title {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 12px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ff4757;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.live-text {
    font-size: 11px;
    font-weight: 600;
}

.current-program,
.next-program {
    display: flex;
    padding: 20px;
    gap: 15px;
    border-left: 4px solid;
    background: #f8f9fa;
}

.program-image {
    flex-shrink: 0;
}

.program-image img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.program-details {
    flex: 1;
}

.program-title {
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
}

.program-time,
.program-host {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #718096;
    margin-bottom: 5px;
}

.program-time .dashicons,
.program-host .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.program-description {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.5;
    margin-top: 8px;
}

/* Weekly Schedule */
.weekly-schedule-modern {
    display: grid;
    gap: 15px;
}

.schedule-day-modern {
    padding: 0;
}

.day-title {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
    padding: 12px 20px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.day-programs {
    padding: 15px;
}

.schedule-program-modern {
    display: flex;
    align-items: center;
    padding: 12px;
    margin-bottom: 8px;
    background: #f7fafc;
    border-radius: 8px;
    border-left: 3px solid;
    transition: all 0.3s ease;
}

.schedule-program-modern:hover {
    background: #edf2f7;
    transform: translateX(5px);
}

.schedule-program-modern:last-child {
    margin-bottom: 0;
}

.program-time-slot {
    flex: 0 0 120px;
    font-size: 13px;
    font-weight: 600;
    color: #4a5568;
    background: white;
    padding: 6px 10px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.program-info {
    flex: 1;
    padding-left: 15px;
}

.program-info .program-title {
    font-size: 15px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 3px;
}

.program-info .program-host {
    font-size: 13px;
    color: #718096;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .current-program,
    .next-program {
        flex-direction: column;
        text-align: center;
    }
    
    .program-image {
        align-self: center;
    }
    
    .schedule-program-modern {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .program-time-slot {
        flex: none;
        align-self: stretch;
        text-align: left;
    }
    
    .program-info {
        padding-left: 0;
    }
    
    .highlight-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}