.range-container
{
    width: 100%;
    max-width: 500px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.range-title
{
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.range-inputs
{
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.input-group
{
    flex: 1;
}

.input-group label
{
    display: block;
    margin-bottom: 5px;
    color: #666;
    font-size: 14px;
}

.price-input
{
    width: 100%;
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    color: #333;
}

.price-input:focus
{
    outline: none;
    border-color: #4a6cf7;
}

.slider-container
{
    position: relative;
    height: 50px;
    display: flex;
    align-items: center;
    margin: 20px 0 10px;
}

.slider-track
{
    position: absolute;
    height: 6px;
    width: 100%;
    background: #e0e0e0;
    border-radius: 3px;
    z-index: 1;
}

.slider-filled
{
    position: absolute;
    height: 6px;
    background: #4a6cf7;
    border-radius: 3px;
    z-index: 2;
}

.range-slider
{
    position: absolute;
    width: 100%;
    height: 6px;
    pointer-events: none;
    z-index: 3;
}

.range-slider input
{
    position: absolute;
    width: 100%;
    height: 6px;
    pointer-events: none;
    -webkit-appearance: none;
    background: transparent;
    z-index: 4;
}

.range-slider input::-webkit-slider-thumb
{
    pointer-events: all;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #4a6cf7;
    cursor: pointer;
    -webkit-appearance: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.range-slider input::-moz-range-thumb
{
    pointer-events: all;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #4a6cf7;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.range-values
{
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}