/* Floating glass header container */
.md-header {
    width: 90%;
    margin: 14px auto;
    border-radius: 12px;
    background: linear-gradient(90deg, #ff4b4b, #b30000);
    box-shadow: 
      0 10px 30px rgba(255, 0, 0, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
  }
  
  /* Inner layout: left brand, right search */
  .md-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    padding: 0 24px;
  }
  
  /* Logo */
  .md-header__button.md-logo img {
    height: 36px;
  }
  
  /* Site title (Solnix Docs) */
  .md-header__title {
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-right: auto;
    margin-top: 4px;
  }
  
  /* Search container */
  .md-search {
    margin-left: 24px;
  }
  
  /* Search bar */
  .md-search__form {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 8px;
  }
  
  /* Search input text */
  .md-search__input {
    color: white;
  }
  
  /* Tabs bar (if enabled) */
  .md-tabs {
    width: 90%;
    margin: 0 auto;
    border-radius: 0 0 12px 12px;
  }
  
/* Disable blur when search is active */
html.md-dialog--open .md-header {
  backdrop-filter: none;
}

html.md-dialog--open .md-header__inner {
  background-color: transparent;
}

@media screen and (min-width: 60em) {
  .md-search__overlay {
    background-color: transparent;
    cursor: pointer;
    height: auto;
    position: fixed;
    top: 0;
    transition: none;
    width: auto;
  }
} 

.md-search__input {
    color: black !important;
}

[dir=ltr] .md-header__title {
    margin-left: 0rem;
    margin-right: .4rem;
}

.md-footer{
    display: none !important;
}