/* Loader Styles */
#loading {
    background-color: #fff;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 999999999;
    top: 0;
    left: 0;
}

#loading-center {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#loading-center-absolute {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#loader-image {
    width: 278px;
    /* Adjust size as needed */
    height: 250px;
    /* Adjust size as needed */
    animation: loader-zoom 1s infinite ease-in-out;
    /* Add animation */
}

/* Keyframes for zoom-in animation */
@keyframes loader-zoom {
    0% {
        transform: scale(1); /* Initial size */
    }
    50% {
        transform: scale(1.2); /* Zoom in slightly */
    }
    100% {
        transform: scale(1); /* Back to original size */
    }
}
