

/* Start:/local/templates/RadioVos/components/dev/radio.broadcast.grid/radio_grid/style.css?177677533615133*/
body {color: white;}
#program-list {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#program-list *,
#program-list *::before,
#program-list *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#program-list {
    font-family: "Etelka Medium Pro", system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    color: #e0e0e0;
    line-height: 1.4;
}
#program-list .background_container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
/* фоновое изображение с затемнением - используем локальный градиент вместо внешнего изображения */
#program-list .background_container::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, #1a2a24 0%, #0a0a0c 100%);
    pointer-events: none;
    z-index: 0;
}

/* дополнительный слой для текстуры */
#program-list .background_container::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(45deg, rgba(159, 202, 111, 0.02) 0px, rgba(159, 202, 111, 0.02) 2px, transparent 2px, transparent 8px);
    pointer-events: none;
    z-index: 0;
}
/* ===== MAIN CONTAINER ===== */
#program-list.programs-page {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 16px 40px;
    z-index: 1;
}

/* ===== PAGE TITLE ===== */
#program-list .page-title {
    text-align: center;
    margin-bottom: 30px;
}

#program-list .page-title h1 {
    font-size: 32px;
    background: linear-gradient(135deg, #c8f08f, #9fca6f, #faaf40);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

#program-list .page-title p {
    color: #8a909c;
    font-size: 16px;
    margin-top: 8px;
}

/* ===== DROPDOWN CALENDAR ===== */
#program-list .calendar-dropdown {
    margin-bottom: 24px;
    position: relative;
}

#program-list .calendar-dropdown-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: linear-gradient(135deg, #1e2a27, #2a3a33);
    border: 1px solid rgba(159, 202, 111, 0.4);
    border-radius: 56px;
    padding: 14px 20px;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.25s ease;
    color: #e0e0e0;
}

#program-list .calendar-dropdown-btn:hover {
    background: linear-gradient(135deg, #2a3a33, #1e2a27);
    border-color: #9fca6f;
    transform: translateY(-1px);
}

#program-list .calendar-dropdown-btn:focus-visible {
    outline: 2px solid #faaf40;
    outline-offset: 2px;
}

/* #program-list .dropdown-icon {
    font-size: 20px;
} */

#program-list .dropdown-text {
    flex: 1;
    text-align: left;
    color: #c8f08f;
    font-weight: 500;
}

#program-list .dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    color: #faaf40;
}

#program-list .calendar-dropdown-btn[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(240deg);
}

#program-list .calendar-dropdown-content {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #121212;
    border: 1px solid rgba(159, 202, 111, 0.3);
    border-radius: 24px;
    padding: 16px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.5);
}

#program-list .calendar-dropdown-content.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* COMPACT CALENDAR */
#program-list .calendar-compact {
    background: #121212;
    border-radius: 12px;
    padding: 8px;
}

#program-list .calendar-header-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 0 5px;
}

#program-list .calendar-header-compact h3 {
    color: #faaf40;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

#program-list .calendar-nav-compact {
    background: rgba(159, 202, 111, 0.2);
    border: 1px solid rgba(159, 202, 111, 0.3);
    color: #c8f08f;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

#program-list .calendar-nav-compact:hover {
    background: rgba(159, 202, 111, 0.4);
    transform: scale(1.05);
}

#program-list .calendar-nav-compact:focus-visible {
    outline: 2px solid #faaf40;
    outline-offset: 2px;
}

#program-list .calendar-weekdays-compact {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 8px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(159, 202, 111, 0.2);
}

#program-list .calendar-weekdays-compact span {
    color: #c8f08f;
    font-weight: 500;
    font-size: 13px;
}

#program-list .calendar-days-compact {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    gap: 4px;
    padding: 8px 0;
}

#program-list .calendar-day-compact {
    padding: 10px 5px;
    cursor: pointer;
    border-radius: 40px;
    transition: all 0.2s ease;
    color: #e0e0e0;
    font-size: 14px;
    font-weight: 500;
}

#program-list .calendar-day-compact:hover {
    background: rgba(159, 202, 111, 0.25);
    transform: scale(1.05);
}

#program-list .calendar-day-compact.selected {
    background: linear-gradient(135deg, #9fca6f, #c8f08f);
    color: #1e2a27;
    font-weight: bold;
}

#program-list .calendar-day-compact.other-month {
    color: #5f656f;
}

