/* Lightbox Component Styles */

.tr-zoomable {
  cursor: zoom-in;
}

/* ── Dialog shell ────────────────────────────────────────── */
.tr-lightbox {
  border: none;
  background: transparent;
  padding: 0;
  max-width: 100vw;
  max-height: 100vh;
  overflow: visible;
}

.tr-lightbox[open] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.tr-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.85);
}

/* ── Image ───────────────────────────────────────────────── */
.tr-lightbox img {
  max-width: 80vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

/* ── Caption ─────────────────────────────────────────────── */
.tr-lightbox-caption {
  font-family: "Alegreya Sans", sans-serif;
  font-size: var(--font-size-small);
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  text-align: center;
  max-width: 80vw;
}

/* ── Buttons (shared) ────────────────────────────────────── */
.tr-lightbox-close,
.tr-lightbox-prev,
.tr-lightbox-next {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.15s;
}

.tr-lightbox-close:hover,
.tr-lightbox-prev:hover,
.tr-lightbox-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ── Close button ────────────────────────────────────────── */
.tr-lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 1.75rem;
  width: 2.5rem;
  height: 2.5rem;
}

/* ── Prev / Next buttons ─────────────────────────────────── */
.tr-lightbox-prev,
.tr-lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
}

.tr-lightbox-prev svg,
.tr-lightbox-next svg {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  flex-shrink: 0;
}

.tr-lightbox-prev {
  left: 1.25rem;
}
.tr-lightbox-next {
  right: 1.25rem;
}
