/* ========================================================================
   Flow Executions tables

   Used by:
     docs/flows/flow/deep-dive/executions.md
   ======================================================================== */
/* Execution-states table - the State column keeps its dot and name whole on
   one line; the table keeps a minimum width, so the theme's own table scroll
   container takes over on narrow viewports instead of squeezing columns. */
.execution-states-table table {
  table-layout: fixed;
  width: 100%;
  min-width: 40rem;
}

.execution-states-table table th:nth-child(1),
.execution-states-table table td:nth-child(1) {
  width: 22%;
  min-width: 0;
  white-space: nowrap;
}

.execution-states-table table th:nth-child(2),
.execution-states-table table td:nth-child(2) {
  width: 78%;
}
