/* Map Filters Styles */
.map-filters-container {
    background-color: #E83F4B;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.map-filters {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group {
    position: relative;
}

.dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.filter-input {
    width: 335px !important;
    height: 48px !important;
    padding: 12px 40px 12px 16px !important;
    border: 1px solid #BF8080 !important;
    border-radius: 6px !important;
    background-color: white !important;
    font-size: 14px !important;
    color: #333 !important;
    outline: none !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
}

.filter-input:focus {
    box-shadow: 0 0 0 2px rgba(32, 178, 170, 0.3);
}

.filter-input:disabled {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.dropdown-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    margin-top: 4px;
}

.dropdown-item {
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.dropdown-item.selected {
    background-color: #E83F4B;
    color: white;
}

.filter-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    background-color: white;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.near-me-btn {
    color: #20B2AA;
}

.near-me-btn:hover {
    background-color: #20B2AA;
    /* color: white; */
}

.near-me-btn:active, .near-me-btn:focus {
    background-color: white !important;
    color: #20B2AA !important;
}

.near-me-btn:hover svg path {
    stroke: white;
}

.near-me-btn:hover svg circle {
    fill: white;
}

.search-btn {
    color: #E83F4B;
    border: 2px solid #20B2AA;
}

.search-btn:hover {
    background-color: #E83F4B;
    color: white;
    border-color: #E83F4B;
}

/* Responsive */
@media (max-width: 768px) {
    .map-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-input {
        width: 100%;
    }
    
    .filter-btn {
        width: 100%;
        justify-content: center;
    }
}
