.custom-swiper-btn {
  width: 36px;
  height: 36px;
  background-color: #f5f5f5;
  border-radius: 9999px; /* rounded-full */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px #eee;
  transition: background-color 0.3s ease;
  z-index: 10;
}

.custom-swiper-btn::after {
  font-size: 14px;
  color: #000;
}

/* Optional hover effect */
.custom-swiper-btn:hover {
  background-color: #e0e0e0;
}