/* 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;
}

