.autocomplete-wrapper {
    position: relative;
    flex-grow: 1;
    display: flex;
    align-items: center;
}
.autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #dcdcdc;
    border-top: none;
    /*max-height: 250px;*/
    /*overflow-y: auto;*/
    z-index: 1000;
    display: none; /* Oculto por defecto */
    width: max-content;
    padding-block: var(--espacio-xxs);
}
.autocomplete-results.active {
    display: block; /* Visible cuando hay resultados */
}
.autocomplete-item {
    padding: var(--espacio-xxxs) var(--espacio-xxs);
    cursor: pointer;
    transition: background-color 0.1s ease;
    font-size: var(--fs-sm);
    line-height: var(--lh-sm);
}
.autocomplete-item:hover {
    background-color: var(--c-softgrayazul);
}
.autocomplete-item strong {
    font-weight: bold;
}

.autocomplete-wrapper input[type=search] {
    padding-right: var(--espacio);
    width: 100%;
}
.clear-search-button {
    position: absolute;
    right: var(--espacio-xs);
    top: 50%;
    transform: translateY(-50%);

    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #888;
    padding: 0 5px;
    display: none; /* Por defecto, oculto */
}
