/* Design tokens -- the single definition of the Kids Patch palette for the
   admin and owner dashboards.

   These nine custom properties were previously copy-pasted, byte-identical,
   into three files: styles.css, admin.html and portal.html. Two of those
   copies now live here. styles.css keeps its own set for the public site,
   which does not load this file; reconciling that last copy means adding a
   <link> to every public page and all four generators, so it is deliberately
   left for its own change rather than folded into this one.

   Loaded before app-shell.css and before each page's inline <style>, so both
   can build on the tokens and either can override them. */
:root {
    --primary: #FF7A5C;
    --primary-hover: #E85F41;
    --secondary: #0F6E6E;
    --secondary-dark: #0A5252;
    --accent: #FFC857;
    --text-dark: #212B2B;
    --text-muted: #5C6B6B;
    --bg-page: #FAF9F6;
    --border: #DCE3E3;
}
