/**
 * Lightbox Styles
 * @version 1.3.0
 */
.ns-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.ns-lightbox-content {
  max-width: 90%;
  max-height: 90%;
  text-align: center;
}

.ns-lightbox-image {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.ns-lightbox-caption {
  color: #fff;
  padding: 1rem;
  font-size: 1rem;
}

.ns-lightbox-close,
.ns-lightbox-prev,
.ns-lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 2rem;
  color: #000;
  cursor: pointer;
  padding: 1rem;
  transition: all 0.2s;
}

.ns-lightbox-close:hover,
.ns-lightbox-prev:hover,
.ns-lightbox-next:hover {
  background: #fff;
}

.ns-lightbox-close {
  top: 20px;
  right: 20px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.ns-lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.ns-lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
