/* Target all scrollbars */
body {
  overflow: auto;               /* Scrollbar only appears when needed */
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}

/* Webkit Scrollbars */
::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

::-webkit-scrollbar-track {
  background: #e5e5e5;
}

::-webkit-scrollbar-thumb {
  background: #05361A;
  border-radius: 5px;
  transition: 0.5s;
}

::-webkit-scrollbar-thumb:hover {
  background: #AAD13F;
}

