
/* Scrollbar claire (lightmode) - compatible macOS/Windows, Chrome, Firefox, Edge, Safari */

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2) !important;
  border-radius: var(--portfolios-border-radius-m);
  transition: background 0.2s;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(0,0,0,0.3) !important;
  cursor: pointer;
}
::-webkit-scrollbar-corner {
  background: transparent;
}

html, body, * {
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.2) transparent;
}

@media (hover: hover) {
  ::-webkit-scrollbar {
    background: transparent;
    cursor: pointer;
  }
}
