gigafibre-fsm/apps/ops/src/components/customer/LocationCard.vue
louispaulb d7412fcced #27 Standardise ticket-detail rendering (status / tags / row component)
Converge every ticket-detail surface onto the canonical IssueDetail (in
DetailModal) + TicketCard, per reference_ticket_detail_disparities.

STATUS — one model:
- IssueDetail no longer double-renders status. The green button (shared
  TicketStatusControl) is relabelled "Reporter" with a schedule icon — it is
  a postpone/snooze + quick-close control, not a 2nd status setter. The single
  5-value status select (Open/Replied/On Hold/Resolved/Closed) is canonical.

TAGS — one source, via the shared TagEditor:
- New useTagCatalog composable unifies the tag catalogue: ERPNext "Dispatch Tag"
  ∪ roster technician skills (hub /roster/technicians). Roster skills like
  "sans-fil"/"épissure" now appear on ticket tags (were missing before).
- IssueDetail replaces its bespoke q-select + chip row with TagEditor; the tag
  manager (rename/recolor/delete) is delegated to the composable's CRUD.

ONE ticket-row component (TicketCard):
- LocationCard's ad-hoc per-address ticket list now renders TicketCard.
- TicketsPage mobile card mode (DataTable #item slot) renders TicketCard.
- assignee handling (assigned_staff/opened_by_staff avatars) is now consistent
  across fiche, location, and /tickets.

Verified in local preview against live backend: Reporter button + single
status select, TagEditor dropdown surfacing roster skills ("sans-fil" under
"Compétence"), TicketCard rows on fiche + LocationCard, no component errors.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-08 14:31:39 -04:00

384 lines
24 KiB
Vue

<template>
<div
:id="'loc-' + loc.name"
class="ops-card q-mb-md loc-card"
:class="{ 'loc-inactive': !locHasSubs(loc.name), 'loc-highlight': highlightLoc === loc.name }">
<div class="loc-header" :style="!locHasSubs(loc.name) ? 'cursor:pointer' : ''"
@click="!locHasSubs(loc.name) && toggleLocCollapse(loc.name)">
<div class="row items-center">
<div v-if="!locHasSubs(loc.name)" class="col-auto q-mr-xs">
<q-icon :name="locCollapsed[loc.name] === false ? 'expand_more' : 'chevron_right'" size="18px" color="grey-5" />
</div>
<div class="col">
<div class="text-subtitle1 text-weight-bold" :class="{ 'text-grey-6': !locHasSubs(loc.name) }">
<InlineField :value="loc.address_line" field="address_line" doctype="Service Location" :docname="loc.name"
placeholder="Adresse" @saved="v => loc.address_line = v.value" />
</div>
<div class="text-caption text-grey-6">
<template v-for="f in locInlineFields" :key="f.field">
<template v-if="f.prefix">{{ f.prefix }}</template>
<InlineField :value="loc[f.field]" :field="f.field" doctype="Service Location" :docname="loc.name"
:placeholder="f.placeholder" @saved="v => loc[f.field] = v.value" />
</template>
<template v-if="!locHasSubs(loc.name)"> &middot; <em>Aucun abonnement</em></template>
</div>
</div>
<div class="col-auto q-gutter-x-sm">
<span v-if="locSubsMonthlyTotal(loc.name)" class="text-weight-bold" style="color:var(--ops-accent)">
{{ formatMoney(locSubsMonthlyTotal(loc.name)) }}/m
</span>
<span class="ops-badge" :class="locHasSubs(loc.name) ? locStatusClass(loc.status) : 'inactive'">
{{ locHasSubs(loc.name) ? loc.status : 'Inactif' }}
</span>
<q-btn v-if="!locHasSubs(loc.name) && can('delete_records')" flat round dense
icon="delete_outline" size="sm" color="negative" class="q-ml-xs"
@click.stop="confirmDeleteLocation(loc)" :loading="deletingLoc === loc.name">
<q-tooltip>Supprimer cette adresse</q-tooltip>
</q-btn>
</div>
</div>
</div>
<div v-show="locHasSubs(loc.name) || locCollapsed[loc.name] === false">
<div v-if="locEquip(loc.name).length || loc.connection_type" class="row items-center q-mt-sm q-mb-xs q-gutter-x-md">
<div class="text-caption text-grey-6">
<q-icon name="cable" size="14px" class="q-mr-xs" />
<InlineField :value="loc.connection_type" field="connection_type" doctype="Service Location" :docname="loc.name"
type="select" :options="['Fibre', 'Coax', 'DSL', 'Wireless', 'LTE']"
placeholder="Type" @saved="v => loc.connection_type = v.value" />
&middot; OLT: <InlineField :value="loc.olt_port" field="olt_port" doctype="Service Location" :docname="loc.name"
placeholder="Port OLT" @saved="v => loc.olt_port = v.value" />
&middot; <InlineField :value="loc.network_id" field="network_id" doctype="Service Location" :docname="loc.name"
placeholder="Network ID" @saved="v => loc.network_id = v.value" />
</div>
<DeviceStrip
:equipment="locEquip(loc.name)"
@open-device="eq => openModal('Service Equipment', eq.name, eq.equipment_type + (eq.brand ? ' — ' + eq.brand : ''))"
@add-submission="openWizardForAddress(loc)"
@add-service="openAddService(loc)"
@add-rebate="openAddService(loc, 'rabais')"
@add-equipment="openAddEquipment(loc)"
/>
</div>
<div class="info-block subs-block">
<div class="info-block-title" style="display:flex;align-items:center">
Abonnements ({{ locSubs(loc.name).length }})
<q-btn flat dense round size="xs" icon="add" color="primary" class="q-ml-xs"
style="margin-top:-2px">
<q-tooltip>Ajouter un service</q-tooltip>
<q-menu anchor="bottom left" self="top left" :offset="[0, 4]">
<q-list dense style="min-width:220px">
<q-item clickable v-close-popup @click="openWizardForAddress(loc)">
<q-item-section avatar><q-icon name="description" size="18px" color="primary" /></q-item-section>
<q-item-section>
<q-item-label>Nouvelle soumission</q-item-label>
<q-item-label caption>Wizard avec étapes</q-item-label>
</q-item-section>
</q-item>
<q-separator />
<q-item clickable v-close-popup @click="openAddService(loc)">
<q-item-section avatar><q-icon name="wifi" size="18px" color="info" /></q-item-section>
<q-item-section>Forfait / Service (direct)</q-item-section>
</q-item>
<q-item clickable v-close-popup @click="openAddService(loc, 'rabais')">
<q-item-section avatar><q-icon name="sell" size="18px" color="negative" /></q-item-section>
<q-item-section>Rabais / Crédit</q-item-section>
</q-item>
</q-list>
</q-menu>
</q-btn>
</div>
<div v-if="!locSubs(loc.name).length" class="text-caption text-grey-5">Aucun</div>
<template v-if="locSubsMonthly(loc.name).length">
<template v-for="section in locSubsSections(loc.name, 'M')" :key="'m-'+section.key">
<div class="sub-section-header" @click="toggleSection(loc.name, section.key)">
<q-icon :name="sectionOpen(loc.name, section.key) ? 'expand_more' : 'chevron_right'" size="18px" />
<q-icon :name="section.icon" size="16px" class="text-grey-6 q-mr-xs" />
<span class="sub-section-title">{{ section.label }}</span>
<span class="sub-section-count">({{ section.items.length }})</span>
<span class="sub-section-subtotal">{{ formatMoney(sectionTotal(section.items)) }}</span>
</div>
<div v-show="sectionOpen(loc.name, section.key)">
<draggable :list="section.items" :group="{ name: 'loc-subs-' + loc.name, pull: true, put: true }" item-key="name"
handle=".drag-handle" ghost-class="sub-ghost" :animation="150"
@change="onSubDragChange($event, loc.name, section.items)">
<template #item="{ element: sub }">
<div class="sub-row clickable-row" :class="{ 'sub-rebate': isRebate(sub), 'sub-cancelled': sub.status === 'Cancelled' }">
<div class="row items-center no-wrap">
<q-icon name="drag_indicator" class="drag-handle text-grey-4 q-mr-xs" size="16px" style="cursor:grab" />
<div class="col" style="min-width:0" @click="openModal('Service Subscription', sub.name)">
<div class="row items-center no-wrap q-gutter-x-sm">
<code class="sub-sku">{{ sub.name }}</code>
<!-- Lien legacy F : legacy_service_id = service.id de F (0 = ajouté dans ERPNext, absent de F) -->
<q-badge v-if="sub.legacy_service_id > 0" color="blue-grey-1" text-color="blue-grey-8" :label="'F #' + sub.legacy_service_id"><q-tooltip>Service F #{{ sub.legacy_service_id }} (corrélé)</q-tooltip></q-badge>
<q-badge v-else color="red-1" text-color="red-9" label="OPS"><q-tooltip>Ajouté dans ERPNext — absent de F (pas de legacy_service_id)</q-tooltip></q-badge>
<span class="text-weight-medium ellipsis-text" style="flex:1;min-width:0">{{ subMainLabel(sub) }}</span>
<!-- Inline price edit: double-click to edit. Negative values kept as-is for rebates. -->
<span class="sub-price-wrap" @click.stop @dblclick.stop
:title="can('edit_records') ? 'Double-clic pour modifier le prix' : ''">
<InlineField :value="sub.actual_price || 0"
field="monthly_price" doctype="Service Subscription" :docname="sub.name"
type="number" :formatter="formatMoney"
:readonly="!can('edit_records')"
@saved="onSubPriceSaved(sub, $event)">
<template #display="{ displayValue }">
<span class="sub-price" :class="{ 'text-red': isRebate(sub), 'text-weight-bold': !isRebate(sub) }">
{{ displayValue }}
</span>
</template>
</InlineField>
</span>
</div>
</div>
<div class="col-auto sub-actions">
<q-btn flat dense round size="xs" icon="confirmation_number" color="green-4"
@click.stop="openNewTicket(loc, sub)">
<q-tooltip>Créer un ticket pour ce service</q-tooltip>
</q-btn>
<q-btn flat dense round size="xs" :icon="sub.billing_frequency === 'A' ? 'event' : 'event_repeat'"
@click.stop="toggleFrequency(sub)" :loading="subSaving === sub.name + ':freq'">
<q-tooltip>{{ sub.billing_frequency === 'A' ? 'Passer mensuel' : 'Passer annuel' }}</q-tooltip>
</q-btn>
<q-btn flat dense round size="xs"
:icon="sub.status === 'Cancelled' ? 'play_circle' : 'cancel'"
:color="sub.status === 'Cancelled' ? 'green' : 'red'"
@click.stop="toggleSubStatus(sub)" :loading="subSaving === sub.name + ':status'">
<q-tooltip>{{ sub.status === 'Cancelled' ? 'Réactiver' : 'Désactiver' }}</q-tooltip>
</q-btn>
<q-btn v-if="can('delete_records')" flat dense round size="xs" icon="delete_outline" color="negative"
@click.stop="confirmDeleteSub(sub)">
<q-tooltip>Supprimer définitivement</q-tooltip>
</q-btn>
</div>
</div>
</div>
</template>
</draggable>
</div>
</template>
<div class="sub-total-line">
<span class="sub-total-label">Total mensuel</span>
<span class="sub-total-amount" :class="{ 'sub-total-neg': locSubsMonthlyTotal(loc.name) < 0 }">{{ formatMoney(locSubsMonthlyTotal(loc.name)) }} /mois</span>
</div>
<!-- Garde-fou : un abonnement récurrent ne peut pas être négatif (rabais > frais). On NE corrige PAS (facturation = F autoritaire) : on signale pour correction dans F. -->
<div v-if="locSubsMonthlyTotal(loc.name) < 0" class="sub-total-warning">
<q-icon name="error" size="15px" color="negative" class="q-mr-xs" />
<span>Total récurrent négatif — les rabais dépassent les frais. Vérifier/corriger les rabais dans la facturation (F).</span>
</div>
</template>
<template v-if="locSubsAnnual(loc.name).length">
<div class="sub-annual-divider">
<q-icon name="event" size="16px" /> Abonnements annuels ({{ locSubsAnnual(loc.name).length }})
</div>
<div v-for="sub in locSubsAnnual(loc.name)" :key="sub.name"
class="sub-row clickable-row" :class="{ 'sub-rebate': isRebate(sub), 'sub-cancelled': sub.status === 'Cancelled' }">
<div class="row items-center no-wrap">
<div class="col" style="min-width:0">
<div class="row items-center no-wrap q-gutter-x-sm" @click="openModal('Service Subscription', sub.name)">
<code class="sub-sku">{{ sub.name }}</code>
<span class="sub-freq annual">A</span>
<span class="text-weight-medium ellipsis-text" style="flex:1;min-width:0">{{ subMainLabel(sub) }}</span>
<span class="sub-price" :class="{ 'text-red': isRebate(sub), 'text-weight-bold': !isRebate(sub) }">{{ formatMoney(annualPrice(sub)) }}</span>
<!-- Inline edit on the per-month base price — annual total recomputes from it. -->
<span class="sub-price-wrap text-caption text-grey-5" style="white-space:nowrap" @click.stop @dblclick.stop
:title="can('edit_records') ? 'Double-clic pour modifier le prix mensuel' : ''">
(<InlineField :value="sub.actual_price || 0"
field="monthly_price" doctype="Service Subscription" :docname="sub.name"
type="number" :formatter="formatMoney"
:readonly="!can('edit_records')"
@saved="onSubPriceSaved(sub, $event)" />/m&times;12)
</span>
</div>
<div class="row items-center q-pl-lg q-mt-xs q-gutter-x-md">
<div class="sub-meta">
<q-toggle size="xs" dense
:model-value="!Number(sub.cancel_at_period_end)"
@update:model-value="toggleRecurring(sub)"
:color="Number(sub.cancel_at_period_end) ? 'grey' : 'green'"
:disable="togglingRecurring === sub.name" />
<span class="text-caption" :class="Number(sub.cancel_at_period_end) ? 'text-grey-5' : 'text-green-7'">
{{ Number(sub.cancel_at_period_end) ? 'Non récurrent' : 'Récurrent' }}
</span>
<q-spinner v-if="togglingRecurring === sub.name" size="12px" class="q-ml-xs" />
</div>
<div v-if="sub.current_invoice_start" class="text-caption text-grey-6">
<q-icon name="event" size="12px" class="q-mr-xs" />
Prochaine: {{ formatDate(sub.current_invoice_start) }}
</div>
</div>
</div>
<div class="col-auto sub-actions">
<q-btn flat dense round size="xs" icon="event_repeat"
@click.stop="toggleFrequency(sub)" :loading="subSaving === sub.name + ':freq'">
<q-tooltip>Passer mensuel</q-tooltip>
</q-btn>
<q-btn flat dense round size="xs"
:icon="sub.status === 'Cancelled' ? 'play_circle' : 'cancel'"
:color="sub.status === 'Cancelled' ? 'green' : 'red'"
@click.stop="toggleSubStatus(sub)" :loading="subSaving === sub.name + ':status'">
<q-tooltip>{{ sub.status === 'Cancelled' ? 'Réactiver' : 'Désactiver' }}</q-tooltip>
</q-btn>
<q-btn v-if="can('delete_records')" flat dense round size="xs" icon="delete_outline" color="negative"
@click.stop="confirmDeleteSub(sub)">
<q-tooltip>Supprimer définitivement</q-tooltip>
</q-btn>
</div>
</div>
</div>
<div class="sub-total-line annual">
<span class="sub-total-label">Total annuel</span>
<span class="sub-total-amount">{{ formatMoney(locSubsAnnualTotal(loc.name)) }} /an</span>
</div>
</template>
</div>
<div class="q-mt-sm">
<div class="info-block-title" style="display:flex;align-items:center">
Tickets ({{ locTickets(loc.name).length }})
<q-btn flat dense round size="xs" icon="add" color="primary" class="q-ml-xs"
@click="openNewTicket(loc)" style="margin-top:-2px">
<q-tooltip>Créer un ticket pour cette adresse</q-tooltip>
</q-btn>
</div>
<!-- Rangée de ticket = composant CANONIQUE unique (TicketCard), réutilisé aussi
sur la fiche client et la table /tickets plus de rendu ad hoc divergent ici. -->
<TicketCard v-for="t in locTickets(loc.name)" :key="t.name" :ticket="t"
@open="openModal('Issue', t.name, t.subject)" />
</div>
</div>
</div>
</template>
<script setup>
// LocationCard — un « lieu de service » (adresse de livraison) : en-tête + bandeau
// appareils (DeviceStrip) + abonnements (mensuels/annuels, drag-drop) + tickets.
// Les sélecteurs/actions stateful (locSubs*, toggle*, onSub*) restent liés aux
// instances de composables du parent (useSubscriptionGroups/useSubscriptionActions)
// et sont passés en props-fonctions homonymes → le template les résout tel quel,
// comportement identique (mêmes closures, même invalidation de cache).
import InlineField from 'src/components/shared/InlineField.vue'
import DeviceStrip from 'src/components/customer/DeviceStrip.vue'
import TicketCard from 'src/components/customer/TicketCard.vue'
import draggable from 'vuedraggable'
import { formatMoney, formatDate } from 'src/composables/useFormatters'
import { locStatusClass } from 'src/composables/useStatusClasses'
import { isRebate, subMainLabel, sectionTotal, annualPrice } from 'src/composables/useSubscriptionGroups'
import { usePermissions } from 'src/composables/usePermissions'
import { locInlineFields } from 'src/data/client-constants'
const { can } = usePermissions()
defineProps({
loc: { type: Object, required: true },
highlightLoc: { type: String, default: null },
deletingLoc: { type: String, default: null },
subSaving: { type: String, default: null },
togglingRecurring: { type: String, default: null },
locCollapsed: { type: Object, required: true },
// ── Sélecteurs (instance useSubscriptionGroups du parent) ──
locHasSubs: { type: Function, required: true },
locEquip: { type: Function, required: true },
locSubs: { type: Function, required: true },
locSubsMonthly: { type: Function, required: true },
locSubsAnnual: { type: Function, required: true },
locSubsMonthlyTotal: { type: Function, required: true },
locSubsAnnualTotal: { type: Function, required: true },
locSubsSections: { type: Function, required: true },
sectionOpen: { type: Function, required: true },
locTickets: { type: Function, required: true },
// ── Actions (parent : composables + orchestration fiche) ──
toggleLocCollapse: { type: Function, required: true },
toggleSection: { type: Function, required: true },
onSubDragChange: { type: Function, required: true },
onSubPriceSaved: { type: Function, required: true },
toggleFrequency: { type: Function, required: true },
toggleSubStatus: { type: Function, required: true },
toggleRecurring: { type: Function, required: true },
confirmDeleteSub: { type: Function, required: true },
confirmDeleteLocation: { type: Function, required: true },
openNewTicket: { type: Function, required: true },
openModal: { type: Function, required: true },
openWizardForAddress: { type: Function, required: true },
openAddService: { type: Function, required: true },
openAddEquipment: { type: Function, required: true },
})
</script>
<style lang="scss" scoped>
.loc-card { border-left: 3px solid var(--ops-accent); transition: box-shadow 0.3s, border-left-color 0.3s; }
.loc-card.loc-inactive { border-left-color: #cbd5e1; opacity: 0.7; }
.loc-card.loc-inactive:hover { opacity: 0.9; }
/* loc-highlight: 2-second pulse when the page is opened from a
dispatch link with ?location=LOC-XXX, so the rep visually finds
the right Service Location among several. */
.loc-card.loc-highlight {
box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.45), 0 4px 18px rgba(99, 102, 241, 0.2);
border-left-color: #6366f1;
animation: loc-flash 1.4s ease-out;
}
@keyframes loc-flash {
0% { box-shadow: 0 0 0 6px rgba(99, 102, 241, 0.6), 0 6px 26px rgba(99, 102, 241, 0.4); }
100% { box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.45), 0 4px 18px rgba(99, 102, 241, 0.2); }
}
.loc-header { padding-bottom: 8px; border-bottom: 1px solid var(--ops-border); }
.info-block { background: #f8fafc; border-radius: 8px; padding: 10px 12px; }
.info-block-title { font-size: 0.75rem; font-weight: 700; color: var(--ops-text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.sub-row, .equip-row { padding: 6px 0; &:not(:last-child) { border-bottom: 1px solid #e2e8f0; } }
.sub-total-line { display: flex; align-items: center; justify-content: flex-end; gap: 12px; padding: 8px 0 4px; margin-top: 4px; border-top: 2px solid #334155; }
.sub-total-label { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; color: #334155; }
.sub-total-amount { font-size: 1rem; font-weight: 800; color: var(--ops-accent); min-width: 100px; text-align: right; }
.sub-total-line.annual { border-top: 2px solid #92400e; .sub-total-label { color: #92400e; } .sub-total-amount { color: #92400e; } }
.sub-total-neg { color: #dc2626 !important; }
.sub-total-warning { display: flex; align-items: center; justify-content: flex-end; gap: 4px; font-size: 0.78rem; color: #b91c1c; padding: 2px 0 6px; text-align: right; }
.sub-annual-divider { display: flex; align-items: center; gap: 6px; margin-top: 16px; padding: 8px 0 4px; border-top: 1px dashed #d97706; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: #92400e; }
.sub-section-header { display: flex; align-items: center; gap: 4px; padding: 6px 0 4px; cursor: pointer; user-select: none; &:hover { background: #f8fafc; } }
.sub-section-title { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: #334155; }
.sub-section-count { font-size: 0.75rem; color: #94a3b8; }
.sub-section-subtotal { margin-left: auto; font-size: 0.8rem; font-weight: 700; color: var(--ops-accent); }
.sub-ghost { opacity: 0.4; background: #e0f2fe; border-radius: 6px; }
.drag-handle:hover { color: #64748b !important; }
/* Rebate rows: nested visually under the service above via stronger indent +
smaller type. The left border + arrow-glyph treatment mirrors what shows up
on the invoice PDF so dispatchers can preview the print order. */
.sub-rebate {
padding-left: 32px; border-left: 2px solid #fca5a5; margin-left: 12px;
background: #fef2f2; border-radius: 0 6px 6px 0;
font-size: 0.85rem;
position: relative;
}
.sub-rebate::before {
content: '↳'; position: absolute; left: 12px; top: 6px;
font-size: 0.75rem; color: #ef4444; opacity: 0.7;
}
.sub-rebate .sub-sku { font-size: 0.55rem; width: 64px; min-width: 64px; max-width: 64px; }
.sub-rebate .sub-price { font-size: 0.8rem; }
.sub-cancelled { opacity: 0.5; text-decoration: line-through; }
.sub-actions { display: flex; gap: 2px; opacity: 0; transition: opacity 0.15s; }
.sub-row:hover .sub-actions { opacity: 1; }
.sub-sku { font-size: 0.6rem; font-weight: 400; color: #94a3b8; background: none; padding: 0; white-space: nowrap; display: inline-block; width: 72px; min-width: 72px; max-width: 72px; text-align: left; overflow: hidden; text-overflow: ellipsis; }
.sub-freq { font-size: 0.65rem; font-weight: 700; color: #9ca3af; &.annual { color: #92400e; background: #fef3c7; } background: #f1f5f9; border-radius: 3px; padding: 1px 4px; }
.sub-price { font-size: 0.85rem; white-space: nowrap; }
/* InlineField wraps the price in a <span>/<input>; force children to inherit
the row-level color so `.text-red` on the display span works for rebates
and the edit input picks up the same accent. */
.sub-price-wrap { display: inline-flex; align-items: center; }
.sub-price-wrap :deep(input) { color: inherit; text-align: right; max-width: 80px; }
.sub-rebate .sub-price-wrap, .sub-rebate .sub-price-wrap :deep(*) { color: #dc2626; }
.sub-meta { display: flex; align-items: center; gap: 2px; }
.ellipsis-text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ticket-row { padding: 4px 0; &:not(:last-child) { border-bottom: 1px solid #e2e8f0; } }
code { background: #e2e8f0; padding: 1px 4px; border-radius: 3px; font-size: 0.8rem; }
.clickable-row { cursor: pointer; transition: background 0.1s; border-radius: 6px; padding-left: 4px; padding-right: 4px; margin-left: -4px; margin-right: -4px; &:hover { background: #eef2ff; } }
.avatar-stack { display: flex; align-items: center; justify-content: center; }
.avatar-stack .avatar-chip { color: #fff; font-size: 9px; font-weight: 600; border: 1.5px solid #fff; margin-left: -8px; }
.avatar-stack .avatar-chip:first-child { margin-left: 0; }
</style>