/* AppSplash — full-viewport neutral splash shown while the OIDC session check runs
   (and on the login redirect / auth callback), instead of flashing the admin shell.
   Consumers add: <link href="_content/OutWit.Identity.Blazor/css/app-splash.css" rel="stylesheet" /> */

.ow-splash {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--md-sys-color-surface, #ffffff);
    color: var(--md-sys-color-on-surface, #1b1b1f);
}

.ow-splash-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    /* fade in slightly late so sub-300ms checks show a clean blank screen, not a logo blink */
    opacity: 0;
    animation: ow-splash-in 220ms ease-out 280ms forwards;
}

.ow-splash-logo {
    width: 56px;
    height: 56px;
}

.ow-splash-name {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.ow-splash-content {
    min-height: 24px;
    font-size: 13px;
    color: var(--md-sys-color-on-surface, #1b1b1f);
    opacity: 0.65;
    text-align: center;
}

@keyframes ow-splash-in {
    to { opacity: 1; }
}
