/* --- Custom Search Box Responsive Fixes --- */
.search-box {
    display: block;
    width: 100%;
    background: #fff;
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.search-box .search-box-content {
    display: block !important;
    position: static;
}

/* Stack inputs on small screens */
@media (max-width: 768px) {
    .search-box .row > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 0.75rem;
    }
}

/* Compact price & area dropdowns on large screens */
@media (min-width: 992px) {
    .search-box .dropdown-menu {
        min-width: 14em !important;
    }

    .search-box .dropdown button.btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.9rem;
    }
}

/* Align search button vertically center */
.button-search-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-search-wrapper .btn-group {
    width: auto;
}

