.scrollbar-custom::-webkit-scrollbar {
    height: 6px;
}

.scrollbar-custom::-webkit-scrollbar-track {
    background: rgba(21, 30, 37, 0.5);
    border-radius: 10px;
}

.scrollbar-custom::-webkit-scrollbar-thumb {
    background: rgba(255, 70, 85, 0.5);
    border-radius: 10px;
}

.scrollbar-custom::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 70, 85, 0.8);
}


.scrollbar-custom {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 70, 85, 0.5) rgba(21, 30, 37, 0.5);
}

.custom-controls {
    transition: opacity 0.3s ease;
}

#volumeSlider {
    appearance: none;
    height: 6px;
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
    overflow: hidden;
}

#volumeSlider::-webkit-slider-thumb {
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #FF4655;
    cursor: pointer;
    box-shadow: -80px 0 0 80px #FF4655;
}

#seekBar {
    appearance: none;
    cursor: pointer;
}

#seekBar::-webkit-slider-thumb {
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #FF4655;
    cursor: pointer;
}

.video-player-container:hover .custom-controls {
    opacity: 1;
}

#progressBar {
    transition: width 0.1s linear;
}