/* Apply to whole page */
::-webkit-scrollbar {
  width: 6px; /* thinner scrollbar */
}

::-webkit-scrollbar-track {
  background: #000000; /* black track */
}

::-webkit-scrollbar-thumb {
  background: #70e897; /* teal color */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #70e897; /* lighter teal on hover */
}
body { -webkit-user-select:none; user-select:none; }
img { -webkit-user-drag:none; }
input, textarea, [contenteditable="true"], [data-allow-copy], [data-allow-copy] * { -webkit-user-select:text; user-select:text; }
