Pop-up scrollbar

I’m trying to make a scrollbar that only appears when it’s needed. so that he doesn’t get in the way at all other times. I got this when hovering over it. but the problem is that if the document is large, the thumb is small and it is difficult to point at it. It would be correct to make the thumb appear when pointing at the Track. But I can’t do it with CSS. The most logical option of those that I tried and it didn’t work is:


::-webkit-scrollbar-track:hover ~ ::-webkit-scrollbar-thumb {
  background-color: #917db4 !important;
}

Another option is almost working, but the thumb pops up when you hover over the whole panel and not just on the track:


*:hover ::-webkit-scrollbar-thumb {
  background-color: #917db4 !important;
}

please help to implement this idea