/* ========================================================================
   Delete a Team effects table

   Used by:
     docs/settings/access/teams/how-tos/delete-team.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.
   ======================================================================== */
.delete-team-effects-table table {
  width: 100%;
}

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

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

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