.profile-menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-button {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(15, 47, 29, 0.18);
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(15, 47, 29, 0.12);
}
.profile-button svg {
  width: 20px;
  height: 20px;
  fill: #14452b;
}
.profile-dropdown {
  position: absolute;
  top: 48px;
  right: 0;
  min-width: 140px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e6eaed;
  box-shadow: 0 16px 30px rgba(15, 47, 29, 0.16);
  display: none;
  overflow: hidden;
  z-index: 50;
}
.profile-dropdown a {
  display: block;
  padding: 10px 14px;
  color: #0f2f1d;
  font-weight: 600;
}
.profile-dropdown a:hover {
  background: #f5f7f8;
  text-decoration: none;
}
.profile-menu.open .profile-dropdown {
  display: block;
}

.login-page .profile-menu {
  display: none;
}
