
:root {
    --primary-color: #2e7d32;   /* Vert nature / environnement / développement */
    --secondary-color: #e65100; /* Orange humanitaire / action d'urgence */
    --dark-color: #1a252f;      /* Bleu nuit / texte sombre */
    --light-color: #f8f9fa;     /* Fond clair */
    --white: #ffffff;
    --gray: #6c757d;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--dark-color);
    line-height: 1.6;
    background-color: var(--white);
}

/* --- MISE EN PAGE GLOBALE --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* --- SECTION ÉQUIPE (COMPACTE & DEFILABLE) --- */
.equipe-section {
    padding: 40px 0; /* Hauteur globale de la section considérablement réduite */
}

/* Zone du slider */
.team-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

/* Track de défilement horizontal */
.team-track {
    display: flex;
    gap: 20px;
    overflow-x: auto; /* Permet le défilement horizontal */
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 15px;
    scrollbar-width: thin; /* Barre de défilement fine sur Firefox */
}

/* Personnalisation de la barre de défilement pour Chrome/Safari */
.team-track::-webkit-scrollbar {
    height: 6px;
}

.team-track::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.team-track::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

/* Cartes de profils réduites (Compactes) */
.team-profile-card {
    flex: 0 0 250px; /* Force une largeur fixe compacte de 250px par carte */
    scroll-snap-align: start;
    background-color: var(--white);
    border-radius: 8px;
    padding: 20px 15px; /* Padding réduit */
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.06);
    border-bottom: 3px solid var(--primary-color);
    transition: var(--transition);
}

.team-profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.12);
}

/* Conteneur et style de la photo de profil */
.profile-img-container {
    width: 90px;  /* Taille d'image réduite */
    height: 90px;
    margin: 0 auto 12px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--light-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-profile-card h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 4px;
}

.profile-role {
    display: block;
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.team-profile-card p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.4;
    margin: 0;
}

/* --- SECTION ÉQUIPE (AUTO-SLIDER INIFINI) --- */
.equipe-section {
    padding: 40px 0;
    background-color: var(--white);
}

/* Masque tout ce qui dépasse du conteneur visible */
.team-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

/* Effet dégradé blanc sur les côtés gauche et droit pour masquer doucement l'entrée/sortie */
.team-slider-container::before,
.team-slider-container::after {
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.team-slider-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.team-slider-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

/* Track qui anime l'ensemble des cartes */
.team-track-autoplay {
    display: flex;
    gap: 20px;
    width: calc(270px * 8); /* (Largeur carte 250px + gap 20px) * Nombre total de cartes (12) */
    animation: scrollAutoplay 50s linear infinite; /* Glissement continu et fluide */
}

/* Met sur pause le défilement automatique lorsque l'utilisateur survole l'équipe */
.team-track-autoplay:hover {
    animation-play-state: paused;
}

/* Cartes individuelles compactes */
.team-profile-card {
    width: 250px;
    flex-shrink: 0; /* Évite que les cartes ne s'écrasent */
    background-color: var(--white);
    border-radius: 8px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.06);
    border-bottom: 3px solid var(--primary-color);
    transition: var(--transition);
}

.team-profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.12);
}

/* Photo de profil */
.profile-img-container {
    width: 90px;
    height: 90px;
    margin: 0 auto 12px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--light-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-profile-card h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 4px;
}

.profile-role {
    display: block;
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.team-profile-card p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.4;
    margin: 0;
}

/* Résumé de l'équipe compacté */
.team-summary-compact {
    margin-top: 25px;
    background-color: var(--light-color);
    padding: 12px 20px;
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
    display: inline-block;
    width: 100%;
}

.team-summary-compact p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--dark-color);
}

/* --- ANIMATION DE DÉFILEMENT (INFINITE SCROLL) --- */
@keyframes scrollAutoplay {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50%)); /* Décale de exactement la moitié de la liste (6 cartes + gaps) */
    }
}



.bg-light { background-color: var(--light-color); }
.bg-dark { background-color: var(--dark-color); }
.text-light { color: var(--light-color); }
.text-center { text-align: center; }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin: 10px auto 0 auto;
}

/* Grilles Flexbox/Grid */
.grid {
    display: grid;
    gap: 30px;
}
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* Boutons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #1b5e20;
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--dark-color);
}

