/* Global truncation helpers for table cells */
td.truncate {
  max-width: 320px;          /* default width */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Common width presets (use any one) */
td.truncate-160 { max-width: 160px; }
td.truncate-240 { max-width: 240px; }
td.truncate-320 { max-width: 320px; }
td.truncate-480 { max-width: 480px; }

/* When a cell is being edited inline, show full content */
td.cell-editing {
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  max-width: none !important;
}
