/* Fullscreen wrapper that covers the entire viewport */
.fullscreen-wrapper {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Image inside the fullscreen wrapper */
.fullscreen-wrapper img {
  max-width: 96vw;
  max-height: 95vh;
  object-fit: contain;
  box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0.5); /* ?? Subtle white glow */
  cursor: zoom-out;
}
