/* ── MS Trade Agent — Global Styles ─────────────────────────── */
:root {
  --bg-root: #0b0f14;
  --bg-panel: #0d1117;
  --bg-card: rgba(255, 255, 255, 0.06);
  --bg-content: #0b0f14;

  --text-primary: #c9d1d9;
  --text-secondary: #8b949e;
  --text-tertiary: #484f58;
  --accent-blue: #3b82f6;

  --border-color: rgba(240, 246, 252, 0.06);

  --sidebar-width: 88px;

  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

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

html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-color: var(--bg-root);
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
