/* Verified checkmark badge on relationship table Modification cells */
.verified-badge-cell {
    position: relative;
    display: inline-block;
    white-space: nowrap;
    padding-right: 5px;
    cursor: default;
}
.verified-badge {
    position: absolute;
    top: -5px;
    right: -6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #15803d;
    color: #ffffff;
    font-size: 7px;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
    vertical-align: baseline;
    text-decoration: none;
}
.relation-table td:first-child {
    overflow: visible;
}
