body {
    font-family: Arial, sans-serif;
}
#suggestionList {
    max-height: 250px;
    overflow-y: auto;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    border: 1px solid #dee2e6;
    border-top: none;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    border-radius: 0 0 0.375rem 0.375rem;
}

#suggestionList .list-group-item {
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

#suggestionList .list-group-item:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
}
