/* Wider content area for widescreen displays */
.md-grid {
  max-width: 1500px;
}

.md-main__inner {
  max-width: none;
}

.md-content {
  max-width: none;
}

/* Darker background for dark mode */
[data-md-color-scheme="slate"] {
  --md-default-bg-color: #0d1117;
  --md-default-fg-color: #e6edf3;
  --md-code-bg-color: #161b22;
  --md-code-fg-color: #e6edf3;
}

/* Darker code blocks */
[data-md-color-scheme="slate"] .highlight {
  background-color: #161b22 !important;
}

/* Enhanced headers in dark mode */
[data-md-color-scheme="slate"] .md-typeset h1 {
  color: #ffffff;
  font-weight: 700;
  border-bottom: 2px solid #ff6e42;
  padding-bottom: 0.3em;
  margin-top: 1.5em;
  font-size: 2em;
}

[data-md-color-scheme="slate"] .md-typeset h2 {
  color: #f0f6fc;
  font-weight: 700;
  border-bottom: 1px solid #30363d;
  padding-bottom: 0.3em;
  margin-top: 1.5em;
  font-size: 1.6em;
}

[data-md-color-scheme="slate"] .md-typeset h3 {
  color: #f0f6fc;
  font-weight: 600;
  margin-top: 1.3em;
  font-size: 1.3em;
}

[data-md-color-scheme="slate"] .md-typeset h4 {
  color: #8fb4d9;
  font-weight: 600;
  font-size: 1.1em;
  margin-top: 1em;
  margin-bottom: 0.5em;
  font-style: italic;
}

[data-md-color-scheme="slate"] .md-typeset h5 {
  color: #9ca9b8;
  font-weight: 500;
  font-size: 1em;
  margin-top: 0.8em;
}

[data-md-color-scheme="slate"] .md-typeset h6 {
  color: #9ca9b8;
  font-weight: 500;
  font-size: 0.9em;
  margin-top: 0.8em;
}

/* Light mode headers */
.md-typeset h1 {
  font-weight: 700;
  border-bottom: 2px solid #ff6e42;
  padding-bottom: 0.3em;
  margin-top: 1.5em;
  font-size: 2em;
}

.md-typeset h2 {
  font-weight: 700;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 0.3em;
  margin-top: 1.5em;
  font-size: 1.6em;
}

.md-typeset h3 {
  font-weight: 600;
  margin-top: 1.3em;
  font-size: 1.3em;
}

.md-typeset h4 {
  color: #2563eb;
  font-weight: 600;
  font-size: 1.1em;
  margin-top: 1em;
  margin-bottom: 0.5em;
  font-style: italic;
}

.md-typeset h5 {
  color: #4b5563;
  font-weight: 500;
  font-size: 1em;
  margin-top: 0.8em;
}

.md-typeset h6 {
  color: #4b5563;
  font-weight: 500;
  font-size: 0.9em;
  margin-top: 0.8em;
}

/* Enhanced strong/bold elements */
.md-typeset strong {
  color: #ff6e42;
  font-weight: 700;
}

[data-md-color-scheme="slate"] .md-typeset strong {
  color: #ff9e7a;
  font-weight: 700;
}

/* Hide navigation sidebar for pages with only one nav item (Home, Disclaimer) */
/* This targets the navigation when it contains only a single top-level item */
.md-sidebar--primary .md-nav--primary > .md-nav__list > .md-nav__item:only-child {
  display: none;
}

/* Alternatively, hide the entire primary sidebar for single-item pages */
body[data-md-state="no-sidebar"] .md-sidebar--primary,
.md-sidebar--primary:has(.md-nav--primary > .md-nav__list > .md-nav__item:only-child) {
  display: none;
}

/* Expand content when sidebar is hidden */
.md-sidebar--primary:has(.md-nav--primary > .md-nav__list > .md-nav__item:only-child) ~ .md-content {
  margin-left: 0;
}
