.menu-icon-local {
    cursor: pointer;
    font-size: 20px;
    color: #007bff;
    transition: color 0.3s ease;
}

.menu-icon-local:hover {
    color: #0056b3;
}

.location-container {
    position: relative; /* 👈 Ensures dropdown positions relative to this */
}

.search-bar {
    display: none;
    margin-left: 10px;
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 250px;
    font-size: 14px;
    z-index: 1001;
    background-color: #fff;
}

/* Show the search bar when the container is active */
.location-container.active .search-bar {
    display: inline-block;
}

/* Search results dropdown */
.results-container {
    display: none;
    position: absolute;
    top: 100%; /* 👈 place it below the input */
    left: 10px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 250px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 9999; /* 👈 MUST be higher than everything, including modals/maps */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Each result item */
.result-item {
    padding: 8px 12px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.result-item:hover {
    background-color: #f1f1f1;
}

/* Google Map iframe wrapper */
#map {
    height: 300px;
    width: 100%;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}
