.gallery-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

#main-img {
  width: 120%;
  max-width: 1000px;
  border: 1px solid #ddd;
  padding: 5px;
  box-sizing: border-box;
}

.thumbnails {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thumbnails img {
  width: 80px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.2s;
}

.thumbnails img:hover {
  border-color: #007bff;
}
.image-counter {
  text-align: center;
  margin-top: 5px;
  font-size: 14px;
  color: #555;
}