p.text-primary.mb-0.text-color-gris {
    color: blueviolet !important;
}


/* 1. On attrape le conteneur volant et on le force en haut à droite */


/* 2. On nettoie les textes à l'intérieur pour qu'ils soient parfaits */
div[class*="notifier"] h5, 
div[class*="notifier"] .notifier-title,
div[id*="notifier"] strong {
    font-weight: 700 !important;
    color: #1d2630 !important;
    display: block !important;
    margin-bottom: 4px !important;
}

div[class*="notifier"] p, 
div[class*="notifier"] .notifier-message,
div[id*="notifier"] span {
    color: #5b6b79 !important;
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    display: block !important;
}

/* =========================================================================
   SÉCURITÉ ANTI-BLOCS DE NOTIFICATION FANTÔMES
   ========================================================================= */

/* Si le conteneur principal ou un bloc de notification est vide, on l'efface à 100% */
#notifier-container:empty,
.notifier-container:empty,
[class*="notifier"]:empty {
    display: none !important;
    padding: 0 !important;
    margin: 0 !important;
    height: 0 !important;
    border: none !important;
    box-shadow: none !important;
}


/* =========================================================================
   ANTI-EMPILLEMENT : UNE SEULE NOTIFICATION MAXIMUM À L'ÉCRAN
   ========================================================================= */

/* On cible tous les blocs enfants du conteneur, sauf le tout premier */
#notifier-container > div:not(:first-child) {
    display: none !important;
}