.friends-list-header{
    font-weight:bold;
}

.friends-list{
    background-color:#fff;
    border-radius:7px;
    padding:5px;
}

.friend-item{
    padding:5px;
    border-radius:7px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    text-decoration:none;
}

.friend-item:hover{
    background-color:#FCFBFA;
}

.friend-item .profile-picture{
    height:60px;
    width:60px;
}

.friend-item .friend-details{
    display:flex;
}

.friend-item  a{
    text-decoration:none;
    color:#80726F;
}