html, body {
  margin: 0px;
  padding: 0px;
  height: 100%;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #e8e8e8;

  font-family: var(--tw-font-family);
  font-size: 13px;
  font-weight: 300;
  overflow: hidden;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 10px;
  /*border-radius: 8px;*/
}

*::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  /*-webkit-border-radius: 10px;*/
  /*border-radius: 10px;*/
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  /*border-radius: 8px;*/
}

*::-webkit-scrollbar-thumb {
  /*-webkit-border-radius: 10px;*/
  border-radius: 10px;
  background: #959595;
  /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);*/
}

* {
  scrollbar-width: thin;
  scrollbar-color: #959595;
}

