/******************************************************************************
 *
 * DEFAULT TABLE STYLING
 *
 * Sets a light-blue color on table cells and a light-gray on table header.
 *
 *****************************************************************************/
table.table {
  margin: 3ex 0px;
}

table.table thead tr th, table.table thead tr td {
  color: #000000;
  background-color: #bbbbbb;
  padding: 2px 5px;
  border: 1px solid white;
}

table.table thead tr th {
  font-weight: bold;
}

table.table tbody tr td {
  padding: 2px 5px;
  border: 1px solid white;
  background-color: #dfeeff;
}

