/* Clean White Table with Blue Borders + Blue Header */
.accordion-content table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 15px;
  background: #fff; /* all boxes white */
  border: 2px solid #137dc0; /* outer border same as header color */
}

.accordion-content th,
.accordion-content td {
  border: 1px solid #137dc0; /* blue cell borders */
  padding: 10px;
  text-align: left;
  background: #fff; /* white cells */
}

.accordion-content th {
  background: #137dc0; /* dark blue header */
  color: #fff; /* white text */
  font-weight: bold;
}
