/* Range Slider Styles */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.range-slider-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.range-inputs {
    display: flex;
    gap: 8px;
    justify-content: space-between;
}

.range-input {
    flex: 1;
    background: #282a2c;
    border: 2px solid #323537;
    border-radius: 8px;
    padding: 8px 12px;
    color: #e1e2e4;
    font-size: 14px;
    text-align: center;
    font-family: Inter, sans-serif;
    transition: all 0.3s ease;
}

.range-input:focus {
    outline: none;
    border-color: #b9c7e4;
    box-shadow: 0 0 8px rgba(185, 199, 228, 0.3);
}

.range-track-container {
    position: relative;
    padding: 10px 0;
    margin: 10px 0;
}

.range-track {
    position: relative;
    height: 6px;
    background: #323537;
    border-radius: 3px;
    outline: none;
}

.range-track-fill {
    position: absolute;
    height: 6px;
    background: #b9c7e4;
    border-radius: 3px;
    pointer-events: none;
    z-index: 5;
    top: 0;
}

/* Visible input range */
.range-input-range {
    position: absolute;
    width: 100%;
    height: 6px;
    top: 10px;
    left: 0;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    pointer-events: none;
    z-index: 5;
    cursor: pointer;
}

.range-input-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #b9c7e4;
    cursor: pointer;
    border: 3px solid #1d2022;
    box-shadow: 0 2px 8px rgba(185, 199, 228, 0.4);
    transition: all 0.2s ease;
    pointer-events: all;
}

.range-input-range::-webkit-slider-thumb:hover {
    background: #d1dff5;
    box-shadow: 0 3px 12px rgba(185, 199, 228, 0.5);
    transform: scale(1.1);
}

.range-input-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #b9c7e4;
    cursor: pointer;
    border: 3px solid #1d2022;
    box-shadow: 0 2px 8px rgba(185, 199, 228, 0.4);
    transition: all 0.2s ease;
    pointer-events: all;
}

.range-input-range::-moz-range-thumb:hover {
    background: #d1dff5;
    box-shadow: 0 3px 12px rgba(185, 199, 228, 0.5);
    transform: scale(1.1);
}

.range-input-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    background: transparent;
    border: none;
}

.range-input-range::-moz-range-track {
    background: transparent;
    border: none;
}

.range-input-range::-moz-range-progress {
    background-color: transparent;
}

/* Range label */
.range-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #c5c6cd;
    margin-top: 4px;
}
