/* GCS Custom Scrollbar Theme */

/* Webkit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: #b87333;
  border-radius: 6px;
  border: 2px solid #0a0a0a;
}

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

::-webkit-scrollbar-button {
  background: #3f51b5;
  height: 12px;
}

::-webkit-scrollbar-button:hover {
  background: #5a6abf;
}

::-webkit-scrollbar-corner {
  background: #4a6741;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #b87333 #0a0a0a;
}
