  
    /* Wrapper qui englobe le bouton + menu */
.menu-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
}

.menu-button {
  background-color: #007acc;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  font-size: 0.9rem;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  border: none;
}

/* Le menu caché par défaut */
.floating-menu-hover {
  position: absolute;
  bottom: 45px;
  left: 0;
  width: 200px;
  max-height: 70vh;
  background-color: white;
  border: 1px solid #ccc;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
  padding: 0.5rem 0.7rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  overflow-y: auto;
  display: none;
}

.menu-container:hover .floating-menu-hover {
  display: block;
}

.floating-menu-hover ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.floating-menu-hover li {
  margin-bottom: 0.4rem;
}

.floating-menu-hover a {
  text-decoration: none;
  color: #007acc;
  display: block;
  padding: 0.3rem;
  transition: background 0.3s;
}

.floating-menu-hover a:hover {
  background-color: #e6f4fa;
  border-left: 3px solid #007acc;
}

/* Option : cacher sur mobile */
@media (max-width: 900px) {
  .menu-container {
    display: block;
  }
}

