/* Receiva — only styles not covered by MudBlazor live here.
   Page/layout/form styling is all MudBlazor components + theme. */

html, body {
    margin: 0;
    padding: 0;
    font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Pre-Blazor splash (shown before the WASM runtime boots) */
.splash {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    gap: 16px;
    background: linear-gradient(180deg, #042361, #041C55);
    color: #E7EFF6;
    font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.splash img {
    width: 160px;
    height: 160px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.splash strong {
    font-size: 1.4rem;
    letter-spacing: 0.04em;
}

.splash span {
    color: #AFC6DA;
    font-size: 0.85rem;
}

/* Blazor error banner */
#blazor-error-ui {
    background: #fee2e2;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1rem 0.6rem 1rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
