﻿.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: #192537;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  z-index: 1000;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-content {
  max-width: min(900px, 90vw);
  max-height: 80vh;
  text-align: center;
  color: #E9E9E9;
}

.lightbox-content img {
  max-height: 70vh;
  width: auto;
  margin: 0 auto;
  border: 2px solid #B09E80;
}

.lightbox-caption {
  margin-top: 12px;
  font-size: 14px;
  letter-spacing: 1px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  border: 1px solid #B09E80;
  color: #E9E9E9;
  background: transparent;
  padding: 6px 12px;
  cursor: pointer;
  letter-spacing: 1px;
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: #B09E80;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #B09E80;
  color: #E9E9E9;
  background: transparent;
  padding: 6px 12px;
  cursor: pointer;
  letter-spacing: 1px;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-prev:hover,
.lightbox-prev:focus,
.lightbox-next:hover,
.lightbox-next:focus {
  color: #B09E80;
}

.lightbox-prev:disabled,
.lightbox-next:disabled {
  opacity: 0.4;
  cursor: default;
}

