/* Lightbox overlay styles */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
  z-index: 9999;
  opacity: 0;
  animation: fadeIn 0.3s forwards;
}

/* Lightbox image styles */
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 4px;
  user-select: none;
  pointer-events: none;
}

/* Lightbox video/iframe styles */
  .lightbox-overlay iframe,
  .lightbox-overlay video {
    width: 80%;
    height: 50%;
    border-radius: 4px;
    background: #000;
    display: block;
  }

@media (min-width: 981px) {
  .lightbox-overlay iframe,
  .lightbox-overlay video {
    width: 42%;
    height: 50%;
  }
}
/* Fade-in animation */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
