/* CONTENEUR GLOBAL */
.search-container { 
    position: relative; 
    width: 100%; 
    max-width: 700px; 
    margin: 0 auto; 
}

/* LA LISTE DE SUGGESTIONS (REFONTE GLASSMORPHISM) */
#search-suggestions {
    position: absolute;
    top: calc(100% + 8px); /* Petit décalage pour l'élégance */
    left: 0; 
    right: 0;
    background: rgba(17, 17, 17, 0.85); /* Fond sombre transparent */
    backdrop-filter: blur(15px);        /* Effet de flou sur l'arrière-plan */
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;                /* Arrondi complet même en haut */
    z-index: 9999;
    max-height: 400px;
    overflow-y: auto;
    display: none; 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    
    /* Animation d'apparition fluide */
    animation: fadeInSlide 0.3s ease-out;
}

@keyframes fadeInSlide {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* CHAQUE LIGNE DE RÉSULTAT */
.suggestion-item {
    padding: 14px 20px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    color: #ffffff !important; 
    font-size: 15px;
    font-weight: 500;
}

/* SURVOL : ON REMPLACE LE VERT PAR LE BLEU CANARD */
.suggestion-item:hover { 
    background: rgba(39, 130, 128, 0.2); /* Teal Colette très subtil */
}

/* LE PETIT TAG (ARCHIVE, PERSONNALITÉ...) */
.suggestion-item .type-tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(39, 130, 128, 0.15); /* Bleu canard translucide */
    color: #31a3a0;                     /* Texte bleu canard clair */
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 1px;
    border: 1px solid rgba(39, 130, 128, 0.3);
}

.suggestion-item:hover .type-tag { 
    background: #278482; 
    color: #ffffff; 
    border-color: #278482;
}

/* SCROLLBAR PERSONNALISÉE AUX COULEURS DU SITE */
#search-suggestions::-webkit-scrollbar { width: 6px; }
#search-suggestions::-webkit-scrollbar-track { background: transparent; }
#search-suggestions::-webkit-scrollbar-thumb { 
    background: rgba(39, 130, 128, 0.4); 
    border-radius: 10px; 
}
#search-suggestions::-webkit-scrollbar-thumb:hover { 
    background: #278482; 
}