 .autocomplete-suggestions {
        max-height: 300px;
        overflow-y: auto;
        position: absolute;
        z-index: 1000;
        background-color: #fff;
        border-radius: 6px;
}

.suggestion-item {
    padding: 8px;
    cursor: pointer;
}

.suggestion-item:hover {
    background-color: #DDF9F8;
}