/* --- NAVIGATION & DROPDOWN --- */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark-color);
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo span { 
    color: var(--primary-color); 
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu a, .dropdown-trigger {
    text-decoration: none;
    color: var(--dark-color);
    margin-left: 20px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.nav-menu a:hover, .nav-menu a.active, .dropdown:hover .dropdown-trigger {
    color: var(--primary-color);
}

.nav-menu .btn-nav {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
}

.nav-menu .btn-nav:hover {
    background-color: #b33c00;
    color: var(--white);
}

/* --- STRUCTURE DU MENU DÉROULANT --- */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger i {
    font-size: 0.8rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg); /* La flèche tourne au survol */
}

/* Boîte du menu déroulant */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 20px; /* Aligné avec la marge de l'élément parent */
    background-color: var(--white);
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 10px 0;
    z-index: 1100;
    border-top: 3px solid var(--primary-color);
}

/* Affichage au survol de la souris */
.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Liens à l'intérieur du menu déroulant */
.dropdown-menu a {
    color: var(--dark-color);
    padding: 8px 16px;
    text-decoration: none;
    display: block;
    margin: 0; /* Reset de la marge gauche de la nav */
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    padding-left: 20px; /* Petit effet de décalage au survol */
}

/* Animation d'apparition fluide */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Alignement du logo et du texte */
.logo {
    display: flex;
    align-items: center;
    gap: 12px; /* Espace entre l'image du logo et le texte */
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark-color);
}

.logo-img {
    height: 50px; /* Hauteur idéale pour la barre de navigation */
    width: auto;  /* Conserve les proportions d'origine */
    object-fit: contain;
}

.logo span { 
    color: var(--primary-color); 
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-color);
    margin-left: 20px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu .btn-nav {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
}
.nav-menu .btn-nav:hover {
    background-color: #b33c00;
    color: var(--white);
}
/* --- ZONE HERO AVEC SLIDER --- */
.hero {
    position: relative;
    height: 60vh; /* Hauteur réduite de 100vh à 60vh */
    min-height: 480px; /* Sécurité pour garder une bonne hauteur sur petit écran */
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 80px;
    overflow: hidden; /* Empêche les débordements des images */
}

/* Conteneur des images en arrière-plan */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Style commun à chaque image */
.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: slideFade 12s infinite ease-in-out; /* Animation fluide en boucle */
}

/* Superposition d'un filtre sombre pour garder le texte lisible */
.hero-slideshow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: lab(94.12% -9.16 6.64 / 0.406); /* Filtre foncé */
    z-index: 2;
}

/* Différé (Delay) pour créer la transition entre les 3 images */
.hero-slideshow .slide:nth-child(1) {
    animation-delay: 0s;
}
.hero-slideshow .slide:nth-child(2) {
    animation-delay: 4s;
}
.hero-slideshow .slide:nth-child(3) {
    animation-delay: 8s;
}
.hero-slideshow .slide:nth-child(4) {
    animation-delay: 12s;
}
.hero-slideshow .slide:nth-child(5) {
    animation-delay: 16s;
}

/* Contenu textuel placé au-dessus du diaporama */
.hero-content {
    position: relative;
    z-index: 3; /* Placé au-dessus du filtre sombre */
    max-width: 800px;
}

.hero h1 {
    font-size: 2.8rem; /* Légèrement ajusté pour correspondre à la hauteur réduite */
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btns .btn { 
    margin-right: 15px; 
}

/* --- ANIMATION DU DIAPORAMA (FADE) --- */
@keyframes slideFade {
    0% {
        opacity: 0;
    }
    8% {
        opacity: 1; /* Apparition (fondu) */
    }
    33% {
        opacity: 1; /* Reste visible */
    }
    41% {
        opacity: 0; /* Disparition (fondu) */
    }
    100% {
        opacity: 0;
    }
}

/* Ajustement responsive mobile */
@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 120px 0 60px 0; /* Espace équilibré sur mobile */
    }
    .hero h1 { 
        font-size: 2rem; 
    }
}

/* --- CARTES & COMPOSANTS --- */
.card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Domaines spécifiques */
.domain-card {
    text-align: center;
    border-top: 4px solid var(--primary-color);
}
.domain-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* --- SECTION IMPACT / COMPTEURS --- */
.counter-grid { text-align: center; }
.counter-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
}

.affiliations {
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
    text-align: center;
}

.logos-flex {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.badge-network {
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
}

/* --- FORMULAIRE DE CONTACT --- */
.contact-info-list {
    list-style: none;
    margin-top: 20px;
}
.contact-info-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}
.contact-info-list i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-family: inherit;
}

.contact-form button {
    border: none;
    cursor: pointer;
    width: 100%;
}

/* --- FOOTER --- */
.footer {
    background-color: #111a22;
    color: var(--gray);
    padding: 30px 0;
    font-size: 0.9rem;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
    .nav-menu { display: none; } /* Pour un vrai projet, prévoir un menu burger en JS */
    .hero h1 { font-size: 2.2rem; }
    .grid { grid-template-columns: 1fr; }
    .section { padding: 50px 0; }
}

