/* Corrige l'affichage du symbole "check" (✓) */
#tarteaucitronRoot .tarteaucitronAllow .tarteaucitronCheck::before, #tarteaucitronRoot .tarteaucitronDeny .tarteaucitronCross::before, #tarteaucitronRoot 
.tarteaucitronIsAllowed .tarteaucitronDeny .tarteaucitronCross::before {
    content: "" !important; /* ✓ */
    width: 16px;
    height: 16px;
    vertical-align: middle;
    display: inline-block !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' class='bi bi-check' viewBox='0 0 16 16'%3E%3Cpath d='M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425z'/%3E%3C/svg%3E");
    background-size: 16px 16px;
    font-family: inherit !important;
    font-size: 0 !important;
}

/* Corrige l'affichage du symbole "croix" (✗) */
#tarteaucitronRoot .tarteaucitronDeny .tarteaucitronCross::before,
#tarteaucitronRoot .tarteaucitronIsDenied .tarteaucitronDeny .tarteaucitronCross::before {
    content: "" !important; /* ✗ */
    width: 16px;
    height: 16px;
    vertical-align: middle;
    display: inline-block !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' class='bi bi-x' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
    background-size: 16px 16px;
    font-family: inherit !important;
    font-size: 0 !important;
}

/* Remplace l'icône "plus" avec un symbole Unicode (✛) */
#tarteaucitronRoot .tarteaucitronPlus::before {
    content: "" !important; /* ✛ */
    width: 16px;
    height: 16px;
    vertical-align: middle;
    display: inline-block !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4'/%3E%3C/svg%3E");
    background-size: 16px 16px;
    font-family: inherit !important;
    font-size: 0 !important;
}