header {
  box-shadow: var(--elevation-1);
  padding: 1rem 0;

  .header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

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

    form button {
      border-radius: 100vmax;
      color: var(--on-ink);
      background-color: var(--ink-70);
      width: 2rem;
      height: 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      padding-left: 3px;
    }

    .header__dashboard {
      text-decoration: none;
      border: 2px solid var(--ink-70);
      border-radius: 100vmax;
      padding: .0625rem 1rem;
      font-weight: 600;
      font-size: 1rem;
      color: var(--ink-70);
    }
  }

  .header__logout {
    margin: 0;
  }

  .header__logoutButton {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--ink-70);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 2px;
    font-size: inherit;
    letter-spacing: normal;
  }

  .logo {
    color: var(--brand);
    font-weight: 700;
    font-size: 2rem;
    text-decoration: none;
  }

  a {
    color: var(--ink-70);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 2px;
  }

  .header__search {
    margin-left: 2rem;

    button {
      font-weight: 500;
    }
  }

  @media screen and (max-width: 768px) {
    .header__search {
      margin-left: 0;

      span {
        display: none;
      }
    }
  }
}