/* ========================================================================
   Flow Triggers tables

   Used by:
     docs/flows/flow/deep-dive/triggers.md
   ======================================================================== */
/* Trigger-types table - narrow name column, names wrap instead of stretching,
   centered icon column showing which triggers accept Filter Conditions.
   The table keeps a minimum width, so the theme's own table scroll
   container takes over on narrow viewports instead of squeezing columns. */
.trigger-types-table table {
  table-layout: fixed;
  width: 100%;
  min-width: 52rem;
}

.trigger-types-table table th:nth-child(1),
.trigger-types-table table td:nth-child(1) {
  width: 26%;
  min-width: 0;
  white-space: normal;
  overflow-wrap: break-word;
}

.trigger-types-table table th:nth-child(2),
.trigger-types-table table td:nth-child(2) {
  width: 56%;
}

.trigger-types-table table th:nth-child(3),
.trigger-types-table table td:nth-child(3) {
  width: 18%;
  min-width: 0;
  text-align: center;
  white-space: nowrap;
}
