/* Minimal host chrome for the test page. The widget renders entirely inside its
   own shadow DOM, so it does not depend on any of this. */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100vh;
  background-color: #1b2b4b;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.widget-host {
  min-height: 100vh;
  display: flex;
  justify-content: center;
}
