/* Table scroll hint: centered between page title and table in content area */
.table-scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  margin: 0 auto 1rem;
  padding: 8px 16px;
  background: rgba(var(--dark), 0.85);
  color: rgba(var(--white), 1);
  border-radius: 24px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  opacity: 1;
  animation: table-scroll-hint-in 0.4s ease forwards;
}

.table-scroll-hint i {
  font-size: 16px;
  opacity: 0.9;
  animation: table-scroll-hint-bounce 1.2s ease-in-out infinite;
}

@keyframes table-scroll-hint-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes table-scroll-hint-bounce {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-3px);
  }
  75% {
    transform: translateX(3px);
  }
}
