    body {
      margin: 0;
      font-family: Arial, sans-serif;
    }

    .overlay {
      position: relative;
      width: 100%;
      height: 100vh;
      background-color: #f2f2f2;
    }

    .overlay2 {
      display: none;
      position: relative;
      width: 100%;
      height: 100vh;
      background-color: #f2f2f2;
    }

    #banner {
      background-color: #2ecc71;
      height: 55px;
      display: flex;
      align-items: center;
      padding: 0 20px;
     margin-left: 150px;
     justify-content: center;
    }



    #banner-title {
      font-size: 18px;
      max-width: 350px;
      width: 320px;
      text-align: center;
      word-wrap: break-word;
      line-height: 1.4;
      border: none;
      background: transparent;
      outline: none;
      width: 100%;
      padding: 5px;
      font-weight: bold;
      border: 1px solid #ccc;
    }


    .conteneur {
      display: none;
      margin-left: 150px;
      background-color: white;
    }

    .visible {
      display: block !important;
    }



/* Bouton menu hamburger */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 35px;
  height: 30px;
  background: #94c7a9;
  border: 1px solid #000000;
  cursor: pointer;
  border-radius: 5px;
}

.hamburger-menu .bar {
  width: 30px;
  height: 5px;
  background-color: rgb(29, 26, 108);
  border-radius: 5px;
}

/* Style de base du menu des boutons */
#button-container {
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  z-index: 200;
  height: 100%;
  background-color: rgb(255, 255, 255);
  padding: 0px 0;
  color: black;
  overflow-x: clip;
  overflow-y: auto;
  border-right: 1px solid #ccc;
}

/* Lorsque le conteneur des boutons est ouvert */
#button-container.open {
  left: 0;
}

/* Pour les petites tailles d'écran (tablette/mobile) */
@media (max-width: 900px) {
  #button-container {
    left: -250px; /* cache le menu */
    transition: left 0.3s ease;
  }

  #button-container.open {
    left: 0; /* affiche le menu */
  }

  /* Affiche le bouton hamburger */
  #hamburger-menu {
    display: flex;
    z-index: 201;
    position: fixed;
    top: 10px;
    left: 1px;
  }

  /* Cache l'image du logo sur mobile */
  #geoplussonic {
    display: none;
  }

  /* Masque les boutons et les affiche dans le menu latéral */
  #buttons-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 80px; /* Un peu d'espace au-dessus */
  }

  /* Les boutons deviennent plus grands et espacés */
  .button-icon {
    font-size: 35px;
    width: 60px;
    height: 50px;
  }

  /* Afficher le texte des boutons en mobile */
  #button-container.open .text-container {
    display: block;
  }
  
  #banner {
    margin-left: 0px;
  }

  .conteneur {
    margin-left: 0px;
  }
}


#button-container img {
  width: 150px;
  margin: 0;
  align-self: flex-start;
}
#buttons-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: auto 0; /* Centre verticalement dans #button-container */
  width: 100%;
  align-items: flex-start;
}


#expandIcon {
  font-size: 35px;
  color: #339c36ff;
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 30px; /* Espace sous l'icône */
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 5px;
}

#expandIcon span {
  font-size: 14px;
  color: white;
  margin-top: 5px;
}

/* Lorsque le conteneur est 'expanded' */
#button-container.expanded #expandIcon i {
  display: none; /* Cache l'icône de menu */
}

#button-container.expanded #expandIcon::before {
  content: '\f00d'; /* Code Unicode pour l'icône 'fa-times' (croix) */
  font-family: 'Font Awesome 5 Free'; /* Assure que le bon font est utilisé */
  font-weight: 900; /* Utilise le poids de l'icône solide */
  font-size: 35px;
  color: #339c36ff;
  display: block; /* Affiche l'icône croix */
}


#btnMention {
  position: relative;
  bottom: 0px; /* Décale le bouton du bas de 20px */
  left: 50%;
  transform: translateX(-50%); /* Centre horizontalement le bouton */
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 35px;
  color: #339c36ff;
}
/* Conteneur des boutons avec texte et icône */
.button-container-inner {
  display: flex;
  flex-direction: column; /* Pour empiler icône et texte */
  align-items: center;     /* Centrer horizontalement */
  justify-content: center;
  width: 100%;
  gap: 5px;
  transition: transform 0.3s ease, color 0.3s ease;
}



/* Style des boutons (icônes) */
.button-icon {
  font-size: 30px;
  color: black;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
  width: 50px; /* Fixe une largeur pour les icônes */
  height: 30px; /* Fixe une hauteur pour les icônes */
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-icon i {
  font-size: 40px; /* Plus gros */
}

/* Style du texte */
.text-container {
  display: none;
  color: black;
  font-size: 14px;
  text-align: center; /* Centrer le texte */
  padding: 2px 5px;
  border-radius: 5px;
  width: 100%;
  cursor: pointer;
}


.text-container:hover {
  color: #339c36ff;
}

/* Agrandissement au survol des icônes */
.button-icon:hover {
  transform: scale(1.2);
  color: #339c36ff;
}

/* Lorsque le conteneur est agrandi */
#button-container.expanded .text-container {
  display: block;
}

/* Lorsque l'on survole le conteneur parent, appliquer le hover aux boutons et au texte */
.button-container-inner:hover .button-icon,
.button-container-inner:hover .text-container {
  color: #339c36ff;
}


.active-button {
  color: rgb(21, 187, 21) !important;
}

.button-icon.active-button i {
  color: rgb(21, 187, 21) !important;
}






