.gf-range-slider-wrapper {
    position: relative !important;
    width: 100% !important;
}

.gf-range-slider {
    -webkit-appearance: none; /* Remove default styling */
    appearance: none;
    width: 100% !important;
    height: 8px !important;
    background: #ddd !important;/* Track background */
    border-radius: 4px !important;
    outline: none !important;
    opacity: 0.9 !important;
    transition: opacity 0.2s!important;
    padding: 0px !important;
}

/* Hover and focus effects */
.gf-range-slider:hover {
    opacity: 1;
}

.gf-range-slider:focus {
    outline: 2px solid #4A90E2; /* Highlight when focused */
}

/* Customize the thumb (slider button) for Webkit browsers */
.gf-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #4A90E2; /* Thumb color */
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

/* Customize thumb on hover */
.gf-range-slider::-webkit-slider-thumb:hover {
    background: #357ABD;
}

/* Customize the thumb for Firefox */
.gf-range-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #4A90E2;
    border-radius: 50%;
    cursor: pointer;
}

/* Make sure the slider is fully visible */
.gf-range-slider {
    display: block !important;
}

.gf-range-tooltip {
    position: absolute  !important;
    top: 15px !important; /* Adjust to position above the slider */
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: #0073aa !important;
    color: white !important;
    padding: 5px 10px !important;
    border-radius: 5px !important;
    font-size: 14px !important;
    font-weight: bold !important;
    white-space: nowrap !important;
}

.clearBoth {
    clear: both !important;
}