.carousel-container {
  text-align: center;
  max-width: 600px;
  margin: auto;
}

.carousel img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.thumbnails {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  gap: 10px;
}

.thumbnail {
  width: 80px;
  height: 50px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 5px;
  transition: border-color 0.3s ease;
}

.thumbnail:hover {
  border-color: #007BFF;
}
