/* ========================================================================
   Delete an Entity Resolution Check effects table

   Used by:
     docs/data-quality-checks/entity-resolution/how-tos/delete-a-check.md

   The first column holds an icon plus a short label and must never wrap, so it
   takes the width of its longest entry. The Effect column keeps a floor so that
   on narrow screens the table scrolls sideways (the theme's table wrapper
   already handles the overflow) instead of squeezing the text into a sliver.
   ======================================================================== */
.entity-resolution-delete-effects-table table {
  width: 100%;
}

.entity-resolution-delete-effects-table table th,
.entity-resolution-delete-effects-table table td {
  vertical-align: top;
}

.entity-resolution-delete-effects-table table th:nth-child(1),
.entity-resolution-delete-effects-table table td:nth-child(1) {
  white-space: nowrap;
  padding-right: 1.5rem;
}

.entity-resolution-delete-effects-table table th:nth-child(2),
.entity-resolution-delete-effects-table table td:nth-child(2) {
  width: 100%;
  min-width: 28rem;
}
