/*
 * Deletion-dialog styling — mirrors m7-content-app's deletion.module.css. The DS `Dialog.Footer`
 * only pads (it does NOT lay out its children), so footer buttons need a flex wrapper; and the
 * danger dialog wants a styled description line under the title. Colors use DS gray tokens.
 */

._footer_3ds73_7 {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
}

._description_3ds73_15 {
  padding: 28px 20px 9px;
  font-size: 14px;
  line-height: 22px;
  color: var(--mgnl-color-gray-70, #564f60);
}

/*
 * The simple DS `TanstackTable` renders `.mgnl-table` WITHOUT its `--full-width` modifier, so it
 * shrinks to content and won't span the dialog when rows are short. Force it full-width from the
 * wrapper. Unlayered → wins over the DS's `@layer components` base rule.
 */
._tableWrap_3ds73_27 {
  width: 100%;
}
._tableWrap_3ds73_27 .mgnl-table {
  width: 100%;
}
