/* Shared horizontal scroll strip: chevrons + drag-to-scroll viewport (see vault-horizontal-scroll.js) */

.vault-hscroll__chev {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.125rem;
  height: 2.125rem;
  padding: 0;
  border: none;
  border-radius: 0.25rem;
  background: transparent;
  /* Strong neutral — not brand primary */
  color: var(--vault-text, #334155);
  font-weight: 700;
  cursor: pointer;
  box-sizing: border-box;
}
@media (hover: hover) and (pointer: fine) {
  .vault-hscroll__chev:hover:not(:disabled) {
    background: transparent;
    color: var(--vault-text, #0f172a);
    opacity: 1;
  }
}
.vault-hscroll__chev:disabled {
  opacity: 0.35;
  cursor: default;
}
.vault-hscroll__chev svg {
  display: block;
  flex-shrink: 0;
  stroke-width: 2.5;
}

.vault-hscroll__viewport {
  min-width: 0;
  cursor: grab;
  touch-action: pan-x pinch-zoom;
  -webkit-user-select: none;
  user-select: none;
}
.vault-hscroll__viewport--grabbing {
  cursor: grabbing;
  user-select: none;
}

/* When JS sets noOverflowClass on root, hide chevrons (root is strip-specific, e.g. .vault-panel-project-nav-strip--no-overflow) */
