/* Fresh minimal reset for /app. */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}


body {
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  font-weight: var(--fw-normal);
  line-height: var(--lh-base);
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6, p, figure {
  margin: 0;
}

button,
input,
select {
  font: inherit;
  color: inherit;
  margin: 0;
}

textarea {
  /* border-radius: var(--r-lg) !important; */
    font: inherit;
  color: inherit;
  margin: 0;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  color: inherit;
}

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

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

svg {
  display: block;
}

img {
  max-width: 100%;
  display: block;
}

:focus-visible {
  outline: none;
  /* box-shadow: var(--ring); */
}

::selection {
  background: var(--c-accent-soft);
}
