/* Базовые стили изображений */
img[data-action="zoom"] {
  cursor: pointer;
  transition: transform 0.2s;
  margin: 10px auto;
}

img[data-action="zoom"]:hover {
  transform: scale(1.02);
}

/* Стили модального окна */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
  z-index: 1001;
}

.modal-image {
  width: auto;
  height: auto;
  margin: auto;
  max-width:1200px;
  max-height: 80vh;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Анимации */
.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 0.6; }
}