How To Keep Responsive CSS From Hiding Elements of the Stats Table

By default, most Bright templates will progressively "hide" various fields in the registration status table as the viewport narrows.

You can force any column to appear in all cases with

.stats-complete {
  visibility: visible !important;
}

This will keep the completion column visible in all cases.