/* mobile-navbar, mobile-search styles */
/* Mobile default: small phones */
.header-mobile {
  display: none; /* Hide mobile navbar on desktop */
}
.header-mobile.active {
  position: fixed;
  width: 100%;
  z-index: 998;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(255, 255, 255);
  padding-left: 10px;
  padding-right: 10px;

  border-bottom: 1px solid rgba(0, 0, 0, 0.085);
  box-sizing: border-box;
}
.header-left {
    display: flex;
    align-items: center;
  }

.brand {
    display: flex;
    align-items: center;
    margin-right: 32px;
    text-decoration: none;
    color: var(--text-color-primary);
    font-family: var(--font-family);
  }
.brand span {
    font-size: 16px;
    font-weight: 600;
  }
.brand span:hover {
  text-decoration: underline;
  text-decoration-color: var(--text-color-primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.brand img {
  height: calc(var(--navbar-icon-height) * 0.75);
  border-radius: 2px;
  margin-right: 8px;
}
.brand img:active, .brand span:active {
  opacity: 0.8;
}
.mobile-menu-btn {
  background-color: rgb(255, 255, 255);
}
.mobile-menu-btn:hover {
  background-color: var(--button-color);
}
.mobile-menu-btn img {
    height: 30px;
    padding-top: 1px;
  }

@media (min-width: 768px) { 
  .mobile-navbar.active, .mobile-search.active {
    display: none; /* Hide mobile navbar on desktop */
  }
}