/*  -----------------------------
*   Plugin BC' Params
*   V1.7 241217 12000
*   previous V1.3 ?
*   ----------------------------- */

.bcz-footer-branding{
    text-align:center;
}

/* Styles généraux pour toutes les notifications */
.notice {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1em;
    margin: 1em 0;
    border-radius: 5px;
    /*font-family: Arial, sans-serif;*/
    font-size: 1em;
    line-height: 1.5;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.notice .content {
    display: inline;
}

/* Icône à gauche */
.notice::before {
    content: '\f06a'; /* Par défaut : icône info-circle de FontAwesome */
    font-family: 'Font Awesome 5 Free'; /* Assurez-vous que FontAwesome est inclus */
    font-weight: 900; /* Pour les icônes solides */
    margin-right: 1em;
    font-size: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2em;
    height: 2em;
    border-radius: 50%;
    text-align: center;
}

/* Notifications de succès */
.notice.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.notice.success::before {
    content: '\f058'; /* Icône check-circle */
    background-color: #28a745;
    color: white;
}

/* Notifications d'erreur */
.notice.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.notice.error::before {
    content: '\f057'; /* Icône times-circle */
    background-color: #dc3545;
    color: white;
}

/* Notifications d'alerte */
.notice.alert {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}
.notice.alert::before {
    content: '\f071'; /* Icône exclamation-triangle */
    background-color: #ffc107;
    color: white;
}

/* Notifications d'information */
.notice.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}
.notice.info::before {
    content: '\f05a'; /* Icône info-circle */
    background-color: #17a2b8;
    color: white;
}

