.ba-property-filter {
    background: #f9f9f9;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.filter-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 14px;
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.filter-actions {
    display: flex;
    gap: 10px;
}

.filter-actions .button {
    padding: 8px 15px;
    background: #2271b1;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.filter-actions .button:hover {
    background: #135e96;
}

.filter-actions .reset-filters {
    background: #ccc;
}

.filter-actions .reset-filters:hover {
    background: #aaa;
}