html, body {
  overscroll-behavior: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis: none;
}

html.happy-app-zoomed {
  overflow: hidden;
}

html.happy-app-zoomed body {
  width: calc(100vw / var(--happy-app-zoom));
  height: calc(100vh / var(--happy-app-zoom));
  transform-origin: 0 0;
}

@supports (zoom: 1) {
  html.happy-app-zoomed body {
    zoom: var(--happy-app-zoom);
  }
}

@supports not (zoom: 1) {
  html.happy-app-zoomed body {
    transform: scale(var(--happy-app-zoom));
  }
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: none;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background: #96969666 padding-box padding-box;
  border: 2px solid #0000;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: #96969666 padding-box padding-box;
}

::-webkit-scrollbar-corner {
  background: none;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #96969666 transparent;
}
