/* Minimal global styles to ensure consistent typography */
:root {
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

html, body, #root {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: #f3f4f6;
  color: #111827;
}

