/* Primary brand color */
:root > * {
  --md-primary-fg-color: #0acc95;
  --md-primary-fg-color--light: #4fdcb3;
  --md-primary-fg-color--dark: #089e72;
  --md-primary-bg-color: #ffffff;
  --md-primary-bg-color--light: #ffffff;
  --md-accent-fg-color: #0acc95;
  --md-accent-fg-color--transparent: rgba(10, 204, 149, 0.1);
  --md-accent-bg-color: #ffffff;
  --md-accent-bg-color--light: #ffffff;
}

/* Override Material theme defaults */
.md-header {
  background-color: #ffffff !important;
  color: #333333 !important;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1), 0 0.2rem 0.4rem rgba(0, 0, 0, 0.1);
}

.md-header__button {
  color: #333333 !important;
}

.md-header__title {
  color: #333333 !important;
}

/* Hide site name, only show logo */
.md-header__topic:first-child {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.md-header__topic:first-child .md-ellipsis {
  display: none !important;
}

/* Search box styling */
.md-search__input {
  background-color: #eaeaea !important;
  color: #333333 !important;
  border-radius: 6px !important;
}

.md-search__input::placeholder {
  color: #757575 !important;
}

.md-search__icon {
  color: #757575 !important;
}

/* Search popup styling */
.md-search__form {
  border-radius: 6px !important;
  background-color: #eaeaea !important;
}

/* Primary nav */
.md-tabs {
  background-color: #0acc95 !important;
  color: #ffffff !important;
}

/* Navigation active items */
.md-nav__item .md-nav__link--active {
  color: #0acc95 !important;
}

.md-nav__link:focus, 
.md-nav__link:hover {
  color: #0acc95 !important;
}

/* Links */
.md-typeset a {
  color: #0acc95;
}

.md-typeset a:hover {
  color: #089e72;
}

/* Buttons */
.md-button {
  background-color: #0acc95 !important;
  border-color: #0acc95 !important;
  color: #ffffff !important;
}

.md-button:hover {
  background-color: #089e72 !important;
  border-color: #089e72 !important;
}

/* Admonitions */
.md-typeset .admonition.info,
.md-typeset details.info {
  border-left-color: #0acc95;
}

.md-typeset .admonition.info > .admonition-title,
.md-typeset details.info > summary {
  background-color: rgba(10, 204, 149, 0.1);
}

.md-typeset .admonition.info > .admonition-title::before,
.md-typeset details.info > summary::before {
  background-color: #0acc95;
}

/* Footer */
.md-footer {
  background-color: #333333;
}

.md-footer-meta {
  background-color: #262626;
}

/* Fix for logo display */
.md-header__button.md-logo img,
.md-header__button.md-logo svg {
  height: 32px !important;
  width: auto !important;
} 