.table-card {
  max-width: 828px;
  margin: 0 auto;
  box-sizing: border-box;
  @media (min-width: 768.5px) {
    padding: 0 20px;
  }
}

.clinical-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

/* Base cell styling */
.clinical-table th,
.clinical-table td {
  border: 1px solid #7a2c91;
  text-align: left;
  vertical-align: top;
  letter-spacing: -0.31px;
}

/* Section header rows */
.section-header th {
  background-color: #661C78; /* purple */
  color: #ffffff;
  font-family: 'Roboto Condensed';
  padding: 8px;
}

.clinical-table td {
  padding: 8px;
  @media (min-width: 768.5px) {
    padding: 8px 16px;
  }
}

/* Highlight second column */
.col-highlight {
  background-color: #F4E8F7
}

/* Default body cells */
.clinical-table tr td:nth-child(odd) {
  background-color: #ffffff;
}

.clinical-table tr td:first-child {
  font-weight: 700;
}
