/* js/components/lightbox.js */
#lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

#lightbox-overlay.open {
  display: flex;
}

#lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
}