.md-header {
  background-color: var(--md-default-bg-color);
  color: var(--md-default-fg-color);
  box-shadow: 0 1px 0 var(--md-default-fg-color--lightest);
}

.md-header__title,
.md-header__button.md-logo {
  display: none;
}

/* Search left, palette right */
.md-search {
  order: 0;
  flex: 1;
  margin-right: auto;
}

.md-header__option {
  order: 1;
  margin-left: auto;
}

.md-search__input {
  background-color: var(--md-default-fg-color--lightest);
  color: var(--md-default-fg-color);
}

.md-search__input::placeholder {
  color: var(--md-default-fg-color--light);
}

.md-typeset {
  font-size: 16.4px;
}

:root {
  --md-sidebar-width: 18rem;
  --md-admonition-icon--note: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13,9H11V7H13M13,17H11V11H13M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z'/%3E%3C/svg%3E");
}


/* Logo size — applicato globalmente per evitare espansione su mobile */
.md-logo img {
  height: 2rem;
  width: auto;
  border-radius: 50%;
}

/* Logo + brand name fixed above sidebar scrollwrap */
@media screen and (min-width: 76.25em) {
  .md-sidebar--primary>.md-nav__title {
    display: flex;
    align-items: center;
    padding: .5rem 1rem;
    font-size: .9rem;
    font-weight: 700;
    color: var(--md-default-fg-color);
    white-space: nowrap;
    margin-bottom: 2em;
  }

  .md-sidebar--primary>.md-nav__title .md-logo img {
    margin-right: .5rem;
  }
}

.md-sidebar--primary {
  padding: 0
}

.md-nav {
  font-size: 14px;
}

/* Sidebar nav spacing */
.md-nav--primary .md-nav__item {
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
}

.md-nav--primary .md-nav__link {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  word-spacing: 0.2em;
}

.md-content .md-typeset ul li,
.md-content .md-typeset ol li {
  margin-bottom: 0.7rem !important;
}

.md-typeset h1 {
  font-weight: 700;
}

[data-md-color-scheme="slate"] .md-typeset h1 {
  color: white;
}

[data-md-color-scheme="slate"] .md-typeset strong {
  color: white;
}

.md-typeset h2,
.md-typeset h3 {
  font-weight: 700;
}

.md-typeset h4 {
  font-size: 1.2em;
  font-weight: 700;
}

.md-footer {
  display: none;
}

.md-typeset .admonition {
  display: block !important;
  position: relative !important;
  padding: 0.75rem 1rem 0.75rem 3.5rem !important;
}

.md-typeset .admonition-title {
  position: absolute !important;
  left: 0.75rem !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 2rem !important;
  margin: 0 !important;
  background: transparent !important;
  font-size: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

[dir=ltr] .md-typeset .admonition-title,
[dir=rtl] .md-typeset .admonition-title {
  padding: 0 !important;
}

.md-typeset .admonition-title::before,
[dir=ltr] .md-typeset .admonition-title::before,
[dir=rtl] .md-typeset .admonition-title::before {
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
}


[data-md-color-scheme="slate"] {
  --md-default-fg-color: rgb(254, 255, 255);
  --md-default-bg-color: hsl(232, 15%, 11%);
  --md-default-bg-color--light: hsl(232, 15%, 16%);
  --md-default-bg-color--lighter: hsl(232, 15%, 23%);
  --md-default-bg-color--lightest: hsl(232, 15%, 31%);
  --md-code-bg-color: hsl(232, 15%, 8%);
}

.md-content__inner {
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}

.md-content img {
  display: block;
  max-height: 600px;
  width: auto;
  margin: 1.5rem auto;
  border-radius: 6px;
}