/* --- SECTION ÉQUIPE --- */
.team-card {
    border-bottom: 4px solid var(--secondary-color);
    padding: 40px 30px;
}

.team-icon-box {
    width: 80px;
    height: 80px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    border: 2px dashed var(--primary-color);
}

.team-main-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.team-summary {
    margin-top: 40px;
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
}

.team-summary p {
    font-size: 1.1rem;
    margin: 0;
}

/* --- SECTION ACTUALITÉS --- */
.news-card {
    padding: 0;
    overflow: visible; /* ← change hidden en visible */
    display: flex;
    flex-direction: column;
    position: relative; /* ← ajoute position relative */
}

.news-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.news-content {
    padding: 25px;
}

.news-date {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.news-content h4 {
    font-size: 1.25rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-content p {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.news-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
}

.news-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.news-link:hover {
    color: var(--secondary-color);
}

.news-link:hover i {
    transform: translateX(5px);
}



/* --- SECTION NEWSLETTER DESIGN AMÉLIORÉ --- */
.newsletter-section {
    background: linear-gradient(135deg, #111a22 0%, #1a252f 100%);
    padding: 70px 0;
    border-top: 4px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
}

/* Petite touche décorative en arrière-plan */
.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(46, 125, 50, 0.08); /* Rappel du vert principal */
    border-radius: 50%;
    pointer-events: none;
}

.newsletter-box {
    max-width: 580px;
    margin: 0 auto;
}

/* Le conteneur du formulaire sous forme de carte moderne */
.newsletter-form {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px; /* Forme de pilule très moderne */
    padding: 6px 6px 6px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

/* Effet au survol / focus du conteneur */
.newsletter-form:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.25);
    background-color: rgba(255, 255, 255, 0.1);
}

/* Le champ de saisie (Input) */
.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    padding: 10px 5px;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

/* Le bouton de soumission (Submit) */
.btn-newsletter {
    background-color: var(--secondary-color); /* Orange dynamique pour l'appel à l'action */
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(230, 81, 0, 0.3);
}

.btn-newsletter:hover {
    background-color: #f57c00;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(230, 81, 0, 0.4);
}

.btn-newsletter:active {
    transform: translateY(0);
}

.btn-newsletter:disabled, 
.newsletter-input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Messages d'état (Succès & Erreur) */
.newsletter-msg {
    margin-top: 15px;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 8px;
    display: inline-block;
    animation: fadeIn 0.4s ease forwards;
}

.msg-success {
    background-color: rgba(46, 125, 50, 0.2);
    color: #a5d6a7;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.msg-error {
    background-color: rgba(211, 47, 47, 0.2);
    color: #ef9a9a;
    border: 1px solid rgba(229, 115, 115, 0.3);
}

/* Adaptation Mobile */
@media (max-width: 576px) {
    .newsletter-form {
        flex-direction: column;
        border-radius: 12px; /* Forme rectangulaire adoucie sur mobile */
        padding: 12px;
        gap: 12px;
        background-color: rgba(255, 255, 255, 0.05);
    }

    .newsletter-input {
        width: 100%;
        text-align: center;
        padding: 8px 0;
    }

    .btn-newsletter {
        width: 100%;
        border-radius: 8px;
        padding: 12px 0;
    }
}

/* Style de l'infobulle (Tooltip) */
.vlog-tooltip {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  max-width: 90vw;
  max-height: 80vh;
  overflow-y: auto;
  background-color: #ffffff;
  color: #333333;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid #e0e0e0;
  border-top: 4px solid #2e7d32;
  z-index: 9999;
  text-align: left;
}

/* Supprime la flèche — inutile en position fixed */
.vlog-tooltip::after {
  display: none;
}

.vlog-tooltip-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 5px;
}

.vlog-tooltip-header strong {
  font-size: 0.95rem;
  color: #1a1a1a;
}

.vlog-tooltip-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #888;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.vlog-tooltip-close:hover {
  color: #000;
}

.vlog-tooltip-date {
  display: block;
  font-size: 0.75rem;
  color: #777;
  margin-bottom: 8px;
}

.vlog-tooltip-body p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #444;
  margin: 0;
  max-height: 200px;
  overflow-y: auto;
  white-space: pre-line; /* Conserve les sauts de ligne */
}

@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, 5px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* Bouton voir plus */
.btn-voir-plus {
    background: none;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-voir-plus:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Animation message */
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.hidden-tooltip {
    display: none;
}

.visible-tooltip {
    display: block;
}