.slider-container {
    margin-bottom: 30px;
}
/* Labels and Prices with Mint Accent #71F494 */
.slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 15px;
    color: #f1f5f9;
}
.price-value {
    background: rgba(113, 244, 148, 0.1); /* Transparent mint background */
    color: #71F494; /* Mint text */
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 14px;
    font-variant-numeric: tabular-nums;
    border: 1px solid rgba(113, 244, 148, 0.2);
}
/* Slider Track - Dark Mode style */
.trigger-range-input-price {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 99px;
    outline: none;
    cursor: pointer;
    background: #1e293b; /* Dark track background */
    margin-bottom: 12px;
}
/* Slider Thumb (Chrome/Safari) - Colored with Mint #71F494 */
.trigger-range-input-price::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #71F494;
    border: 2px solid #111729;
    box-shadow: 0 2px 4px rgba(0,0,0,0.4);
    transition: transform 0.1s ease, box-shadow 0.2s ease;
}
.trigger-range-input-price:hover::-webkit-slider-thumb {
    transform: scale(1.15);
}
.trigger-range-input-price:active::-webkit-slider-thumb {
    box-shadow: 0 0 0 8px rgba(113, 244, 148, 0.25), 0 2px 4px rgba(0,0,0,0.4);
}
/* Slider Thumb (Firefox) */
.trigger-range-input-price::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #71F494;
    border: 2px solid #111729;
    box-shadow: 0 2px 4px rgba(0,0,0,0.4);
}