/* NBC Practice Manager — design tokens.
   Source of truth for the Django CSS handoff; mirrored on the /ds/ style-guide page. */
:root {
  /* brand */
  --nbc-navy:     #0E4194;
  --nbc-blue:     #008CD3;
  --nbc-action:   #0E76BD;
  --nbc-action-hover: #0763A4;
  --nbc-blue-100: #9FD3F0;
  --nbc-yellow:   #FFD400;

  /* surfaces & ink */
  --bg:        #EEF2F7;
  --surface:   #FFFFFF;
  --surface-2: #F7F9FC;   /* table head, subtle fills */
  --surface-3: #F2F5F9;   /* chips, inputs */
  --border:    #DDE4ED;
  --border-2:  #EDF1F6;   /* hairline row dividers */
  --ink:       #16243B;
  --ink-2:     #3A4A63;
  --ink-3:     #51607A;   /* dim */
  --ink-4:     #8593A8;   /* muted labels */
  --ink-5:     #9AA6B8;
  --ink-6:     #B6C0CE;

  /* urgency */
  --urg-asap:    #D6453D;
  --urg-soon:    #E8920C;
  --urg-routine: #2E9E7B;

  /* urgency badge fills / text */
  --asap-bg: #FCEBE9; --asap-fg: #B23227;
  --soon-bg: #FBF0D9; --soon-fg: #8A5A00;
  --rout-bg: #E6F3EC; --rout-fg: #1F7A56;

  /* status pills */
  --ok-bg:   #E6F3EC; --ok-fg:   #1F7A56;
  --run-bg:  #E7F1FA; --run-fg:  #0E76BD;
  --warn-bg: #FBF0D9; --warn-fg: #8A5A00;
  --err-bg:  #FCEBE9; --err-fg:  #B23227;
  --pend-bg: #F2F5F9; --pend-fg: #8593A8;

  /* low-confidence flag */
  --flag-bg: #FBF0D9; --flag-fg: #A86A00;
  --alert-bg: #FCF6E7; --alert-border: #F0DEAE; --alert-fg: #7A5200; --alert-strong: #5E3F00;

  /* destructive button */
  --danger-fg: #B23227; --danger-border: #ECDAD8;
  --danger-bg-hover: #FCEBE9; --danger-border-hover: #E4B4AE;

  /* type */
  --font-sans: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  /* shape & shadow */
  --r-card: 11px;
  --r-ctl: 8px;
  --r-input: 7px;
  --shadow-card: 0 1px 3px rgba(16, 36, 59, .05);
  --shadow-bar:  0 -2px 10px rgba(16, 36, 59, .06);
}
