/*#suggestions {
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
}

#suggestions li {
    cursor: pointer;
}

#suggestions li:hover {
    background-color: #f8f9fa;
}

ul.list-group.position-absolute {
    width: 100%; /* Coincide con el ancho del contenedor relativo 
    z-index: 1000; /* Para que esté por encima de otros elementos 
}*/

#category_suggestions {
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000; /* Para asegurarlo por encima de otros elementos */
    width: 100%; /* Coincide con el ancho del contenedor relativo */
    left: 0; /* Alineación con el borde izquierdo del contenedor */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Opcional: sombra para resaltar */
}

#category_suggestions li {
    cursor: pointer;
}

#category_suggestions li:hover {
    background-color: #f8f9fa;
}