/*
 * Brand overrides layered on top of the stock Radzen "Software" theme.
 *
 * Light mode needs NO overrides: the app's brand palette (#598087 teal, etc.)
 * is identical to Radzen's stock Software theme, so the package CSS is used as-is.
 *
 * Dark mode uses a custom accent (orange primary, blue secondary) that differs
 * from stock Software-dark. Those are the only values re-applied here, scoped to
 * .dark-mode so they activate only when the dark theme is loaded. Everything else
 * (layout, structure, neutrals) comes from the version-matched package CSS.
 */

html.dark-mode {
    --rz-primary: #ff6d41;
    --rz-primary-light: #ff7f58;
    --rz-primary-lighter: rgba(255, 109, 65, 0.16);
    --rz-primary-dark: #eb643c;
    --rz-primary-darker: #bf5231;

    --rz-secondary: #3b9fd5;
    --rz-secondary-light: #53abda;
    --rz-secondary-lighter: rgba(59, 159, 213, 0.2);
    --rz-secondary-dark: #3692c4;
    --rz-secondary-darker: #2c77a0;
}
