/* Container della galleria di immagini */
.image-gallery {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.image-gallery-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
  margin-bottom: 15px;
}
.image-gallery-titolo {
  text-align: center;
  margin: 6px 0 6px;
  font-size: 14px;
  color: #af4e5aff;
}
/* Miniature */
.image-gallery img {
  border:5px solid #d9b7bc;  
  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: 5px;
  right: 25px;
  font-size: 16px;
  color: #7c3139ff;
  cursor:nw-resize;
  user-select: none;
  margin-bottom: 5px;
}   