#custom-search-suggestions {
    position: absolute;
    background: #fff;
    border: 1px solid #ccc;
    width: 100%;
    z-index: 999;
    max-height: 200px; /* Limite la hauteur */
    overflow-y: auto; /* Active un défilement si nécessaire */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
#custom-search-suggestions div {
    padding: 10px;
    cursor: pointer;
    font-size: 14px; /* Style plus harmonieux */
    color: #333;
}
#custom-search-suggestions div:hover {
    background-color: #f0f0f0;
    color: #000;
}