.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 9998; /* Üst seviyeye getirildi */
}

/* Pop-up resim ayarları */
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  animation: fadeIn 0.5s ease;
  z-index: 9999; /* Her şeyin üstünde */
  cursor: pointer; /* Fare imleci el şeklinde */
}

.popup img {
  max-width: 80vw;
  max-height: 80vh;
  border-radius: 8px;
}

/* Fade animasyonu */
@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}