/* Küçük resmin stilini ayarlıyoruz */
/*
.thumbnail {
    width: 200px;
    cursor: pointer;
}

/* Büyütülmüş resmi içeren overlay'in stilini ayarlıyoruz */
/*
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.expandedImg {
    max-width: 90%;
    max-height: 90%;
}

/* Overlay'i tıklayarak kapatmak için stil */
/*
.overlay:active {
    display: none;
}




/* Küçük resimlerin stil ayarları */
.thumbnail {
  width: 250px;
  height: 250px;
  margin: 10px;
  cursor: pointer;
  transition: transform 0.3s;
}

.thumbnail:hover {
  transform: scale(1.05);
}

/* Overlay ve büyütülmüş resim */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.overlay img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
}
