/* NI Event Gallery Modal Styles */

.ni-popup-thumb {
  cursor: pointer;
  overflow: hidden;
  border-radius: 0.5rem;
  transition: transform 0.2s;
  height: 200px;
}
.ni-popup-thumb:hover {
  transform: scale(1.02);
}
.ni-popup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#galleryContent {
  width: 100%;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
#galleryContent img, #galleryContent video {
  max-width: 90%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  border-radius: 8px;
}
