/* Custom CSS to allow table cell text wrapping */

.table-wrapper > table thead th,
.table-wrapper > table tbody tr td {
  white-space: normal !important;
  word-wrap: break-word;
  hyphens: auto;
}

/* Ensure table cells have reasonable width distribution */
.table-wrapper > table th,
.table-wrapper > table td {
  max-width: 60em;
  overflow-wrap: break-word;
}
