.bf-profile-menu {
    display: flex;
    align-items: center;
    float: right;
    list-style: none;
    margin: 0;
    padding: 0;
}

.bf-profile-menu .profile-menu {
    position: relative;
    display: inline-block;
}

.bf-profile-menu .profile-avatar {
    width: 40px;
    border-radius: 50%;
    vertical-align: middle;
    object-fit: cover;
    cursor: pointer;
    transition: 0.3s;
}

.bf-profile-menu .arrow-down {
    margin-left: 5px;
    vertical-align: middle;
}

.profile-menu-wrapper {
    padding-bottom: 10px;
}

.bf-profile-menu .submenu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 0;
    list-style: none;
    min-width: 150px;
    z-index: 100;
    border-radius: 6px;
    overflow: hidden;
}

.bf-profile-menu .submenu li a {
    display: block;
    padding: 10px 15px;
    white-space: nowrap;
    transition: 0.2s;
}

.bf-profile-menu .submenu li a:hover {
    background-color: #f0f0f0;
}

.bf-profile-menu .profile-menu:hover .submenu {
    display: block;
}

.profile-menu .submenu li a{
    display: flex;
    gap: 5px;
}

.profile-menu .submenu li a svg{
    width:20px;
}