/* Lightbox overlay */

#lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 21, 41, 0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}

#lightbox-img {
  max-width: 90%;
  max-height: 80vh;
  cursor: default;
}

#lightbox-close {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  z-index: 10000;
  line-height: 1;
}
#lightbox-close:hover {
  color: #ff9821;
}

#lightbox-prev,
#lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 60px;
  color: white;
  cursor: pointer;
  z-index: 10000;
  user-select: none;
  line-height: 1;
}
#lightbox-prev { left: 20px; }
#lightbox-next { right: 20px; }
#lightbox-prev:hover,
#lightbox-next:hover {
  color: #ff9821;
}

#lightbox-caption {
  color: #ccc;
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
}
