/* Overlay popup yang menutupi seluruh halaman */
#loadingOverlay {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgb(255 255 255); /* Background semi-transparan */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    flex-direction: column-reverse;
}

/* GIF loading atau animasi */
#loadingOverlay img {
    width: 100px; /* Ukuran loading GIF */
}

img.showimg.lazy-img {
    max-width: 100%;
}