.image-preview {
  width: 500px;
  height: 200px;
  overflow: hidden;
  cursor: zoom-in;
  border: 1px solid #ccc;
}
.image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.3s ease;
}
.image-preview:hover img {
  transform: scale(1.05);
}
.lightbox {
  display: none; 
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #262626;
  overflow-y: auto; 
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.lightbox-content {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%; 
}
.close {
  position: fixed;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1010;
}
.image-card {
  width: 500px;
  margin: 20px auto;
  text-align: center;
  background-color: #262626;
  padding: 15px;
  border-radius: 8px;
}