
#autocomplete-suggestions {
    display: none; /* Initially hide suggestions */
    position: absolute; /* Makes the suggestions box overlay other content */
    width: 100%; /* Ensures it takes up the full width of the input field */
    max-height: 200px; /* Optional: limit height and make it scrollable if too many suggestions */
    overflow-y: auto; /* Allows scrolling when suggestions exceed the max height */
    background-color: #fff; /* Background color for the dropdown */
    border: 1px solid #ccc; /* Light border around the suggestions box */
    z-index: 1000; /* Ensures the suggestions box appears above other content */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional: adds a subtle shadow */
}

#autocomplete-suggestions.show {
    display: block; /* Show suggestions when there are results */
    border: 1px solid #ccc; /* Add a border only when suggestions are shown */
}

#autocomplete-suggestions.empty {
    display: none; /* Hide suggestions if empty */
    border: none; /* Remove border when empty */
}

#autocomplete-suggestions div {
    padding: 8px 10px; /* Space between text and edges */
    cursor: pointer; /* Shows a pointer when hovering over items */
}

#autocomplete-suggestions div a {
    text-decoration: none;
    color: #333; /* Text color */
}

#autocomplete-suggestions div:hover {
    background-color: #f0f0f0; /* Highlights item on hover */
}

#autocomplete-suggestions {
}
