.image-zoom-container {
  cursor: pointer;
  position: relative;
  border: 1px solid #ccc;
}

.magnifying-glass-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.image-zoom-container:hover .magnifying-glass-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.7);
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  color: #333333;
  font-size: 0.9rem;
  padding: 8px 12px;
  pointer-events: none;
  z-index: 10;
  padding: 5px 20px;
}

.img-caption p {
  font-size: 0.9rem;
  padding: 8px 12px;
  color: #333333;
  max-width: 550px;
  margin: 0 auto;
}

.img-caption p:hover {
  text-decoration: none!important;
}

.image-zoom-container:hover p {
  text-decoration: none;
}

