/* Estilos do Filtro */
.filter-container {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.olx-style-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-section {
    flex: 1 1 200px;
    min-width: 200px;
}

.filter-section h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #1e1e1e;
    font-weight: 600;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-options label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.2s;
}

.filter-options label:hover {
    background: #f5f5f5;
}

.filter-options input[type="checkbox"] {
    margin-right: 5px;
}

.filter-options button {
    background: #f5f5f5;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.filter-options button:hover, 
.filter-options button.active {
    background: #9c8000;
    color: white;
}

.price-range {
    display: flex;
    gap: 10px;
}

.price-range > div {
    flex: 1;
}

.price-range input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.area-range-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.area-range {
    flex: 1;
}

.area-range > div {
    display: flex;
    gap: 5px;
}

.area-range input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.filter-actions {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-top: 20px;
}

.filter-actions button {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s;
}

.clear-btn {
    background: #f5f5f5;
    color: #333;
}

.clear-btn:hover {
    background: #e0e0e0;
}

.search-btn {
    background: #9c8000;
    color: white;
}

.search-btn:hover {
    background: #7a6700;
}

/* Estilos da barra de pesquisa */
.search-container {
    margin-bottom: 20px;
    width: 100%;
}

.search-box {
    position: relative;
    display: flex;
    width: 100%;
}

#address-search {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: border-color 0.3s;
}

#address-search:focus {
    outline: none;
    border-color: #9c8000;
}

#search-button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50px;
    background: #9c8000;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

#search-button:hover {
    background: #7a6700;
}

#search-button i {
    font-size: 18px;
}

.search-bar{
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: border-color 0.3s;
}