.md-header__button.md-logo img,
.md-header__button.md-logo svg {
    width: 48px;
    height: 48px;
}

[data-md-color-scheme="slate"] .md-header {
    background-color: #0d1117 !important;
    border-bottom: 1px solid #1a237e;
}

[data-md-color-scheme="slate"] .md-tabs {
    background-color: #161b22 !important;
    border-bottom: 1px solid #1a237e;
}

[data-md-color-scheme="slate"] .md-nav--primary .md-nav__title {
    background-color: #0d1117 !important;
}

[data-md-color-scheme="slate"] .md-typeset a {
    color: #1976d2 !important;
}

[data-md-color-scheme="slate"] .md-nav__item--active > .md-nav__link {
    color: #1976d2 !important;
}

[data-md-color-scheme="slate"] {
    --md-primary-fg-color: #1a237e;
    --md-accent-fg-color: #1976d2;
    --md-default-bg-color: #0d1117;
    --md-default-fg-color: #c9d1d9;
    --md-code-bg-color: #161b22;
    --md-code-fg-color: #c9d1d9;
}

[data-md-color-scheme="slate"] .md-typeset pre {
    background-color: #161b22 !important;
    border: 1px solid #1a237e;
    border-radius: 6px;
}

[data-md-color-scheme="slate"] .md-typeset code {
    background-color: #161b22 !important;
    color: #c9d1d9 !important;
    border: 1px solid #1a237e;
}

[data-md-color-scheme="slate"] .md-typeset table:not([class]) {
    border: 1px solid #1a237e;
}

[data-md-color-scheme="slate"] .md-typeset table:not([class]) th {
    background-color: #1a237e !important;
    color: #ffffff !important;
}

[data-md-color-scheme="slate"] .md-typeset table:not([class]) td {
    border-top: 1px solid #1a237e;
}

[data-md-color-scheme="slate"] .md-nav__item--active > .md-nav__link:hover {
    color: #2196f3 !important;
}

[data-md-color-scheme="slate"] .md-nav__link:hover {
    color: #1976d2 !important;
}

[data-md-color-scheme="slate"] .md-search__input {
    background-color: #161b22 !important;
    border: 1px solid #1a237e !important;
    color: #c9d1d9 !important;
}

[data-md-color-scheme="slate"] .md-search__input:focus {
    border-color: #1976d2 !important;
}

[data-md-color-scheme="slate"] .md-search__input::placeholder {
    color: #8b949e !important;
}

.md-typeset h1, .md-typeset h2, .md-typeset h3, .md-typeset h4, .md-typeset h5, .md-typeset h6 {
    font-weight: 600;
}

[data-md-color-scheme="default"] .md-search__icon {
    color: #ffffff !important;
}

[data-md-color-scheme="default"] .md-footer {
    background-color: #ffffff !important;
    color: #000000 !important;
}

.code-tab-wrapper {
  margin-bottom: 1.5rem;
}

.code-tab-buttons {
  display: flex;
  border-bottom: 1px solid #1a237e;
  margin-bottom: -1px;
}

.code-tab-button {
  background-color: transparent;
  border: none;
  color: #c9d1d9;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  border-bottom: 2px solid transparent;
}

.code-tab-button.active {
  color: #1976d2;
  border-bottom-color: #1976d2;
}

.code-tab-panel {
  display: none;
}

.code-tab-panel.active {
  display: block;
}

/* Endpoint and Language Tabs */
.endpoint-tab-wrapper {
  margin-bottom: 2rem;
}

.endpoint-tab-buttons {
  display: flex;
  border-bottom: 1px solid #1a237e;
  margin-bottom: -1px;
  flex-wrap: wrap;
}

.endpoint-tab-button {
  background-color: transparent;
  border: none;
  color: #c9d1d9;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  border-bottom: 2px solid transparent;
  font-weight: 500;
}

.endpoint-tab-button.active {
  color: #1976d2;
  border-bottom-color: #1976d2;
}

.endpoint-tab-panel {
  display: none;
  padding: 1rem 0;
}

.endpoint-tab-panel.active {
  display: block;
}

.language-tab-wrapper {
  margin-top: 1rem;
}

.language-tab-buttons {
  display: flex;
  border-bottom: 1px solid #1a237e;
  margin-bottom: -1px;
}

.language-tab-button {
  background-color: transparent;
  border: none;
  color: #c9d1d9;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  border-bottom: 2px solid transparent;
}

.language-tab-button.active {
  color: #1976d2;
  border-bottom-color: #1976d2;
}

.language-tab-panel {
  display: none;
  padding: 1rem 0;
}

.language-tab-panel.active {
  display: block;
}

/* Light theme adjustments */
[data-md-color-scheme="default"] .endpoint-tab-button,
[data-md-color-scheme="default"] .language-tab-button {
  color: #37474f;
}

[data-md-color-scheme="default"] .endpoint-tab-button.active,
[data-md-color-scheme="default"] .language-tab-button.active {
  color: #1976d2;
  border-bottom-color: #1976d2;
}

[data-md-color-scheme="default"] .endpoint-tab-buttons,
[data-md-color-scheme="default"] .language-tab-buttons {
  border-bottom: 1px solid #e0e0e0;
}