.tt-tooltip {
    position: relative;
    cursor: pointer;
}

.tt-tooltip > .title {
    border-bottom: 1px dashed #eee;
    display: inline-block;
}

.tt-tooltip > .content {
    display: none;
    position: absolute;
    background-color: white;
    border:1px solid #eee;
    padding: .5em;
    z-index: 5;
}

.tt-tooltip:hover > .content {
    display: block;
}

.role_user_count {
    display: flex;
    flex-direction: column;
    gap: .25em;
}
.role_user_count > .username {
    border-bottom: 1px solid #eee;
}