.autocomplete-container {
    position: absolute;
    max-height: 20em;
    overflow: auto;
    background-color: #fff;
    border: .3em solid whitesmoke;
    z-index: 10000;
    box-sizing: border-box;
    font-size: smaller;
    box-shadow: var(--box-shadow);
    max-width: 90%;

}

.autocompleteSearchResult:hover {
    cursor: pointer;
    color: var(--color-success);
}

.input-autocomplete-wrapper {
    position: relative;
    width: 100%;
}

.dropdown-icon {
    position: absolute;
    inset-inline-end: 0;
    top: 50%;
    transform: translateY(-50%);
}