/* Full-screen splash */
body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: "Arial", sans-serif;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.splash-container {
    text-align: center;
    color: white;
}

.logo {
    width: 350px;
    height: auto;
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease-in-out;
}

.app-name {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
    animation: fadeIn 2s ease-in-out;
}

/* Simple loader animation */
.loader {
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top: 5px solid white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

/* Animations */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
