.FollowersCard {
    width: 100%;
    border-radius: 0.7rem;
    gap: 1rem;
    display: flex;
    flex-direction: column;
    font-size: 13px;
    
}

.FollowersCard h3 {
    font-weight: bold;
    font-size: 15px;
}

.follower {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.follower > div {
    display: flex;
    gap: 10px;
}
.follower > svg {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
}

.followerImg {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
}

.name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.name > span:nth-of-type(1){
    font-weight: bold;
}

.fc-button {
    height: 2rem;
    padding-left: 10px;
    padding-right: 10px;
}