/* Various styles for the QC Viewer tool */

/* The chart containing the daily data */
#qc_data_chart {
 display: block;
 width: 960px;
 height: 480px;
}

/* A table summarizing QC scores on the selected date */
.summary_table_title {
 display: block;
 font-size: 18px;
 font-weight: bold;
}
.summary_table {
 display: table;
 margin: 10px 0px 20px 0px;
 font-size: 16px;
}
 .summary_table_row {
  display: table-row;
 }
  .summary_table_header {
   display: table-cell;
   padding: 6px 10px;
   text-align: center;
   background-color: #666666;
   color: #FFFFFF;
   font-weight: bold;
  }
  .summary_table_cell_left {
   display: table-cell;
   padding: 6px 10px;
   text-align: left;
  }
  .summary_table_cell_center {
   display: table-cell;
   padding: 6px 10px;
   text-align: center;
  }