/* Radzen Material 3 — corporate palette overrides */
:root {
    --rz-primary: #a50022;
    --rz-primary-dark: #7a0019;
    --rz-primary-light: #d4003a;
    --rz-secondary: #434549;
    --rz-surface: #f5f5f5;
}

body {
    font-family: Roboto, sans-serif;
}

*:focus-visible {
    outline-color: var(--rz-primary);
}

/* Validation messages */
.validation-message,
.rz-message {
    color: var(--rz-danger, #b71c1c);
    font-size: 0.875rem;
    line-height: 1.2;
    margin-top: 0.125rem;
}

/* App shell layout helper */
.app-shell {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

/* Blazor error bar */
.app-error-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 0.75rem 1rem;
    background: #b71c1c;
    color: #fff;
    font-family: Roboto, sans-serif;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.app-error-bar a {
    color: #fff;
    text-decoration: underline;
    cursor: pointer;
}
