/* Perubahan gaya untuk gambar */
.banner-slide {
    max-width: 100%;
    height: auto;
    display: none;
}

.banner-slide.active {
    display: block;
    opacity: 1;
}

/* Gaya responsif untuk elemen banner-container */
.banner-container {
    max-width: 100%;
    overflow: hidden;
}

/* Gaya responsif untuk gambar dalam elemen banner-slider */
.banner-slider img {
    width: 100%;
    height: auto;
    padding-top: 1px;
}

/* Tombol Navigasi */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    padding: 20px;
    cursor: pointer;
    background-color: rgba(89, 86, 86, 0.36);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}
/* Tombol Pemberhentian */
.pause-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px 10px;
    cursor: pointer;
}

/* Gaya untuk carousel indicators */
.carousel-indicators {
    text-align: center;
    margin-top: 5px;
}

/* Gaya untuk setiap indicator */
.indicator {
    width: 35px;
    height: 4px;
    background-color: #bbb;
    display: inline-block;
    margin: 0 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Gaya untuk indicator aktif */
.indicator.active-indicator {
    background-color: #333;
}

/* Responsif: Mengubah gaya indicator untuk layar berukuran kecil */
@media screen and (max-width: 768px) {
    .indicator {
        width: 25px; /* Ubah lebar indicator untuk layar kecil */
        margin: 0 3px; /* Ubah margin untuk menyesuaikan lebar yang lebih kecil */
    }
}

/* Keyframes for banner slide */
@keyframes slide {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Add transition to the banner slide for smooth fade-in/out */
.banner-slide {
    transition: opacity 1s ease-in-out;
}

/* Animation class to apply the slide keyframes */
.active {
    animation: slide 4s ease-in-out;
}


