/*
 * Sidebar navigation is deliberately motionless on touch devices.
 * The active-page colour remains, but pressing a menu item must never scale,
 * shake, flash, or animate the sidebar.
 */
.sancay-vault-theme .vault-navlink,
.sancay-vault-theme .vault-navlink:hover,
.sancay-vault-theme .vault-navlink:active,
.sancay-vault-theme .vault-navlink:focus,
.sancay-vault-theme .vault-navlink:focus-visible {
  -webkit-tap-highlight-color: transparent !important;
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
  transform: none !important;
  transition: none !important;
  animation: none !important;
  filter: none !important;
}

/* Keep the selected menu item visually stable even while it is pressed. */
.sancay-vault-theme .vault-navlink:not(.vault-navlink-active):active {
  background-color: transparent !important;
  color: var(--vault-text-muted) !important;
}

.sancay-vault-theme .vault-navlink.vault-navlink-active:active {
  background-color: var(--vault-accent-glow) !important;
  color: var(--vault-accent) !important;
}