.schedule-fixed-container li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.schedule-fixed-container li:last-child {
    border-bottom: none;
}

.schedule-fixed-container .li-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.schedule-fixed-container .badge {
    background: rgba(255, 74, 74, 0.15);
    color: #ff6b6b;
    border: 1px solid rgba(255, 74, 74, 0.3);
    font-size: 10px;
    font-weight: 500;
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 40px;
    text-align: center;
    line-height: 1.6;
}

.schedule-fixed-container .vod-name {
    flex: 1;
    min-width: 0;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.schedule-fixed-container .small-text {
    font-size: 11px;
    white-space: nowrap;
    flex-shrink: 0;
    opacity: 0.35;
    margin-right: 5px;
}

.schedule-fixed-container .text-update {
    color: #ff6b6b;
    opacity: 1;
    font-weight: bold;
    margin-right: 5px;
}

.schedule-fixed-container {
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.1) transparent;
}

@media (min-width: 992px) {
    .schedule-fixed-container {
        height: 300px;
        margin-top: -25px;
        overflow-y: auto;
        padding-right: 5px;
    }
    .schedule-fixed-container::-webkit-scrollbar {
        width: 2px;
    }
    .schedule-fixed-container::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.1);
    }
}

@media (max-width: 991px) {
    .schedule-fixed-container {
        margin-top: -25px;
        overflow: visible;
    }
}