/* Splash screen exibido enquanto o bundle WASM carrega */
.rz-app-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: var(--rz-base-background-color, #fff);
    flex-direction: column;
    gap: 1.5rem;
}

.logo-loading {
    width: 160px;
    animation: pulse 1.5s ease-in-out infinite;
}

.loading-text {
    color: var(--rz-text-tertiary-color, #888);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

/* Erro crítico do Blazor */
#blazor-error-ui {
    background: #ffcccc;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0,0,0,0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}
#blazor-error-ui .reload {
    color: #6200ea;
    cursor: pointer;
    font-weight: bold;
}
