.range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    outline: none;
    opacity: 0.7;
    border-radius: 1rem;
    transition: opacity 0.2s;
}

.range-slider:hover {
    opacity: 1;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 26px;
    height: 26px;
    background: #ffffff;
    cursor: pointer;
    border-radius: 50%;
    border: 1px solid #a49c9c;
}

.range-slider::-moz-range-thumb {
    width: 26px;
    height: 26px;
    background: #a49c9c;
    cursor: pointer;
    border-radius: 50%;
}
