@media (min-width: 601px) {
  .galeria .obrazy img {
    cursor: zoom-in;
    transition: opacity 0.2s;
  }

  .galeria .obrazy img:hover {
    opacity: 0.8;
  }
}

#lightbox-dynamic {
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}

#lightbox-dynamic.active {
  display: flex;
}

#lightbox-img {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.1s ease-out;
}

@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
