/* Global reset for Vite + React shell */
html, body, #root {
  height: 100%;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0; /* removes default 8px margin that caused white border */
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: transparent;
}

/* Make the React shell transparent so the legacy page defines its own bg */
#root {
  background: transparent;
}
