.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  padding: 2rem;
}
.lightbox-overlay.open {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.open.has-svg {
  display: block;
  overflow: auto;
}
.lightbox-content img {
  max-width: 96vw;
  max-height: 92vh;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.6);
}
.lightbox-svg {
  display: inline-block;
  min-width: 100%;
  background: #ffffff;
  border-radius: 4px;
  padding: 1rem;
}
.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.1rem;
  cursor: pointer;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}
