* {
  box-sizing: border-box;
}

html,
body,
#app {
  height: 100%;
}

html {
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #111827;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

.module-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #ffffff;
}

html.dark .module-frame {
  background: #0f0f0f;
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(156, 163, 175, 0.75) transparent;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background: rgba(156, 163, 175, 0.75);
  border-radius: 999px;
}

*::-webkit-scrollbar-thumb:hover {
  background: rgba(107, 114, 128, 0.9);
}
