/* Layout */
.md-grid {
  max-width: 1800px; /* default: 1220px */
}

:root {
  --md-sidebar-width: 14rem; /* default: 12.1rem — left nav sidebar */
  --md-sidebar-secondary-width: 14rem; /* default: 12.1rem — right TOC sidebar */
}

/* Theme color override — light scheme */
[data-md-color-scheme="default"] {
  --md-primary-fg-color: #7B52C8;
  --md-primary-fg-color--light: #9B72E8;
  --md-primary-fg-color--dark: #5B32A8;
  --md-primary-bg-color: #ffffff;
  --md-primary-bg-color--light: rgba(255, 255, 255, 0.7);
  --md-accent-fg-color: #9B72E8;
}

/* Tables */
.md-typeset table:not([class]) {
  border: none;
  border-radius: 0.2rem;
  overflow: hidden;
  display: table;
  width: 100%;
}

.md-typeset table:not([class]) thead tr {
  background-color: var(--md-primary-fg-color);
}

.md-typeset table:not([class]) thead tr th {
  color: #ffffff;
  font-weight: 600;
  border: none;
  padding: 0.6rem 1rem;
}

.md-typeset table:not([class]) tbody tr {
  background-color: var(--md-default-bg-color);
}

.md-typeset table:not([class]) tbody tr:nth-child(even) {
  background-color: var(--md-default-fg-color--lightest);
}

.md-typeset table:not([class]) tbody tr td {
  border: none;
  border-top: 0.05rem solid var(--md-default-fg-color--lighter);
  padding: 0.6rem 1rem;
}
