/* ── Table sort & filter ──────────────────────────────────────────────────── */

#preview th.sortable-header {
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

#preview th.sortable-header:hover {
  opacity: 0.82;
}

.sort-indicator {
  font-size: 0.78em;
  pointer-events: none;
}

#table-filter-popup {
  position: fixed;
  z-index: 9999;
  background: var(--bg);
  border-radius: 6px;
  box-shadow: 0 4px 16px var(--shadow);
  max-height: 240px;
  overflow-y: auto;
  min-width: 180px;
  max-width: 320px;
  display: none;
}
/* ── Table row autofill ghost text ──────────────────────────────────────── */
/* Injected inline into #editor-highlight; no positioning needed. */
.table-ghost-text {
  opacity: 0.38;
  pointer-events: none;
}

