:root {
  --md-primary-fg-color: #0a32ff;
  --md-primary-fg-color--light: rgba(10, 50, 255, 0.08);
  --md-primary-fg-color--dark: #0828cc;
  --md-accent-fg-color: #0a32ff;
}

/* Sharp corners everywhere */
.md-typeset .admonition,
.md-typeset details,
.md-typeset pre > code,
.md-typeset code {
  border-radius: 0;
}

/* Blue left accent on code blocks */
.md-typeset pre > code {
  border-left: 3px solid var(--md-primary-fg-color);
}

/* Header logo with generous margins */
.md-header__button.md-logo {
  margin: 0;
  padding: 0;
}

.md-header__button.md-logo img {
  height: 2rem;
  margin: 1rem 0.5rem 1rem 0;
}

/* White header with bottom border */
.md-header {
  background-color: #fff;
  color: #000;
  border-bottom: 1px solid #e5e5e5;
  box-shadow: none;
}

.md-header__topic {
  color: #000;
}

.md-header__title {
  color: #000;
}

.md-header-nav__button {
  color: #000;
}

.md-search__icon {
  color: #000;
}

/* Table headers: uppercase gray */
.md-typeset table:not([class]) th {
  background: #ebebeb;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-size: 0.8rem;
}

/* H1 blue bottom border, H2 light border */
.md-typeset h1 {
  border-bottom: 3px solid var(--md-primary-fg-color);
  padding-bottom: 0.5rem;
}

.md-typeset h2 {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 0.25rem;
}

/* White footer with top border */
.md-footer {
  background: #fff;
  color: #6c757d;
  border-top: 1px solid #e5e5e5;
}

.md-footer-meta {
  background: #fff;
}

.md-footer-meta__inner {
  color: #6c757d;
}

/* Navigation sidebar styling */
.md-nav__link--active {
  border-left: 3px solid var(--md-primary-fg-color);
}

/* Alternating table rows */
.md-typeset table:not([class]) tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.015);
}

/* Credentials panel (quick-start) */
.creds-panel label {
  display: block;
  font-weight: 600;
  font-size: 0.7rem;
  margin: 0.4rem 0;
}
.creds-panel input {
  display: block;
  width: 100%;
  max-width: 28rem;
  margin-top: 0.15rem;
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--md-default-fg-color--lightest);
  border-radius: 0;
  font-family: var(--md-code-font-family, monospace);
  font-size: 0.7rem;
  background: var(--md-default-bg-color);
  color: var(--md-default-fg-color);
}
.creds-panel input:focus {
  outline: 2px solid var(--md-primary-fg-color);
}

/* Substituted credential values inside code blocks */
.cred-filled {
  background: rgba(10, 50, 255, 0.12);
  border-radius: 2px;
  padding: 0 2px;
}
