/* Target tables with the class .narrow-table */
.narrow-table {
  max-width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border: 1px solid var(--md-default-fg-color--lightest);
}

/* Headers: left-aligned, 8px vertical + 16px horizontal padding */
.narrow-table th {
  text-align: left;
  padding: 8px 16px;
  white-space: nowrap;
  border: 1px solid var(--md-default-fg-color--lightest);
}

/* Cells: center-aligned, same padding */
.narrow-table td {
  text-align: center;
  padding: 8px;
  white-space: nowrap;
  border: 1px solid var(--md-default-fg-color--lightest);
}