/* BPO Sales POC — Invene dark theme. Variables and tokens lifted from
   sales_manager/static/styles.css; layout tailored for org cards. */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --header-bg: #080331;
  --header-text: #fff;
  --header-border: #080331;
  --accent: #1169f7;
  --accent-fg: #fff;
  --accent-soft: rgba(17,105,247,0.15);
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --page-bg: #15151e;
  --text-primary: #e4e4e7;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --card-bg: #1e1e2a;
  --card-bg-elevated: #232333;
  --card-border: rgba(255,255,255,0.08);
  --row-border: rgba(255,255,255,0.06);
  --bar-track: #2a2a3a;
  --btn-bg: #2a2a3a;
  --btn-hover: #353545;
  --good: #4ade80;
  --warn: #f59e0b;
  --bad: #ef4444;

  /* ICP badge colors */
  --icp-hs: #60a5fa;     /* blue */
  --icp-payer: #34d399;  /* teal */
  --icp-derm: #f472b6;   /* pink */

  /* Source chip colors */
  --src-pdl: #60a5fa;
  --src-web: #c084fc;
  --src-news: #fbbf24;
  --src-linkedin: #38bdf8;
  --src-careers: #2dd4bf;
  --src-vendor: #a78bfa;
  --src-rfp: #4ade80;
  --src-default: #a1a1aa;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&family=Open+Sans:wght@400;500;600&display=swap');

body {
  font-family: var(--font-body);
  background: var(--page-bg);
  color: var(--text-primary);
  line-height: 1.5;
  min-height: 100vh;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
