/* Base font — tighten up from Material's default */
.md-typeset {
  font-size: .7rem;
  line-height: 1.5;
}

/* Table wrapper — force full width */
.md-typeset__table {
  display: block !important;
  width: 100%;
  padding: 0 !important;
}

/* Tables — match body font, clean styling */
.md-typeset table:not([class]) {
  width: 100% !important;
  table-layout: auto;
  border-collapse: collapse;
  border: 1px solid var(--md-typeset-table-color);
  border-radius: 4px;
  overflow: hidden;
  font-size: .7rem;
  display: table !important;
}

.md-typeset table:not([class]) th {
  min-width: 0;
  padding: 0.5em 0.75em;
  background-color: var(--md-primary-fg-color);
  color: var(--md-primary-bg-color);
  font-weight: 600;
  text-align: left;
  border: none;
}

.md-typeset table:not([class]) td {
  padding: 0.4em 0.75em;
  border-bottom: 1px solid var(--md-typeset-table-color);
}

.md-typeset table:not([class]) tbody tr:last-child td {
  border-bottom: none;
}

.md-typeset table:not([class]) tbody tr:hover {
  background-color: var(--md-accent-fg-color--transparent);
}

/* Hide footer attribution */
.md-footer-meta {
  display: none;
}
