/* Custom Styles for VipeFM Player */

body {
    overscroll-behavior: none;
    background-color: #18120e;
    color: #f5efe6;
}

/* Material You Custom Range Slider Styling */
input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
}

input[type=range]::-webkit-slider-runnable-track {
    background: #18120e;
    height: 6px;
    border-radius: 9999px;
    border: 1px solid rgba(140, 109, 89, 0.3);
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    margin-top: -5px;
    background-color: #ffb787;
    height: 16px;
    width: 16px;
    border-radius: 9999px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: transform 0.1s ease;
}

input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

input[type=range]::-moz-range-track {
    background: #18120e;
    height: 6px;
    border-radius: 9999px;
    border: 1px solid rgba(140, 109, 89, 0.3);
}

input[type=range]::-moz-range-thumb {
    background-color: #ffb787;
    height: 16px;
    width: 16px;
    border-radius: 9999px;
    border: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
