@media print {
  html,
  body {
    display: none;
  }
}

html,
body {
  background: #f0f2f4;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

*:not(input, textarea) {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

a:link,
a:visited {
  text-decoration: none;
  color: inherit;
}

#root {
  min-width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

*::-webkit-scrollbar {
  width: 5px;
}

*::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

*::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}

*::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}

*::-webkit-scrollbar-button {
  display: none;
}
