/* ══════════════════════════════════════════════════════════════════════════════
   ShiftHR — Team
   ──────────────────────────────────────────────────────────────────────────────
   Team table with avatar/name/email cells used on the My Team page.
   ══════════════════════════════════════════════════════════════════════════════ */

.team-table { width: 100%; }
.team-member-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}
.team-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--color-brand);
    color: #fff;
    font-size: .75rem;
    font-weight: 600;
    flex-shrink: 0;
}
.team-member-name {
    display: block;
    font-weight: 600;
    font-size: .85rem;
    color: var(--color-neutral-900);
}
.team-member-email {
    display: block;
    font-size: .75rem;
    color: var(--color-neutral-500);
}
