/*
 * ============================================================
 * RUNTIME BRAND THEME — assets/theme.css
 * ============================================================
 * This is the ONLY file that needs to change per client
 * after the application has been published.
 *
 * Drop this file into wwwroot/assets/theme.css and hard-refresh
 * to see the new brand colours and font take effect immediately
 * — no rebuild required.
 * ============================================================
 */
:root {
    /* Primary brand colour — sidebar, toolbar, headings, links */
    --brand-primary:    #3D4F5C;
    --brand-primary-on: #FFFFFF;

    /* Accent colour — active nav, CTA buttons, highlights */
    --brand-accent:     #B5202C;
    --brand-accent-on:  #FFFFFF;

    /* Brand font — applied globally via styles.scss */
    --brand-font: 'Segoe UI', Arial, sans-serif;

    /* Auto-derived R,G,B triplets — Syncfusion reads its own tokens as bare RGB numbers. Regenerate via this tool, don't hand-edit. */
    --brand-primary-rgb:    61, 79, 92;
    --brand-primary-on-rgb: 255, 255, 255;
    --brand-accent-rgb:     181, 32, 44;
    --brand-accent-on-rgb:  255, 255, 255;
}
