html, body {
  height: 100%;
  min-height: 100dvh;
  color-scheme: dark;
  overflow: hidden;
}

body {
  margin: 0;
  padding: 0;
  background: #0F172A;
  color: #F1F5F9;
}

/* Hide scrollbars everywhere; touch/wheel scrolling still works */
* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

*::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

@media (prefers-color-scheme: dark) {
  body {
    background: #0F172A;
  }
}

.root {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100dvh;
  overflow: hidden;
}

@media print {
  * {
    height: auto !important;
    overflow: visible !important;
  }
}