/* arrow slider */
.slick-arrow {
    z-index: 1; /* Pastikan berada di atas gambar */
    background-color: rgb(4 108 78 / var(--tw-bg-opacity, 1));
    border-radius: 50%; /* Membuat background tombol menjadi lingkaran */
    width: 20px; /* Lebar tombol */
    height: 20px; /* Tinggi tombol */
    display: flex;
    justify-content: center;
    align-items: center;
    /* Mengatur ukuran tombol agar ikonnya terpusat */
}

/* Menghilangkan perubahan warna saat dihover */
.slick-prev:hover,
.slick-next:hover {
    background-color: rgb(
        4 108 78 / var(--tw-bg-opacity, 1)
    ); /* Pastikan background tetap hijau */
}

/* Menghilangkan perubahan warna saat tombol aktif (klik) */
.slick-prev:active,
.slick-next:active {
    background-color: rgb(
        4 108 78 / var(--tw-bg-opacity, 1)
    ); /* Pastikan background tetap hijau */
}

/* Pastikan tombol aktif tidak berubah warna */
.slick-prev:focus,
.slick-next:focus {
    background-color: rgb(
        4 108 78 / var(--tw-bg-opacity, 1)
    ); /* Pastikan fokus tetap dengan warna hijau */
}
