/* Static Lightbox Modal Styles */
.slb-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  user-select: none;
}

.slb-overlay.slb-active {
  opacity: 1;
  visibility: visible;
}

.slb-container {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.slb-image {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  transition: transform 0.2s ease;
}

.slb-close {
  position: absolute;
  top: 20px;
  right: 25px;
  color: #ffffff;
  font-size: 36px;
  font-weight: 300;
  cursor: pointer;
  z-index: 1000000;
  line-height: 1;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, transform 0.2s ease;
}

.slb-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

.slb-prev, .slb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 32px;
  cursor: pointer;
  z-index: 1000000;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: background 0.2s ease, transform 0.2s ease;
}

.slb-prev:hover, .slb-next:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-50%) scale(1.1);
}

.slb-prev { left: 20px; }
.slb-next { right: 20px; }

.slb-counter {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-family: sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.slb-photo-id {
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.45);
}
