div.avatar {
    background-color: silver;
    color: black !important;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;

    &.has-image {
        background-image: var(--avatarUrl);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        z-index: 1;

        span {
            display: block;
            position: absolute;
            bottom: -2px;
            right: -2px;
            background-color: var(--taurusNetworkPrimaryDark);
            color: white;
            font-size: 0.8rem;
            padding-left: 3px;
            padding-right: 3px;
            border-radius: 8px;
        }
    }
}