.lightbox {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100vw;
  max-height: 100vh;
  width: 100vw;
  height: 100vh;
  padding: 40px;
  border: none;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--rounded);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.lightbox[open] {
  animation: lightbox-in 0.2s ease;
}

.lightbox[open]::backdrop {
  animation: backdrop-in 0.2s ease;
}

@keyframes lightbox-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes backdrop-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*# sourceMappingURL=lightbox.css.map */