/* CSA brand re-tint for Radzen Material theme.
   Loaded AFTER _content/Radzen.Blazor/css/material-base.css so these :root
   overrides win the cascade. Re-points the entire --rz-primary palette to
   CSA red (#C21E37) so dropdowns, buttons, focus rings, links etc. inherit
   brand colour without per-component overrides. */
:root {
    --rz-primary: #C21E37;
    --rz-primary-light: #d44a5e;
    --rz-primary-lighter: rgba(194, 30, 55, 0.12);
    --rz-primary-dark: #a31a2f;
    --rz-primary-darker: #8d1219;

    /* Text colour painted ON top of --rz-primary-lighter (e.g. selected
       dropdown item label). Keep it on-brand red rather than indigo. */
    --rz-on-primary-lighter: #C21E37;
}
