#fullscreen-view {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8); /* Fond sombre semi-transparent */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#fullscreen-img {
  max-width: 100%; /* ou la taille souhaitée */
  max-height: 100%; /* ou la taille souhaitée */
  margin: 0 auto; /* Centrer l'image */
}

#close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

#left-arrow, #right-arrow {
  cursor: pointer;
  position: absolute;
  top: 50%;
  font-size: 30px;
  color: #fff;
  user-select: none;
}

#left-arrow {
  left: 30px;
}

#right-arrow {
  right: 30px;
}

