@supports (-webkit-appearance: none) {
  *::-webkit-scrollbar-track {
    background: transparent;
  }

  *::-webkit-scrollbar {
    width: 8px;
    background: transparent;
  }

  *::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
  }

  *::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.4);
  }

  [data-theme-mode='dark'] *::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.25);
  }

  [data-theme-mode='dark'] *::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.35);
  }

  *::-webkit-scrollbar-button {
    display: none;
  }
}

@supports (-moz-appearance: none) {
  * {
    scrollbar-width: thin;
  }
}
