.autocomplete-list {
    position: absolute;
    z-index: 1;
    width: inherit;
    max-height: 120px;
    overflow-y: scroll;
    padding: 0;
    margin: 0;
    list-style-type: none;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.autocomplete-item {
    padding: 8px;
    cursor: pointer;
}
.autocomplete-item:hover,
.autocomplete-item.selected {
    background-color: #f2f2f2;
}
