/* Image Loading Screen Styles */
#image-loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff; /* white background */
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease-out;
}

#image-loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    animation: logoAnimate 2s ease-in-out infinite;
}

.loading-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@keyframes logoAnimate {
    0% {
        transform: scale(0.9);
        filter: grayscale(100%);
    }
    50% {
        transform: scale(1.1);
        filter: grayscale(0%);
    }
    100% {
        transform: scale(0.9);
        filter: grayscale(100%);
    }
}

