*::-webkit-scrollbar {
    width: 10px !important;
    height: 0px !important;
  }

  *::-webkit-scrollbar-track {
    background: #0a0a0a;
    /* dark background track */
  }

  *::-webkit-scrollbar-thumb {
    background: #FF0000;
    /* theme red */
    border-radius: 999px;
    border: 2px solid #0a0a0a;
    /* creates padding effect */
  }

  *::-webkit-scrollbar-thumb:hover {
    background: #e60000;
  }

  /* Hide horizontal scrollbar for webkit browsers */
  *::-webkit-scrollbar-horizontal {
    display: none !important;
    height: 0 !important;
  }

    /* ── Scrollbar ── */
  /* * { -ms-overflow-style: -ms-autohiding-scrollbar; }
  *::-webkit-scrollbar { width: 10px; height: 0px; }
  *::-webkit-scrollbar-track { background: #0a0a0a; }
  *::-webkit-scrollbar-thumb { background: #FF0000; border-radius: 999px; border: 2px solid #0a0a0a; }
  *::-webkit-scrollbar-thumb:hover { background: #e60000; } */