#program-list .calendar-day-compact.today {
    border: 2px solid #faaf40;
    font-weight: bold;
}

#program-list .calendar-day-compact:focus-visible {
    outline: 2px solid #faaf40;
    outline-offset: 2px;
    background: rgba(159, 202, 111, 0.3);
}

#program-list .calendar-actions {
    margin-top: 16px;
    text-align: center;
    padding-top: 12px;
    border-top: 1px solid rgba(159, 202, 111, 0.2);
}

#program-list .calendar-close-btn {
    background: rgba(159, 202, 111, 0.15);
    border: 1px solid rgba(159, 202, 111, 0.4);
    padding: 10px 28px;
    border-radius: 40px;
    color: #c8f08f;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.2s ease;
}

#program-list .calendar-close-btn:hover {
    background: rgba(159, 202, 111, 0.3);
    border-color: #faaf40;
}

#program-list .calendar-close-btn:focus-visible {
    outline: 2px solid #faaf40;
    outline-offset: 2px;
}

/* ===== DAY TABS ===== */
#program-list .days-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(250, 175, 64, 0.25);
    padding-bottom: 14px;
    justify-content: center;
}

#program-list .day-tab {
    padding: 10px 24px;
    background: rgba(30, 42, 39, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(159, 202, 111, 0.25);
    border-radius: 40px;
    color: #e0e0e0;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

#program-list .day-tab:hover {
    background: rgba(159, 202, 111, 0.2);
    border-color: rgba(159, 202, 111, 0.5);
    color: #c8f08f;
    transform: translateY(-2px);
}

#program-list .day-tab.active {
    background: linear-gradient(135deg, #9fca6f, #c8f08f);
    border-color: transparent;
    color: #1e2a27;
    box-shadow: 0 6px 14px rgba(159, 202, 111, 0.3);
    transform: translateY(0);
}

#program-list .day-tab:focus-visible {
    outline: 2px solid #faaf40;
    outline-offset: 2px;
}

/* ===== DAY CONTENT ===== */
#program-list .day-content {
    display: none;
    animation: fadeSlide 0.35s ease-out;
}

#program-list .day-content.active {
    display: block;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== DAY HEADER ===== */
#program-list .day-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

#program-list .day-header {
    flex: 1;
    padding: 12px 0px;
    border-radius: 12px;
}

#program-list .day-header h2 {
    font-size: 26px;
    color: #faaf40;
    margin: 0;
}

#program-list .day-header p {
    color: #8a909c;
    margin-top: 6px;
    font-size: 14px;
}

/* CURRENT TIME INDICATOR */
#program-list .current-time-indicator {
    background: linear-gradient(90deg, #1e2a27, #2a3a33);
    padding: 10px 20px;
    border-radius: 60px;
    margin-bottom: 28px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    border: 1px solid rgba(250, 175, 64, 0.4);
    backdrop-filter: blur(4px);
}

#program-list #currentLiveTime {
    font-weight: 700;
    color: #faaf40;
    letter-spacing: 1px;
}

/* PROGRAMS WRAPPER */
#program-list .programs-wrapper {
    background-color: #121212;
    border-radius: 24px;
    border: 1px solid rgba(159, 202, 111, 0.9);
    overflow: hidden;
}

/* ===== PROGRAMS LIST ===== */
#program-list .programs-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

#program-list .programs-list li {
    display: flex;
    transition: background 0.2s;
    border-bottom: 1px solid rgba(159, 202, 111, 0.08);
}

#program-list .programs-list li:last-child {
    border-bottom: none;
}

#program-list .programs-list li:hover {
    background: rgba(159, 202, 111, 0.05);
}

#program-list .programs-list li.current-program {
    background: linear-gradient(90deg, rgba(250, 175, 64, 0.18), transparent);
}

#program-list .program-time {
    width: 100px;
    min-width: 100px;
    padding: 14px 12px;
    font-weight: 700;
    color: #c8f08f;
    background: rgba(0, 0, 0, 0.25);
    border-right: 1px solid rgba(159, 202, 111, 0.2);
    font-size: 15px;
}

#program-list .program-info {
    flex: 1;
    padding: 14px 18px;
}

#program-list .program-title {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
    font-size: 16px;
}

#program-list .program-desc {
    font-size: 13px;
    color: #8f95a3;
    line-height: 1.4;
}

