/* Only new styles needed for autocomplete dropdown */
.autocomplete-dropdown {
    display: none;
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0rem 0rem 1rem 1rem;
    border-top: none;
    margin: 0px 16px 0px 16px;
    /* max-height: 200px;
    overflow-y: auto;
    z-index: 1000; */
}

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

.autocomplete-item:hover {
    background: #f5f5f5;
}