/* ==========================================================================
   BADGES — toutes les variantes de pastilles de statut de l'application
   ========================================================================== */

/* ── Statut générique (fiches Animal/Emplacement/Acte/Personne) ────────── */

.statut-badge {
    display: inline-block;
    padding: 2px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.statut-active,
.statut-payee,
.statut-en-cours,
.statut-occupe    { background: #dcfce7; color: #15803d; }

.statut-expiree,
.statut-annulee    { background: #fee2e2; color: #b91c1c; }

.statut-renouvellement,
.statut-en-attente,
.statut-deplace    { background: #fef3c7; color: #92400e; }

.statut-autre,
.statut-archive    { background: #f1f5f9; color: #475569; }

.statut-inhume     { background: #dbeafe; color: #1d4ed8; }
.statut-urne       { background: #ede9fe; color: #6d28d9; }
.statut-disperse   { background: #d1fae5; color: #065f46; }

/* ── Indicateur de statut (pages Admin) ─────────────────────────────────── */

.status-indicator {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 2px;
}

.status-active       { background-color: #E6F4EA; color: #137333; }
.status-inactive      { background-color: #FCE8E6; color: #C5221F; }
.status-expiry-soon   { background-color: #FFF3E0; color: #E65100; }

/* ── Badge de rôle (pages Admin) ─────────────────────────────────────────── */

.role-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-admin  { background-color: var(--primary-pastel); color: var(--primary); }
.badge-client { background-color: var(--secondary-pastel); color: var(--secondary); }
.badge-renew  { background-color: #E6F4EA; color: #137333; }

/* ── Texte discret utilisé en alternative à un badge (Non / Terminée) ──── */
.badge-texte-muet {
    opacity: 0.4;
    font-size: 0.8rem;
}
