.custom-autocomplete {
    position: relative;
    width: 100%;
    flex: 1;
    display: flex;
}

.autocomplete-dropdown {
    position: absolute;
    max-height: 300px;
    overflow-y: auto;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
    font-family: 'Open Sans', sans-serif;
}

.autocomplete-item {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    font-size: 14px;
    transition: background-color 0.2s;
}

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

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

.autocomplete-item.highlighted {
    background-color: #e9ecef;
}

/* Hide Google's default autocomplete dropdown */
.pac-container {
    display: none !important;
}