/* ===================================================== */
/* 🔹 COMMON (theme-agnostic)                            */
/* ===================================================== */

/* Zoomable images (glightbox) */
.md-typeset a.glightbox {
  position: relative;
  display: inline-block;
  cursor: zoom-in;
}

.md-typeset a.glightbox::after {
  content: "\1F50D"; /* 🔍 Unicode magnifying glass icon */
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 1.2em;
  color: rgba(255,255,255,0.8);
  text-shadow: 0 0 2px #000;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  pointer-events: none;
}

.md-typeset a.glightbox:hover::after {
  opacity: 1;
}

/* Images */
.md-typeset img {
  max-width: 70% !important;
  height: auto !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Ensure width attribute images behave correctly */
.md-typeset img[width] {
  max-width: none !important;
  height: auto !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Center ALL Markdown tables */
.md-typeset .md-typeset__table {
  display: flex;
  justify-content: center;
}

.md-typeset .md-typeset__table table {
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
}

/* Page layout */
.md-grid {
  max-width: 85rem;
}

/* Headings spacing */
.md-typeset h1 {
  margin: 0 0 0.25em;
}

.md-typeset h2 {
  margin: 0.6em 0 0.64em;
}

/* Footer content (icons, links) */
.mdx-content__footer {
  margin-top: 20px;
  text-align: center;
}

.mdx-content__footer a {
  display: inline-block;
  transition: transform 250ms cubic-bezier(0.1, 0.7, 0.1, 1), color 125ms;
}

.mdx-content__footer a:focus,
.mdx-content__footer a:hover {
  transform: scale(1.2);
}

.mdx-content__footer hr {
  display: inline-block;
  width: 40px;
  margin: 16px;
  vertical-align: middle;
  background-color: currentColor;
  border: none;
}

/* Footer links (both themes) */
.md-footer a {
  color: white !important;
}


/* ===================================================== */
/* 🌞 LIGHT THEME (default)                              */
/* ===================================================== */

[data-md-color-scheme="default"] .md-header,
[data-md-color-scheme="default"] .md-header__inner {
  background-color: #01a982 !important;
}

[data-md-color-scheme="default"] .md-tabs {
  background-color: #01a982 !important;
}

[data-md-color-scheme="default"] .md-tabs__item--active > .md-tabs__link {
  color: white !important;
}

[data-md-color-scheme="default"] .md-tabs__link:hover {
  color: white;
}

[data-md-color-scheme="default"] .md-footer {
  background-color: #01a982 !important;
  color: white !important;
}


/* ===================================================== */
/* 🌙 DARK THEME (slate)                                 */
/* ===================================================== */

[data-md-color-scheme="slate"] .md-header,
[data-md-color-scheme="slate"] .md-header__inner,
[data-md-color-scheme="slate"] .md-tabs {
  background-color: #008567 !important;
}

[data-md-color-scheme="slate"] .md-tabs__item--active > .md-tabs__link {
  color: white !important;
}

[data-md-color-scheme="slate"] .md-footer {
  background-color: #008567 !important;
  color: white !important;
}