
/*
 * Styles pour le widget de recherche Lerno
 */

.suggestion-item {
    display: block;
    /* Padding vertical réduit */
    padding: 0.5rem 1rem;
    font-size: 0.875rem; /* 14px */
    line-height: 1.25rem; /* 20px */
    /* text-slate-700 (gris) */
    color: #374151; 
    cursor: pointer;
    text-decoration: none;
    /* Forcer sur une ligne */
    white-space: nowrap;
    overflow: hidden;
    /* Ellipse (...) */
    text-overflow: ellipsis; 
    background-color: transparent;
    transition: background-color 0.2s ease;
}

/* Style au survol */
.suggestion-item:hover {
    /* bg-slate-100 */
    background-color: #f1f5f9;
}



