/* Container scroll */
.usa-table-container--scrollable {
  max-width: 100%;
  overflow-x: auto;
}

/* Table styling */
.usa-table {
  table-layout: fixed !important;   /* Make sure layout doesn't auto-expand */
  width: 100%;
  border-collapse: collapse;
}

/* Force cell text to wrap */
th, td {
  padding: 0.5rem;
  vertical-align: top;
  white-space: normal !important;       /* allow text to wrap */
  word-wrap: break-word !important;     /* legacy support */
  overflow-wrap: anywhere !important;   /* force wrapping anywhere */
  word-break: break-word !important;    /* break long words */
}

/* Column widths */
.col-program  { width: 15%; }
.col-purpose  { width: 40%; }
.col-readme   { width: 8%; }
.col-update   { width: 8%; }
.col-author   { width: 8%; }

