/* Shared Sensorem theme tokens (map + webform + hub) */
:root {
  --brand-blue: #0090D4;
  --brand-orange: #F47321;
  --brand-dark: #424444;
  --brand-grey: #EBEBEB;

  --bg: #eef1f4;
  --panel: rgba(255, 255, 255, 0.97);
  --elevated: #ffffff;

  --border: #d0d7de;
  --border-subtle: #e8ecef;

  --text: #424444;
  --text-muted: #6b7280;

  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 4px 24px rgba(66, 68, 68, 0.12);
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

html, body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
}

code, pre, kbd, samp {
  font-family: var(--mono);
}

/* Focus treatment shared across pages */
:focus-visible {
  outline: 3px solid rgba(0, 144, 212, 0.2);
  outline-offset: 2px;
}

