/**
 * Scrollbar-only build for site-wide enqueue.
 * Uses design system variables when available; fallbacks otherwise.
 */
/**
 * Global Scrollbar Styles
 *
 * Site-wide scrollbar styling. Uses design system CSS variables.
 */
/* Firefox scrollbar styling */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-stroke, #ccc) var(--color-form, #fff);
}

/* WebKit scrollbar styling for all elements */
*::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

*::-webkit-scrollbar-track {
  background: var(--color-form, #fff);
  border: 1px solid var(--color-stroke, #e5e7eb);
}

*::-webkit-scrollbar-thumb {
  background-color: var(--color-stroke, #ccc);
  border-radius: 50%;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-stroke-hover, #b8bbbf);
}

*::-webkit-scrollbar-corner {
  background: var(--color-form, #fff);
}

/*# sourceMappingURL=scrollbar.css.map */
