/* app/reset.css */
*:where(:not(iframe, canvas, img, svg, video, [data-lexical-editor]):not(svg *)) {
  all: unset;
  display: revert;
}
*,
*:before,
*:after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
::-moz-selection {
  color: #000;
  background: var(--color-content-highlight-1);
}
::selection {
  color: #000;
  background: var(--color-content-highlight-1);
}
ol,
ul {
  list-style: none;
}
img {
  max-width: 100%;
}
table {
  border-collapse: collapse;
}
textarea {
  white-space: revert;
}
a,
button {
  cursor: pointer;
  user-select: none;
}
body,
html {
  background-color: var(--color-background-2);
}
svg {
  pointer-events: none;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--color-content-1);
  -webkit-box-shadow: 0 0 0 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
}
[hidden] {
  display: none;
}
