.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1c264f;
    min-width: 160px;
    border-radius: 8px;
    z-index: 1;
    right: 0px;
    text-align: left;
    top: 50px;
}

.dropdown-content a {
    color: white;
    padding: 10px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
    text-align: left;
    background-color: rgba(255,255,255,.1);
    margin: 10px;
    border-radius: 50px;
    font-weight: 400;
}

.dropdown-content a svg {
    margin-right: 10px;
}

#username, #usermail {
  background-color: transparent;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #ffc99a;
}

#usermail {
  color: #fff;
}

#logouticon {
    border-radius: 0%;
    width: 17px;
    height: 17px;
}

.dropdown-content a:hover {
    background-color: rgba(255,255,255,.3);
}

.avatar-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
}

.iconsmenu {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 10px;
}

#logout {
    text-align: center;
    color: #ff6a6a;
}