/* robylab-ui — optional full-screen app-shell reset.
   Include this ONLY in full-viewport SPA hosts (e.g. the Robylab launcher)
   that fill the window and manage their own internal scrolling.
   Standalone tool pages that scroll normally should NOT include this. */

html, body, #root {
  height: 100%;
  width: 100%;
}

body {
  background: var(--s-bg-1);
  color: var(--s-fg-1);
  font-family: var(--s-font-ui);
  font-size: var(--s-t-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}
