.fixed-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  color: white;
  cursor: pointer;
  z-index: 999;
}

.fixed-button .img-button {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 0px;
}

.fixed-button .img-button:hover{
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.fixed-button .img-button:active{
  box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
}

.fixed-button, .menu {
  transition: all 0.5s ease; /* Animation douce de 0.5 secondes */
}

/* Styling for the menu */
.menu {
  transform: translateY(20px);
  opacity: 0;
  z-index: -10;
  display: none;
}

/* Style lorsque le menu est actif */
.menu.active {
  bottom: 120px;
  right: 20px;
  transform: translateY(0);
  opacity: 1;
  background-color: #f9f9f9;
  border-radius: 10px;
  position: fixed;
  padding: 10px;
  z-index: 998;
  display: block;
}
