.img-h-120 {
    width: 100%;
    height: 120px;
    object-fit: fill;
}

.img-h-175 {
    width: 100%;
    height: 175px;
    object-fit: fill;
}

.img-h-300 {
    width: 100%;
    height: 300px;
    object-fit: fill;
}

.img-h-350 {
    width: 100%;
    height: 350px;
    object-fit: fill;
}

.swiper {
    width: 100%;
    height: 175px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 175px;
    object-fit: cover;
}

@media (max-width: 760px) {
    .swiper-button-next {
        right: 20px;
        transform: rotate(90deg);
    }

    .swiper-button-prev {
        left: 20px;
        transform: rotate(90deg);
    }
}

.table-sticky-header {
    position: sticky;
    top: 0;
    background-color: #f8f9fa;
    z-index: 1;
}

.scroll-mh-200 {
    max-height: 200px;
    overflow-y: auto;
}

.scroll-mh-300 {
    max-height: 300px;
    overflow-y: auto;
}

.scroll-mh-400 {
    max-height: 400px;
    overflow-y: auto;
}

.scroll-mh-500 {
    max-height: 500px;
    overflow-y: auto;
}

.scroll-mh-600 {
    max-height: 600px;
    overflow-y: auto;
}

.scroll-mh-700 {
    max-height: 700px;
    overflow-y: auto;
}

.scroll-mh-800 {
    max-height: 800px;
    overflow-y: auto;
}

:fullscreen {
    background-color: #000;
    /* Mengatur latar belakang menjadi hitam */
    color: #fff;
}

.image-container {
    /* Membuat kontainer sebagai referensi posisi relatif */
    position: relative;
    width: auto;
    /* Atur lebar sesuai kebutuhan */
    height: 300px;
    /* Atur tinggi sesuai kebutuhan */
}

.image-full {
    /* Pastikan gambar mengisi seluruh kontainer */
    width: 100%;
    height: 100%;
    display: block;
}

.icon-overlay {
    /* Mengatur posisi ikon agar berada di atas kanan gambar */
    position: absolute;
    right: -25px;
    top: 25px;
    transform: translate(-50%, -50%);

    /* Sembunyikan ikon secara default */
    opacity: 0;

    /* Atur transisi untuk efek yang lebih halus */
    transition: opacity 0.5s ease;
}

.image-container:hover .icon-overlay {
    /* Tampilkan ikon saat kursor diarahkan ke kontainer */
    opacity: 0.8;
}

.image-container:hover .image-full {
    opacity: 0.5;
}

.icon-50 {
    /* Atur ukuran ikon */
    width: 30px;
    height: 30px;
}

.blink {
    animation: blinker 1s linear infinite;
    font-weight: bold;
    color: red;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.bg-image-full {
    position: fixed;
    /* Or absolute, depending on desired positioning behavior */
    top: 0;
    left: 0;
    width: 100vw;
    /* Full viewport width */
    height: 100vh;
    /* Full viewport height */
    background-image: url('../images/al-mujaddid.png');
    /* Replace with your image path */
    background-size: cover;
    /* Ensures the image covers the entire area, potentially cropping */
    background-position: center;
    /* Centers the background image */
    /*opacity: 1.0;*/
    filter: brightness(20%);
    /* Sets the opacity of the entire div, including the background image */
    z-index: -1;
    /* Places the div behind other content */
}

.container-clock {
    display: flex;
    flex-direction: row;
    /* Default: tata letak baris (kolom bersebelahan) */
    /* Jarak antar kolom */
    flex-wrap: wrap;
    /* Memungkinkan item untuk wrap jika diperlukan */
}

.col-clock {
    padding: 15px;
}

.col-w-40 {
    width: 40%;
}

.col-w-60 {
    width: 60%;
}

@media (max-width: 992px) {
    .container-clock {
        flex-direction: column;
        /* Mengubah tata letak menjadi kolom (baris bertumpuk) */
        gap: 10px;
        /* Menyesuaikan jarak antar baris */
    }

    .col-w-40,
    .col-w-60 {
        width: 100%;
        /* Setiap kolom mengambil lebar penuh layar */
    }
}