/* Style for loading screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it sits on top of everything else */
}

.loading-logo {
    max-width: 400px; /* Adjust this size as needed */
    max-height: 400px;
    animation: fadeInLogo 2s ease-in-out infinite;
}

@keyframes fadeInLogo {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
