/**
 * Agrico-M — responsive product list tables (admin list pages).
 * Admin layout uses admin.css (TailAdmin); do not rely on Tailwind breakpoints in PHP thClass/tdClass.
 * Hide .agrico-table-desktop-only columns below 768px only; wider viewports use normal table-cell.
 *
 * @see docs/guides/ADMIN_RESPONSIVE_TABLES.md
 * @see .cursor/rules/admin-responsive-tables.mdc
 */
@media (max-width: 767.98px) {
  th.agrico-table-desktop-only,
  td.agrico-table-desktop-only {
    display: none !important;
  }
}
