.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(1px);
  user-select: none;
}

.lightbox img {
  max-width: none; /* reset tailwind setting */
  position: relative;
  cursor: zoom-in;
  @apply rounded-lg;
  @apply shadow-lg;
}

.lightbox img.zoomed {
  cursor: grab;
  border-radius: 0;
  box-shadow: none;
}
