/*
 * Base reset — the only hand-written CSS in the app. Everything else is typed Kotlin:
 * inline `css {}` for per-element styles, `styleSheet {}` for shared/selector rules.
 * (This file replaced the compiled Tailwind output; the few utilities the app used
 * are now typed css{} at their call sites.)
 */

*, ::before, ::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
}

body, h1, h2, h3, h4, p, ul, ol, blockquote, pre {
  margin: 0;
}

h1, h2, h3, h4 {
  font-size: inherit;
  font-weight: inherit;
}

ul, ol {
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: inherit;
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  background-color: transparent;
  background-image: none;
}

img, svg, canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

code, pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
