.swiper-pagination-bullet-active {
    background-color: white;
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: white !important; /* Đổi màu */
    font-size: 24px !important;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5); /* Nền mờ */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Thay đổi vị trí mũi tên */
.swiper-button-next {
    right: 10px !important;
}
.swiper-button-prev {
    left: 10px !important;
}

.swiper-button-next,
.swiper-button-prev {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: rgba(255, 255, 255, 0); */
}

/* Hiệu ứng hover */
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Thay đổi vị trí mũi tên */
.swiper-button-next {
    right: 10px !important;
}
.swiper-button-prev {
    left: 10px !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 15px;
    font-weight: bolder;
}

/* Swiper custom bullet business */
.swiper-pagination-business{
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-pagination-business .swiper-pagination-bullet {
      width: 10px;
      height: 10px;
      text-align: center;
      line-height: 20px;
      font-size: 12px;
      color: #000;
      opacity: 1;
      background: rgba(0, 0, 0, 0.2);
       transition: all 0.3s ease;
    }

.swiper-pagination-business .swiper-pagination-bullet-active {
      color: #fff;
      background: #007aff;
      width: 14px;
      height: 14px;
    }

