/* CRM list tables: hide the in-table horizontal scrollbar (it sits off-screen
   on tall lists) and show a fixed bar pinned to the visible main pane instead. */
.saga-hscroll {
  scrollbar-width: none;
}
.saga-hscroll::-webkit-scrollbar {
  display: none;
  height: 0;
}

.saga-sticky-hscroll {
  position: fixed;
  z-index: 25;
  height: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  background: rgba(244, 244, 244, 0.96);
  border-top: 1px solid #dcdcdc;
  box-shadow: 0 -6px 16px rgba(0, 0, 0, 0.06);
}
html.dark .saga-sticky-hscroll {
  background: rgba(8, 8, 8, 0.92);
  border-top-color: #3c3c3c;
  box-shadow: 0 -6px 16px rgba(0, 0, 0, 0.35);
}
.saga-sticky-hscroll__spacer {
  height: 1px;
  pointer-events: none;
}
.saga-sticky-hscroll[hidden] {
  display: none !important;
}

.saga-col-created {
  white-space: nowrap;
  min-width: 8.75rem;
}
