.account-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: 12px;
}

.account-btn {
  border: 0;
  background: #39d353;
  color: #031006;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.account-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  min-width: 210px;
  background: #0b0f0d;
  border: 1px solid #1d2b23;
  border-radius: 14px;
  padding: 8px;
  z-index: 9999;
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
}

.account-menu:hover .account-dropdown {
  display: block;
}

.account-dropdown a {
  display: block;
  padding: 12px 14px;
  color: #d6ded9;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
}

.account-dropdown a:hover {
  background: #07100b;
  color: #39d353;
}
.avatar-circle{
    width:28px;
    height:28px;
    border-radius:50%;
    background:#031006;
    color:#39d353;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    font-weight:900;
    margin-right:8px;
}