html,
body {
  scrollbar-gutter: stable;
}

body,
#root {
  height: 100vh;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.h-container {
  height: 100%;
}

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

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

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.16)
}

.not-hover:hover {
  cursor: none;
  background-color: transparent;
}