/* Container Styles */
.image-container {
  width: 80%; /* Adjust width as needed (e.g., 90% for 90%) */
  margin: 0 auto; /* Center the container horizontally */
}

/* Swiper Styles */
.image-swiper-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 100%; /* Maintain aspect ratio (1:1 for square) */
}

.image-swiper-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
}

.image-swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.image-swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: 0 auto;
  object-fit: contain; /* Adjust the object-fit property */
}

/* Swiper Navigation Button Styles */
.custom-button-prev,
.custom-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-color: #333;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.custom-button-prev {
  left: 10px;
}

.custom-button-next {
  right: 10px;
}
