/* Splash screen shown while the .NET runtime downloads and initializes. */
.avalonia-splash {
    position: absolute;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    pointer-events: none;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

@media (prefers-color-scheme: light) {
    .avalonia-splash {
        background: white;
        color: #1b2a4e;
    }
}

@media (prefers-color-scheme: dark) {
    .avalonia-splash {
        background: #1b2a4e;
        color: white;
    }
}

.avalonia-splash h2 {
    font-weight: 400;
    font-size: 1.5rem;
}

.avalonia-splash.splash-close {
    transition: opacity 200ms, display 200ms;
    display: none;
    opacity: 0;
}
