.header-container {
  background-color: #664930;
  display: flex;
  justify-content: space-around;
  padding: 1rem 0rem;
}
.header-left {
  display: flex;
  align-items: center;
}
.header-right {
  display: flex;
  align-items: center;
}

.header-right > *{
  margin: 0rem 1rem;
}

.header-logo {
  height: 4rem;
  width:  4rem;
  border-radius: 50%;
}

.nav-title {
  padding: 0px 1rem;
  font-size: 2rem;
  color: white;
  font-family: "Inknut Antiqua";
  text-decoration: none;
}

.nav-title:hover {
  text-decoration: none;
  color: white;
}

.nav-item {
  padding: 0px 1rem;
  color: white;
  font-size: 1.2rem;
  transition: 0.4s;
  text-decoration: none;
  font-family: 'Roboto Mono', monospace;;
}

.nav-item:hover {
  color: rgb(108, 255, 108);
  text-decoration: none;
}

.my-bag {
  transition: 0.2s;
  width: 32px;
  height: 32px;
  padding: 2px;
}

.my-bag:hover { 
  cursor: pointer;
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 3px 6px rgba(255, 255, 255, 0.233));
}

.user-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.auth-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.auth-link {
  color: white;
  text-decoration: none;
  transition: 0.2s;
}
.auth-link:hover {
  color: rgb(49, 148, 49);
}
.auth-divider {
  color: rgba(255, 255, 255, 0.65);
}

.logged-in {
  margin: 0.25rem 0rem;
  color: white;
  font-size: 1.5rem;
  text-align: center;
  white-space: nowrap;
}

.disabled-bag {
  opacity: 0.4;
  pointer-events: none;
  cursor: not-allowed;
}

.admin-button {
  border: none;
  background-color: #664930;
  color: white;
  transition: 0.2s;

}

.admin-button:hover {
  color: rgb(49, 148, 49);
}
.user-image {
  width: 5rem;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-left {
    flex-wrap: wrap;
    row-gap: 0.75rem;
  }

  .header-right {
    width: 100%;
    justify-content: space-between;
    margin-top: 0.5rem;
  }

  .nav-item {
    font-size: 1rem;
  }

  .nav-title {
    font-size: 1.5rem;
  }

  .admin-button {
    font-size: 0.9rem;
    padding: 0.4rem 0.75rem;
  }

  .user-avatar-link img,
  .my-bag {
    width: 3rem 
  }
}