.q_lista 
{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.15s ease-out;
    position: absolute;
    width: calc(100% - 2px);
    z-index: 1;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 2px;
}

.q_lista.show-animation 
{
    max-height: 200px !important; /* Ajusta según sea necesario */
}

.q_lista ul 
{
    list-style: none;
    padding: 0;
    margin: 0;
}

.q_lista ul li 
{
    padding: 2px 5px 2px 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-out;
    text-align: left;
}

.q_lista ul li:hover 
{
    background-color: #f0f0f0;
}

.q_lista ul li.selected 
{
    background-color: #e0e0e0;
}

.uk-search-input:focus + .q_lista:not(:empty),

.q_lista:hover 
{
    
    max-height: 200px;
    overflow-y: auto;
}

.item 
{
    font-weight: bold;
}

/* Estilos para el detalle del item en texto cursivo */
.detalle 
{
    font-style: italic; /* Texto inclinado */
    color: #777;
}