#autocomplete-suggestions {
    position: absolute;
    width: 100%;
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid #ccc;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1000;
    display: none;
}

#autocomplete-suggestions li {
    padding: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#autocomplete-suggestions li:hover {
    background-color: #f2f2f2;
}

#autocomplete-suggestions li.selected {
    background-color: #4285f4;
    color: #fff;
}