#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  flex-direction: column;
}

#lightbox-img {
  max-width: 90%;
  max-height: 85vh; /* Zostawiamy bezpieczny margines na dole ekranu */
  border-radius: 4px; /* Delikatne, nowoczesne zaokrąglenie */
}

.close {
  position: absolute;
  top: 20px;
  left: 20px;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

.download {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 20px;
}

.download a {
  color: white;
  text-decoration: none;
}

.prev {
  position: absolute;
  left: 20px;
  color: white;
  font-size: 50px;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
}

.next {
  position: absolute;
  right: 20px;
  color: white;
  font-size: 50px;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 4px solid rgba(255, 255, 255, 0.2); /* Półprzezroczysty pierścień */
  border-top: 4px solid #ffffff;              /* Główny, obracający się biały kolor */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
  display: none;
  z-index: 1001;
}
@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

#lightbox-caption {
  position: absolute;
  bottom: 30px; /* Przyklejamy podpis na stałe do dołu ekranu */
  left: 0;
  width: 100%;
  color: white;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8); /* Cień, żeby tekst był czytelny */
  pointer-events: none; /* Tekst nie zablokuje przypadkiem kliknięć */
}