/* Style the autocomplete container */
#autocomplete-results {
    position: absolute;
    z-index: 1000; 
    border: 1px solid #ccc; 
    list-style: none; 
    padding: 0; 
    margin: 0;
    border-radius: 10px; 
    max-width: 300px; 
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); 
}


#autocomplete-results li {
    padding: 10px 15px; 
    cursor: pointer; 
    font-size: 14px; 
    transition: background-color 0.2s ease; 
    border-radius: 10px;
}


#autocomplete-results li:hover {
    background-color: #dee3ed;
}


#autocomplete-results li:first-child {
    font-weight: bold; 
}

