/* AltRepo global scrollbar.
   Linked site-wide so single-file tools and multi-file (css/js) apps stay consistent.
   Uses theme tokens with safe fallbacks for pages that don't define them. */

/* Chrome, Edge, Safari */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
	background: var(--border-strong, rgba(140, 150, 170, .35));
	border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover { background: var(--accent-cyan, #3ddbf0); }
::-webkit-scrollbar-corner { background: transparent; }

/* Firefox */
* {
	scrollbar-width: thin;
	scrollbar-color: var(--border-strong, rgba(140, 150, 170, .35)) transparent;
}
