#searchResults {
    max-height: 200px; /* Set a max height for the results */
    overflow-y: auto; /* Allow scrolling if there are many results */
    border: 1px solid #ced4da; /* Border for the results */
    border-radius: 0.375rem; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
    z-index: 1000; /* Ensure it appears above other elements */
}

#searchResults div {
    transition: background-color 0.3s;
}

#searchResults div:hover {
    background-color: #f8f9fa; /* Highlight on hover */
}
