/* Global document defaults and utilities that must load before component CSS. */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
}

button,
input,
select {
  font: inherit;
}

.hidden {
  display: none !important;
}
