/* SocialView · Custom Scrollbars
   Schlanke dunkle Scrollbars mit Cyan-Hover-Akzent.
   Wird von Public-Pages eingebunden; das Admin-Panel hat denselben Style inline. */

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.14) transparent;
}
*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
*::-webkit-scrollbar-track {
  background: transparent;
}
*::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: background-color 0.15s;
}
*::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 230, 200, 0.45);
  background-clip: padding-box;
}
*::-webkit-scrollbar-thumb:active {
  background-color: rgba(0, 230, 200, 0.7);
  background-clip: padding-box;
}
*::-webkit-scrollbar-corner {
  background: transparent;
}
