/* Appointment Swiper Styles */
.appointment-swiper-container {
  width: 100%;
  height: 100%;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.appointment-swiper-container .swiper-slide {
  text-align: center;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.appointment-swiper-img {
  object-fit: contain;
  max-height: 100%;
  border-radius: 8px;
}

/* Navigation Arrows */
.appointment-swiper-button-next,
.appointment-swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  transition: background-color 0.3s;
}

.appointment-swiper-button-next:hover,
.appointment-swiper-button-prev:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.appointment-swiper-button-next {
  right: 10px;
}

.appointment-swiper-button-prev {
  left: 10px;
}

.appointment-swiper-button-next:after,
.appointment-swiper-button-prev:after {
  font-family: 'swiper-icons';
  font-size: 18px;
  font-weight: bold;
}

.appointment-swiper-button-next:after {
  content: 'next';
}

.appointment-swiper-button-prev:after {
  content: 'prev';
}

/* Pagination */
.appointment-swiper-pagination {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
}

.appointment-swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 4px;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0.7;
  border-radius: 50%;
  transition: background-color 0.3s, opacity 0.3s;
}

.appointment-swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ed6242;
  opacity: 1;
}

/* Fade Effect */
.appointment-swiper-container .swiper-slide {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.appointment-swiper-container .swiper-slide-active {
  opacity: 1;
}

@media (max-width: 768px) {
  .appointment-swiper-container {
    height: 250px;
  }
  
  .appointment-swiper-button-next,
  .appointment-swiper-button-prev {
    width: 30px;
    height: 30px;
    margin-top: -15px;
  }
}