/* Full screen layout */
.swiper-container {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  height: 60vh;
}

/* Centered slide with custom active style */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  transition: all 0.3s ease;
  opacity: 0.7;
  border-radius: 12px;
  transform: scale(0.9);
}

/* Active slide style */
.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.swiper-slide img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  border-radius: 12px;
}

/* Navigation arrows */
.swiper-button-next,
.swiper-button-prev {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  color: #333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 24px;
  font-weight: bold;
}