.raspisanie {
	    background: #F0F0F0;
    border-radius: 15px;
}

.radio-schedule {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;

    box111-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.radio-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    padding: 0 10px;
}

.nav-button {
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: black;
    font-size: 18px;
}

.nav-button:hover {
    transform: scale(1.03);
}

.nav-button:active {
    transform: scale(0.95);
}

.radio-day-header {
    text-align: center;
    flex: 1;
    padding: 0 15px;
}

.radio-day-title {
    color: var(--wp--preset--color--contrast);
    margin: 0 0 5px 0;
    font-size: 24px;
    font-weight: bold;
}

.radio-date {
    color: #999;
    font-size: 14px;
    font-weight: 500;
}

.radio-programs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-program {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.radio-program:hover {
    transform: translateX(5px);
	cursor: default;
    bo1111x-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.program-time {
    font-weight: 600;
    color: var(--wp--preset--color--contrast);
    min-width: 100px;
    font-size: 14px;
}

.program-name {
    color: #34495e;
    text-align: left;
    flex: 1;
    font-size: 14px;
}

/* Стили для прошедших программ */
.past-program {
    opacity: 0.5;
}

.past-program .program-time,
.past-program .program-name {
    color: #9e9e9e;
}

/* Стили для текущей программы */
.current-program {
    backg111round: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    bor111der-left-color: #e74c3c;
    fon111t-weight: bold;
    anim111ation: pulse 2s infinite;
}

.current-program .program-time {
        color: var(--wp--preset--color--accent-1);
    fon111t-weight: bold;
}

.current-program .program-name {
        color: var(--wp--preset--color--accent-1);
    font-weight: bold;
}

/* Индикатор текущего дня */
.radio-day-header::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background: var(--wp--preset--color--accent-1);
    margin: 8px auto 0;
    border-radius: 2px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .radio-schedule {
        margin: 10px;
        padding: 15px;
    }
    
    .radio-navigation {
        margin-bottom: 20px;
    }
    
    .nav-button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .radio-day-title {
        font-size: 20px;
    }
    
    .radio-program {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .program-name {
        text-align: left;
    }
    
    .program-time {
        font-size: 13px;
    }
    
    .program-name {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .radio-navigation {
        padding: 0 5px;
    }
    
    .nav-button {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .radio-day-title {
        font-size: 18px;
    }
    
    .radio-date {
        font-size: 12px;
    }
}