.member-div{
    display: flex;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    margin-top: 20px;
}
.member-div-x{
    margin-left: 2%;
    margin-right: 2%;
    width: 30%;
}
.member-user{
    display: flex;
    background-color: #ecf0f3;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 30px;
    border: 2px solid #000000;
    background-image: url('/assets/images/icon.png');
    background-color: rgba(255, 255, 255, 0.85);
    background-size: 100% 100%;
    background-blend-mode: overlay;
}
.member-user-top{
    display: flex;
    align-items: center;
    width: 90%;
    height: 40%;
}
.member-user-avatar{
    width: 80px;
    height: 80px;
}
.member-user-name{
    font-size: 1.8rem;
    margin-left: 10px;
}
.member-user-role{
    margin: 0px;
    border-radius: 10px;
    padding: 6px;
    margin-left: auto;
    color: #FFFFFF;
    font-size: 0.8rem;
}
.member-user-role-0{
    background-color: #FF0000;
}
.member-user-role-1{
    background-color: #FF7700;
}
.member-user-role-2{
    background-color: #808080;
}
.member-user-bottom{
    display: flex;
    width: 90%;
    height: 40%;
}
.member-user-bio{
    margin-top: auto;
    width: 45%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.member-user-more{
    display: flex;
    margin-left: auto;
    margin-top: auto;
    color: #FFFFFF;
    background-color: #1111FF;
    padding: 5px 20px;
    border-radius: 12px;
    text-decoration: none;
}