.autocomplete-wrapper {
    position: relative;
}

.autocomplete-popup {
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    padding: 0;
    margin: 0;
    list-style: none;
    top: 100%;
    left: 0;
    width: 100%;
}

.autocomplete-item {
    padding: 8px 12px;
    cursor: pointer;
}
.autocomplete-item::before {
    content: none !important;
}

.autocomplete-item.active {
    background-color: var(--prime);
    color: var(--default);
}

.autocomplete-item:hover {
    background-color: #f1f1f1;
    margin: 0 !important;
}

.autocomplete-loader {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    text-align: center;
    background: white;
    padding: 8px 0;
    font-size: 14px;
    color: #666;
    border: 1px solid #ccc;
    border-top: none;
    z-index: 1000;
}