/* Style the button container itself */
.swiper-button-prev,
.swiper-button-next {
  background-color: #2272b6; /* Button background color */
  color: white; /* Button icon color */
  border-radius: 50%; /* Fully rounded button */
  width: 40px; /* Adjust button width */
  height: 40px; /* Adjust button height */
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-button-prev {
  left: 5px;
}
.swiper-button-next {
  right: 5px;
}
/* Reduce the size of the arrow */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 14px; /* Adjust the size of the arrow */
  color: white; /* Arrow color */
}
