/* Custom Styles for Radio IMJLOTA */

html {
    scroll-behavior: smooth;
}

/* Ocultar barra de desplazamiento en los tabs de días pero permitir scroll horizontal */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Styling for the volume slider to match theme */
input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: #5091D6; /* brand-accent */
    cursor: pointer;
    margin-top: -4px;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: #E0E0E0;
    border-radius: 2px;
}

