/* Add a transition to the sidebar container for smooth effects */
.search-result-wrap {
    background-color: #f8f9fa;
    /* Light background for contrast */
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Subtle animation on hover */
.search-result-wrap:hover {
    transform: translateY(-5px);
    /* Move the sidebar up slightly */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    /* Add a subtle shadow */

}

/* Add a transition to the dropdowns for a smoother feel */
/* .form-select {
    transition: all 0.2s ease-in-out;
} */

/* Change dropdown style on focus */
/* .form-select:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
} */

/* .form-select:hover {
  background-color: #ffffff;
  color:#222;
  padding:15px;
} */
select.custom-filter {
    display: flex;
    align-items: center;
    height: 42px;
    border: 1px solid #222;
    border-radius: 4px;
    background-color: #f1f3f6;
    padding: 0 12px;
    font-size: 14px;
    background-position: right 12px center;
    background-size: 14px 14px;

}



.custom-filter:focus {
    border-color: #fa2837;
    box-shadow: 0 0 0 2px rgba(240, 40, 40, 0.2);
    background-color: #fff;
    outline: none;
}



.sort-wrapper {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: #222;

}

.sort-wrapper label {
    position: absolute;
    top: -12px;
    left: 12px;
    font-size: 15px;
    background: #f2f6fb;
    padding: 0 6px;
    z-index: 1;
}

.custom-filter {
    /* width: 250px; */
    padding: 10px 40px 10px 12px;
    font-size: 16px;
    border: 2px solid #fa2837;
    border-radius: 8px;
    background-color: white;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: #333;
    position: relative;
    z-index: 0;
}

.single-listing-img img {
    border: 1px solid #ddd;
}

price-box{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#f8f9fa;
    padding:10px 15px;
    border-radius:10px;
    font-weight:600;
    font-size:15px;
    color:#111;
    border:1px solid #eee;
}

/* Slider Full */
#price-slider{
    margin:12px 5px 0;
    height:6px;
    border:none;
    background:#ddd;
    border-radius:50px;
}

/* Active Range */
#price-slider .ui-slider-range{
    background:#fa2837;
    border-radius:50px;
}

/* Handles */
#price-slider .ui-slider-handle{
    width:18px;
    height:18px;
    border-radius:50%;
    border:none;
    background:#fa2837;
    top:-6px;
    cursor:pointer;
    box-shadow:0 3px 10px rgba(0,0,0,0.15);
    transition:0.2s;
}

#price-slider .ui-slider-handle:hover{
    transform:scale(1.1);
}

/* Mobile */
@media(max-width:768px){
    .price-box{
        font-size:14px;
        padding:8px 12px;
    }

    #price-slider .ui-slider-handle{
        width:20px;
        height:20px;
    }
}