#mobileMenu {
  font-size: 1.5rem;
}

[data-component="GlobalHeader"] {
  background-color: rgb(46, 51, 56);
  box-shadow:
    0 15px 25px rgba(0, 0, 0, 0.15),
    0 5px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: unset !important;
  z-index: 1;

  a {
    text-decoration: none;
  }

  .searchContainer {
    align-items: center;
    display: flex;
    gap: 1rem;

    @media screen and (max-width: 768px) {
      &:not(.searchContainer-mobile) {
        display: none;
      }

      wa-input::part(input) {
        max-width: 150px;
      }
    }

    @media screen and (min-width: 769px) {
      &.searchContainer-mobile {
        display: none;
      }
    }

    .mobileMenuButton {
      :not(.searchContainer-mobile) > & {
        display: none;
      }
    }
  }

  @media screen and (max-width: 768px) {
    .loginLogoutContainer {
      display: none;
    }
  }
}
