/**
 * Add basic flex styling so that the cells evenly space themselves in the row.
 */
.example-table cdk-row, cdk-header-row, cdk-footer-row {
  display: flex;
}

.example-table cdk-cell, cdk-header-cell, cdk-footer-cell {
  flex: 1;
}
