
.md-grid {
  max-width: 80rem; 
}

/* Table column width control for data register */
.data-register-table {
  width: 100%;
  table-layout: fixed;
}

.data-register-table th:nth-child(1), 
.data-register-table td:nth-child(1) { /* Name */
  
}

.data-register-table th:nth-child(2), 
.data-register-table td:nth-child(2) { /* User */
  min-width: 20px !important;  
}

.data-register-table th:nth-child(3), 
.data-register-table td:nth-child(3) { /* WB */
  min-width: 20px !important;
}

.data-register-table th:nth-child(4), 
.data-register-table td:nth-child(4) { /* RWSCD */
  min-width: 20px !important;
}

.data-register-table th:nth-child(5), 
.data-register-table td:nth-child(5) { /* WI */
  min-width: 20px !important;
}

.data-register-table th:nth-child(6), 
.data-register-table td:nth-child(6) { /* HKS */
  min-width: 70px !important;
}

.data-register-table th:nth-child(7), 
.data-register-table td:nth-child(7) { /* PP */
  min-width: 70px !important;
}

.data-register-table th:nth-child(8), 
.data-register-table td:nth-child(8) { /* RP */
  min-width: 20px !important;

}

.data-register-table th:nth-child(9), 
.data-register-table td:nth-child(9) { /* PAP */
  min-width: 20px !important;
}

.data-register-table th:nth-child(10), 
.data-register-table td:nth-child(10) { /* Contains */
  min-width: 20px !important;
}

.data-register-table th:nth-child(11), 
.data-register-table td:nth-child(11) { /* Description */
  width: auto;
}

/* Make text wrap properly in narrow columns */
.data-register-table td {
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}

/* Center align the narrow columns */
.data-register-table th:nth-child(2), 
.data-register-table td:nth-child(2),
.data-register-table th:nth-child(6), 
.data-register-table td:nth-child(6),
.data-register-table th:nth-child(7), 
.data-register-table td:nth-child(7),
.data-register-table th:nth-child(8), 
.data-register-table td:nth-child(8),
.data-register-table th:nth-child(9), 
.data-register-table td:nth-child(9) {
  text-align: center;
}