.autocomplete-results {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    padding: 10px;
    min-width: 100%;
    z-index: 1000;
    max-width: 150%;
    border-radius: var(--border-radius);
}

.autocomplete-results div {
    padding: 10px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
}

.autocomplete-results div:hover {
    background-color: #ccc;
}

.autocomplete-results div:last-child {
    border-bottom: none;
}

.autocomplete-wrapper {
    /* Used to make sure the results are displayed beneath the input */
    position: relative;
}
.nav-bar-results {
    color: black;
    max-width: 500px;
    min-width: unset !important;
}