/* BC-Action Series — Design Tokens (from Default/design/tokens.md)
   Forest Ink x White palette. Flat design: no shadows, no gradients. */
:root {
  /* Backgrounds */
  --bg-page: #FFFFFF;
  --bg-section: #F4F8F6;

  /* Brand (Forest Ink) — ALWAYS white text on green */
  --brand-primary: #0D6E56;
  --brand-primary-dark: #0B5D4B;
  --brand-primary-light: #E8F5F1;

  /* Text */
  --text-primary: #0D1F2D;   /* Ink Black */
  --text-secondary: #4A6070;

  /* Lines */
  --border: #D4DDE3;
  --border-input: #C0CDD4;

  /* Status */
  --success: #0D6E56;
  --warning: #8B6000;        /* amber, dark for contrast on white */
  --error: #C0392B;
  --status-neutral: #7A909F; /* gray-blue dot: 未接続 etc. */

  /* Table row highlights (green family only — never yellow/cream/amber) */
  --selection-bg: #82C7AC;   /* selected / user-clicked row */
  --flagged-bg: #BFE4D6;     /* attention / flagged row (lighter than selection) */

  /* Window chrome glyphs */
  --chrome-glyph: #333333;

  /* Process segment colors (categorical — independent of brand) */
  --seg-parts:  #8FA0B2;  /* 部品セット */
  --seg-screw:  #54CDCA;  /* ネジ締め */
  --seg-lens:   #A2C96D;  /* レンズ取付 */
  --seg-axis:   #A67EC3;  /* 光軸調整 */
  --seg-check:  #E37F5E;  /* 検査 */
  --seg-pack:   #BEA474;  /* 梱包 */

  /* Typography */
  --font-ui: "Noto Sans JP", "Yu Gothic UI", sans-serif;
  --font-mono: "Roboto Mono", "Consolas", monospace;

  /* Radius */
  --radius: 2px;
  --radius-card: 4px;

  /* Layout */
  --topbar-h: 48px;
}
