#tab-profile .profile-rbac-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    max-width: 100%;
}

#tab-profile .profile-rbac-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    max-width: 100%;
    min-height: 34px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(226, 232, 240, 0.86);
    background: rgba(255, 255, 255, 0.72);
    color: #4B5563;
    box-shadow: 0 8px 22px rgba(17, 24, 39, 0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

#tab-profile .profile-rbac-chip i {
    flex: 0 0 auto;
    color: #20B486;
    font-size: 0.82rem;
}

#tab-profile .profile-rbac-chip--store i {
    color: #F15A2B;
}

#tab-profile .profile-rbac-chip__label {
    flex: 0 0 auto;
    color: #7B8494;
    font-size: 0.7rem;
    font-weight: 900;
}

#tab-profile .profile-rbac-chip strong {
    min-width: 0;
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #111827;
    font-size: 0.78rem;
    font-weight: 900;
}

@media (max-width: 640px) {
    #tab-profile .profile-rbac-summary {
        gap: 6px;
        margin-top: 9px;
    }

    #tab-profile .profile-rbac-chip {
        min-height: 32px;
        padding: 5px 9px;
    }

    #tab-profile .profile-rbac-chip strong {
        max-width: min(52vw, 210px);
    }
}
