/* Grexter UI overrides for Documenso, served same-origin so CSP
   (style-src-elem 'self') allows it. Injected as <link> by nginx sub_filter. */

/* Un-hide the horizontal scrollbar on the multi-document tab strip.
   Documenso hides it via .scrollbar-hidden { scrollbar-width:none } +
   .scrollbar-hidden::-webkit-scrollbar { display:none }. Scoped to horizontal
   scrollers (overflow-x-auto) so vertical hidden-scroll areas stay untouched. */
.scrollbar-hidden.overflow-x-auto {
  scrollbar-width: thin !important;
}
.scrollbar-hidden.overflow-x-auto::-webkit-scrollbar {
  display: block !important;
  -webkit-appearance: auto !important;
  height: 10px !important;
}
.scrollbar-hidden.overflow-x-auto::-webkit-scrollbar-thumb {
  background: rgba(100, 116, 139, 0.6) !important;
  border-radius: 5px !important;
}
.scrollbar-hidden.overflow-x-auto::-webkit-scrollbar-track {
  background: rgba(148, 163, 184, 0.15) !important;
}
