.jquery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;      /* Dikey ortalama */
  justify-content: center;  /* Yatay ortalama */
  z-index: 9999;
}
.modal-img:hover {
  cursor: pointer; /* El işaretini gösterir */
}
.jquery-lightbox.active {
  display: flex;
}

.jquery-lightbox .lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: white;
  font-size: 40px;
  cursor: pointer;
  user-select: none;
  padding: 20px;
  z-index: 10000;
}

.lightbox-close {
  top: 20px;
  right: 30px;
}

.lightbox-prev {
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.lightbox-next {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}