.wider-container {
  margin-left: auto;
  margin-right: auto;
  width: 95%;
}


/* Task Number articles. */
/* css-tricks (https://css-tricks.com/almanac/properties/t/table-layout/):
When table-layout: fixed is applied... the browser uses any defined widths from
the table's first row to define column widths. */
.all-datacollections-table table {
  table-layout: fixed;
}
.all-datacollections-table table th, td {
  word-wrap: break-word;
}
/* Add to Workspace */
.all-datacollections-table table tr th:nth-child(2) {
  width: 140px;
}
/* Files */
.all-datacollections-table table tr th:nth-child(4) {
  width: 100px;
}
/* Descriptive Data */
.all-datacollections-table table tr th:nth-child(5) {
  width: 100px;
}


/* Generic fixed tables. */
.fixed-table table {
  table-layout: fixed;
}
.fixed-table table th, td {
  word-wrap: break-word;
}