/* SCROLL CONTAINER */
#program-list .programs-scroll {
    max-height: 65vh;
    overflow-y: auto;
    overflow-x: hidden;
}

#program-list .programs-scroll::-webkit-scrollbar {
    width: 6px;
}

#program-list .programs-scroll::-webkit-scrollbar-track {
    background: #1e2a27;
    border-radius: 8px;
}

#program-list .programs-scroll::-webkit-scrollbar-thumb {
    background: #9fca6f;
    border-radius: 8px;
}

/* EMPTY SCHEDULE */
#program-list .empty-schedule {
    text-align: center;
    padding: 60px 20px;
    background-color: #121212;
    border-radius: 24px;
    border: 1px solid rgba(159, 202, 111, 0.9);
}

#program-list .empty-schedule p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}

#program-list .empty-schedule small {
    color: #fff;
    font-size: 14px;
}

/* NAVIGATION BUTTONS */
#program-list .nav-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
    flex-wrap: wrap;
}

#program-list .nav-buttons[style*="display: none"] {
    display: none !important;
}

#program-list .nav-btn {
    background: rgba(159, 202, 111, 0.12);
    border: 1px solid rgba(159, 202, 111, 0.4);
    padding: 10px 24px;
    border-radius: 40px;
    color: #c8f08f;
    font-weight: 500;
    cursor: pointer;
    transition: 0.25s;
    font-size: 14px;
}

#program-list .nav-btn:hover {
    background: rgba(159, 202, 111, 0.3);
    transform: translateY(-2px);
    border-color: #faaf40;
}

#program-list .nav-btn:focus-visible {
    outline: 2px solid #faaf40;
    outline-offset: 2px;
}
@media (min-width: 576px) {
	#program-list.programs-page {
        max-width: 540px;
    }
}
/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 767px) {
    #program-list .day-header-row {
        flex-direction: column;
    }

    #program-list .programs-list li {
        flex-direction: column;
    }

    #program-list .program-time {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(159, 202, 111, 0.2);
        padding: 12px 16px 6px;
        background: rgba(0, 0, 0, 0.3);
    }

    #program-list .program-info {
        padding: 6px 16px 14px;
    }

    #program-list .day-header h2 {
        font-size: 20px;
    }

    #program-list .programs-scroll {
        max-height: 55vh;
    }

    #program-list .days-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        gap: 8px;
        padding-bottom: 12px;
    }

    #program-list .day-tab {
        white-space: nowrap;
        padding: 8px 18px;
        font-size: 14px;
    }

    #program-list .calendar-dropdown-content {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.95);
        right: auto;
        width: 90%;
        max-width: 320px;
        max-height: 80vh;
        overflow-y: auto;
    }

    #program-list .calendar-dropdown-content.open {
        transform: translate(-50%, -50%) scale(1);
    }

    #program-list .calendar-day-compact {
        padding: 8px 3px;
        font-size: 13px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #program-list .day-header-row {
        flex-direction: row;
        align-items: center;
    }

    #program-list.programs-page {
        max-width: 720px;
    }

    #program-list .program-time {
        width: 90px;
        min-width: 90px;
        font-size: 14px;
        padding: 12px;
    }

    #program-list .calendar-dropdown {
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 992px) {
    #program-list.programs-page {
        max-width: 960px;
		padding: 2rem;
    }

    #program-list .calendar-dropdown {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    #program-list .program-time {
        width: 100px;
        text-align: center;
        line-height: 40px;
    }

    #program-list .day-header-row {
        align-items: flex-end;
        padding: 24px 0px;
    }
	#program-list .page-title h1 {
		font-size: 40px;
	}
}

@media (min-width: 1200px) {
    #program-list.programs-page {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    #program-list.programs-page {
        max-width: 1320px;
    }
}
@media (min-width: 1600px) {
    #program-list.programs-page {
        max-width: 1500px;
    }
}

@media (prefers-reduced-motion: reduce) {
    #program-list .calendar-dropdown-content,
    #program-list .dropdown-arrow,
    #program-list .calendar-day-compact,
    #program-list .day-tab,
    #program-list .nav-btn {
        transition: none;
    }

    #program-list .calendar-dropdown-content.open {
        transform: none;
    }
}
/* End */
/* /local/templates/RadioVos/components/dev/radio.broadcast.grid/radio_grid/style.css?177677533615133 */
