/* ========================================================================
   Restart Dataplane tables

   Used by:
     docs/settings/status/how-tos/restart-dataplane.md

   The Before You Restart impact table.
   ======================================================================== */
/* Icon + label reference tables (e.g. the Restart Dataplane impact table): the
   label column shrinks to its content and never wraps, so an icon and its label
   stay on one line, while the description column absorbs the remaining width and
   wraps freely. The 1%/99% pair is the shrink-to-fit idiom - it needs auto table
   layout, so do NOT add table-layout: fixed here. */
.label-impact-table table {
  width: 100%;
}

.label-impact-table table th:nth-child(1),
.label-impact-table table td:nth-child(1) {
  width: 1%;
  white-space: nowrap;
}

.label-impact-table table th:nth-child(2),
.label-impact-table table td:nth-child(2) {
  width: 99%;
}
