/* Container della galleria di immagini */
.image-gallery {
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* Miniature */
.image-gallery img {
  width: 600px;
  height: 222px;
  cursor:nw-resize;
  transition: transform 0.3s;
}

.image-gallery img:hover {
  transform: scale(1.02);
}

/* Overlay popup immagine onclick con JavaScript */
#popup-overlay {
  display: none;
  position: fixed;
  top: 10%;
  left: 10%;
  width: auto;
  height: auto;
  background: rgba(247, 231, 231, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 25px;
  border:1px solid #af4e5aff;
}

/* Immagine ingrandita */
#popup-image {
  max-width: 100%;
  max-height: 100%;
}

/* Bottone di chiusura (X) */
#close-popup {
  position: absolute;
  top: 343px;
  right: 25px;
  font-size: 16px;
  color: #af4e5aff;
  cursor:nw-resize;
  user-select: none;
}