/* Styles for location search dropdown */

.location-dropdown {
    position: absolute;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0 0 4px 4px;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.location-item {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s ease;
}

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

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

.location-item.active {
    background-color: #e9ecef;
}

/* Make sure the dropdown is positioned correctly */
.input-group {
    position: relative;
}

/* Responsive styles */
@media (max-width: 767.98px) {
    .location-dropdown {
        max-height: 150px;
    }
}
