
/* Lightbox styl z poprawkami mobil/desktop */
.lightboxOverlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.95);
  width: 100%;
  height: 100%;
}

.lightbox {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox img {
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 80vh;
  box-shadow: 0 0 20px rgba(0,0,0,0.8);
  border-radius: 4px;
}

.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}

.lb-prev {
  left: 20px;
  background-image: url('prev.png');
}

.lb-next {
  right: 20px;
  background-image: url('next.png');
}

.lb-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-image: url('close.png');
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}
