/* Add these styles to your existing CSS file */
.carousel-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.carousel-image-container {
  width: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#carouselImage {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.carousel-button {
  font-size: 24px;
  padding: 10px 20px;
  margin: 0 10px;
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
}

.carousel-button:hover {
  background-color: #45a049;
}