﻿.range-slider {
    position: relative;
    width: 100%;
    height: 5px;
    background-color: #e2e8f0;
    border-radius: 4px;
    margin-top: 20px;
    margin-bottom: 20px;
}

    .range-slider .progress {
        position: absolute;
        height: 100%;
        left: 0%;
        right: 0%;
        background-color: #84cc16;
        border-radius: 4px;
    }

    .range-slider input[type="range"] {
        position: absolute;
        width: 100%;
        height: 5px;
        top: -2px;
        background: none;
        pointer-events: none;
        -webkit-appearance: none;
        -moz-appearance: none;
    }

        .range-slider input[type="range"]::-webkit-slider-thumb {
            height: 18px;
            width: 18px;
            border-radius: 50%;
            background: #0f172a;
            border: 3px solid #84cc16;
            pointer-events: auto;
            -webkit-appearance: none;
            cursor: pointer;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        }

        .range-slider input[type="range"]::-moz-range-thumb {
            height: 18px;
            width: 18px;
            border-radius: 50%;
            background: #0f172a;
            border: 3px solid #84cc16;
            pointer-events: auto;
            -moz-appearance: none;
            cursor: pointer;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        }
