/* --- VARIABLES UNIFIÉES --- */
:root {
    --primary-green: #4CAF50;
    --secondary-green: #388E3C;
    --light-green: #E8F5E9;
    --text-dark: #333;
    --text-medium: #555;
    --border-light: #ddd;
    --placeholder-color: #999;
    --main-color: #4CAF50;
    --secondary-color: #388E3C;
    --bg-color: #f4f4f4;
    --shadow: 0 5px 15px rgba(0,0,0,0.08);
}

#contact-page {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding: 60px 0;
    /* Pour éviter le scroll horizontal sur mobile */
    box-sizing: border-box;
    overflow-x: hidden;
}

/* --- HEADER --- */
.contact-header {
    text-align: center;
    margin-bottom: 50px;
}
.contact-header h2 {
    color: var(--primary-green);
    font-size: 3em;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s;
}
.contact-header h2:hover {
    color: var(--secondary-green);
}
.contact-header p {
    color: var(--text-medium);
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* --- CONTENT LAYOUT --- */
.contact-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 2vw;
}
.contact-form-card, .contact-info-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 35px;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 30px auto;
    transition: box-shadow 0.3s, transform 0.2s;
}
.contact-form-card:hover, .contact-info-card:hover {
    box-shadow: 0 8px 24px rgba(76,175,80,0.18);
    transform: translateY(-2px) scale(1.02);
}
.contact-form-card { flex: 2; }
.contact-info-card { flex: 1; }

/* --- CARD HEADER --- */
.card-header, .card-header-hours, .card-header-team, .card-header-offices {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 20px;
}
.card-header i, .card-header-hours i, .card-header-team i, .card-header-offices i {
    font-size: 1.8em;
    color: var(--primary-green);
    margin-right: 15px;
    background-color: var(--light-green);
    padding: 12px;
    border-radius: 50%;
}
.card-header h3, .card-header-hours h3, .card-header-team h3, .card-header-offices h3 {
    color: var(--text-dark);
    font-size: 1.7em;
    margin: 0;
    font-weight: 600;
}

/* --- FORMULAIRE --- */
#contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
#contact-form .form-group {
    flex: 1;
    margin-bottom: 0;
}
#contact-form .form-group.full-width {
    flex: none;
    width: 100%;
    margin-bottom: 20px;
}
#contact-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95em;
}
#contact-form input, #contact-form select, #contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 1em;
    color: var(--text-dark);
    background-color: var(--light-green);
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}
#contact-form input:focus, #contact-form select:focus, #contact-form textarea:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(76,175,80,0.15);
    outline: none;
}
#contact-form input::placeholder, #contact-form textarea::placeholder {
    color: var(--placeholder-color);
}
#contact-form textarea {
    resize: vertical;
    min-height: 120px;
}
#contact-form button {
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 20px;
    width: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 8px rgba(76,175,80,0.08);
}
#contact-form button:hover {
    background: linear-gradient(90deg, var(--secondary-green), var(--primary-green));
    transform: translateY(-2px) scale(1.04);
}

/* --- FEEDBACK MESSAGE --- */
.feedback-message {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    border-radius: 5px;
    font-size: 0.95em;
    display: none;
    transition: opacity 0.3s;
}
.feedback-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.feedback-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* --- INFO --- */
.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}
.info-item:last-child { margin-bottom: 0; }
.info-item i {
    font-size: 1.5em;
    color: var(--primary-green);
    margin-right: 20px;
    min-width: 30px;
    text-align: center;
    padding-top: 5px;
}
.info-item h4 {
    color: var(--text-dark);
    font-size: 1.1em;
    margin: 0 0 5px 0;
    font-weight: 600;
}
.info-item p {
    color: var(--text-medium);
    margin: 0;
    line-height: 1.5;
    font-size: 0.95em;
}

/* --- HEURES D'OUVERTURE --- */
.contact-footer {
    display: flex;
    justify-content: center;
    width: 100vw;
    max-width: 100vw;
    margin-top: 30px;
    padding-left: 2vw;
    padding-right: 2vw;
}
.opening-hours-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 35px;
    width: 100%;
    max-width: 1130px;
}
.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed var(--border-light);
}
.hour-item:last-child { border-bottom: none; padding-bottom: 0; }
.hour-label h4 {
    color: var(--text-dark);
    font-size: 1em;
    font-weight: 600;
    margin: 0;
}
.detail-label {
    color: var(--text-medium);
    font-size: 0.9em;
    margin: 3px 0 0 0;
}
.hour-time {
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95em;
    text-align: center;
    min-width: 100px;
    box-shadow: 0 1px 4px rgba(76,175,80,0.07);
}
.time-open { background-color: var(--light-green); color: var(--primary-green); }
.time-closed { background-color: #FEEEEE; color: #C62828; }
.time-appointment { background-color: #FFF3E0; color: #FF8F00; }

/* --- Variables de Thème Vert Clair (Référence) --- */
:root {
    --primary-color: #388E3C;   /* Vert foncé */
    --secondary-color: #4CAF50; /* Vert moyen */
    --light-bg: #E8F5E9;        /* Vert très clair pour les fonds de cartes */
    --lighter-bg: #F9FCF8;      /* Vert encore plus clair pour le fond de page */
    --text-dark: #333;
    --text-medium: #555;
    --border-light: #ddd;
    --blue-bamako: #E3F2FD;     /* Bleu très clair pour le bureau de Bamako */
    --blue-dark: #1E88E5;       /* Bleu foncé pour le texte de Bamako */
}

/* --- Styles Généraux de la Section --- */
#contact-management-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white; /* Le fond de page semble blanc dans le design global */
}

.section-title-icon {
    font-size: 1.8em;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.section-title-icon i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.2em;
}

/* --- SECTION 1: BUREAU EXÉCUTIF --- */
.management-section {
    margin-bottom: 60px;
}

.bureau-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.member-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    padding: 30px 20px;
    text-align: center;
    flex: 1 1 calc(25% - 20px); /* 4 cartes par ligne */
    min-width: 200px;
    border: 1px solid var(--border-light);
}

.member-icon-circle {
    width: 60px;
    height: 60px;
    background-color: var(--light-bg); /* Vert très clair */
    border-radius: 50%;
    margin: 0 auto 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-icon-circle i {
    color: var(--secondary-color); /* Vert moyen */
    font-size: 1.5em;
}
.member-icon-circle i img{
    height: 100px;
    width: 100px;
    border-radius: 300%;
}

.member-name {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--primary-color); /* Vert foncé */
    margin: 0 0 5px 0;
}

.member-role {
    color: var(--text-medium);
    font-size: 0.9em;
    margin-bottom: 20px;
}

.member-contact-info {
    border-top: 1px solid #eee;
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-line {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9em;
}

.contact-line i {
    margin-right: 8px;
    font-size: 1em;
}

.contact-line a {
    text-decoration: none;
    color: var(--text-medium);
    transition: color 0.2s;
}

.contact-line a:hover {
    color: var(--secondary-color);
}

.phone-icon {
    color: var(--secondary-color);
}

.email-icon {
    color: var(--secondary-color);
}

/* --- SECTION 2: NOS BUREAUX --- */
.offices-section {
    padding-top: 30px;
}

.offices-info-container {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.office-card {
    border-radius: 12px;
    padding: 30px;
    flex: 1 1 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.office-banka {
    background-color: var(--light-bg); /* Vert très clair */
}

.office-bamako {
    background-color: var(--blue-bamako); /* Bleu très clair */
}

.office-title {
    font-size: 1.3em;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
}

/* Texte spécifique pour Bamako */
.office-bamako .office-title,
.office-bamako strong {
    color: var(--blue-dark); /* Texte en bleu foncé */
}

/* Texte spécifique pour Banka */
.office-banka .office-title,
.office-banka strong {
    color: var(--primary-color); /* Texte en vert foncé */
}

.office-details-grid p {
    margin: 8px 0;
    color: var(--text-medium);
    line-height: 1.4;
}

.office-details-grid strong {
    font-weight: 600;
    margin-right: 5px;
}

/* Carte Interactive */
.map-interactive-container {
    background-color: var(--light-bg); /* Vert très clair */
    border: 3px dashed rgba(76, 175, 80, 0.5); /* Bordure en pointillé vert */
    border-radius: 12px;
    text-align: center;
    padding: 40px 20px;
}

.map-pin-icon {
    width: 70px;
    height: 70px;
    background-color: white;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map-pin-icon i {
    color: var(--secondary-color); /* Vert moyen */
    font-size: 2em;
}

.map-title {
    font-size: 1.2em;
    font-weight: 600;
    color: var(--text-dark);
    margin: 5px 0 0 0;
}

.map-subtitle {
    color: var(--secondary-color); /* Vert moyen */
    font-size: 0.9em;
    font-weight: 500;
    margin-top: 5px;
}

/* --- RESPONSIVITÉ --- */
@media (max-width: 1024px) {
    .bureau-grid {
        justify-content: center;
    }
    .member-card {
        flex: 1 1 calc(50% - 20px); /* 2 cartes par ligne */
    }
}

@media (max-width: 768px) {
    .offices-info-container {
        flex-direction: column; /* Bureaux en colonne */
        gap: 20px;
    }
    .office-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 600px) {
    .member-card {
        flex: 1 1 100%; /* 1 carte par ligne */
    }
    .section-title-icon {
        font-size: 1.5em;
    }
}
/* --- QUICK HELP & SUGGESTIONS --- */
.comments-and-suggestions-container {
    max-width: 1200px;
    margin: 50px auto 50px auto;
    padding: 0 20px;
    width: 100vw;
    max-width: 100vw;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
}
.quick-help-block {
    background: linear-gradient(90deg, #1E8C3D 0%, #4CAF50 100%);
    color: white;
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s, transform 0.2s;
}
.quick-help-block:hover {
    box-shadow: 0 8px 24px rgba(76,175,80,0.18);
    transform: scale(1.02);
}
.help-icon-circle {
    width: 60px;
    height: 60px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.help-icon-circle i { color: white; font-size: 2em; }
.quick-help-block h3 { font-size: 1.8em; font-weight: 700; margin: 0 0 10px 0; }
.quick-help-block p { font-size: 1em; max-width: 700px; margin: 0 auto 30px auto; line-height: 1.6; }
.help-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: var(--primary-green);
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: background-color 0.3s, transform 0.2s;
}
.help-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-1px) scale(1.04);
}
.help-button i { margin-right: 10px; color: var(--primary-green); font-size: 1.2em; }

/* --- SUGGESTIONS SECTION --- */
.suggestions-section-header {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}
.suggestions-title {
    color: var(--primary-green);
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 10px;
}
.suggestions-subtitle {
    font-size: 1.1em;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto 30px auto;
}
.comment-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-green);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.2s;
}
.comment-button:hover {
    background-color: #43A047;
    box-shadow: 0 4px 8px rgba(76,175,80,0.13);
    transform: scale(1.04);
}
.comment-button i { margin-right: 10px; font-size: 1.1em; }

/* --- COMMENTAIRES --- */
.comments-list-container {
    max-width: 900px;
    margin: 50px auto 100px auto;
    padding: 0 20px;
    width: 100vw;
    max-width: 100vw;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
}
.comment-item {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    padding: 30px;
    margin-bottom: 30px;
    transition: box-shadow 0.3s, transform 0.2s;
}
.comment-item:hover {
    box-shadow: 0 8px 24px rgba(76,175,80,0.13);
    transform: scale(1.02);
}
.comment-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.user-info {
    display: flex;
    align-items: center;
}
.user-icon {
    width: 40px;
    height: 40px;
    background-color: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}
.user-icon i { color: var(--primary-green); font-size: 1.2em; }
.user-name {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}
.comment-meta {
    display: flex;
    align-items: center;
    font-size: 0.85em;
    color: var(--text-medium);
}
.comment-date { margin-right: 10px; }
.comment-tag {
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.75em;
    white-space: nowrap;
}
.tag-suggestion { background-color: #E6EEF9; color: #42A5F5; }
.tag-question { background-color: #FFF3E0; color: #FFB300; }
.comment-status {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.9em;
    display: flex;
    align-items: center;
}
.comment-status i { margin-right: 5px; }
.comment-text {
    font-size: 1em;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 10px 0 20px 55px;
}
.team-response-block {
    background-color: var(--light-green);
    border-left: 5px solid var(--primary-green);
    padding: 15px 20px;
    border-radius: 8px;
    margin-left: 55px;
}
.response-header {
    font-weight: 600;
    color: var(--primary-green);
    font-size: 0.85em;
    margin: 0 0 5px 0;
}
.response-text {
    font-size: 0.95em;
    color: var(--text-medium);
    margin: 0;
    line-height: 1.5;
}

/* --- FORMULAIRE FLOTTANT COMMENTAIRE --- */
.comment-modal-bg {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(44, 62, 80, 0.45);
    z-index: 1000;
    display: none;
    transition: opacity 0.3s;
}
.comment-modal-bg.active {
    display: block;
    opacity: 1;
}

.comment-modal {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.18);
    z-index: 1001;
    min-width: 320px;
    max-width: 95vw;
    width: 400px;
    padding: 0;
    display: none;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
}
.comment-modal.active {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.comment-modal-content {
    padding: 32px 24px 24px 24px;
    position: relative;
}

.comment-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    font-size: 2em;
    color: var(--primary-green);
    cursor: pointer;
    transition: color 0.2s;
}
.comment-modal-close:hover {
    color: var(--secondary-green);
}

.comment-modal h3 {
    margin-top: 0;
    margin-bottom: 18px;
    color: var(--primary-green);
    font-size: 1.4em;
    text-align: center;
    font-weight: 700;
}

#floating-comment-form .form-group {
    margin-bottom: 18px;
}
#floating-comment-form label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
    display: block;
}
#floating-comment-form input,
#floating-comment-form select,
#floating-comment-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-light);
    border-radius: 7px;
    font-size: 1em;
    background: var(--light-green);
    color: var(--text-dark);
    transition: border-color 0.3s;
    box-sizing: border-box;
}
#floating-comment-form input:focus,
#floating-comment-form select:focus,
#floating-comment-form textarea:focus {
    border-color: var(--primary-green);
    outline: none;
}
#floating-comment-form textarea {
    resize: vertical;
    min-height: 80px;
}
.comment-modal-submit {
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
    color: white;
    padding: 12px 0;
    border: none;
    border-radius: 7px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(76,175,80,0.08);
}
.comment-modal-submit:hover {
    background: linear-gradient(90deg, var(--secondary-green), var(--primary-green));
    transform: scale(1.03);
}

#floating-comment-feedback {
    margin-top: 12px;
    font-size: 0.95em;
    display: none;
}

/* Responsive pour le modal */
@media (max-width: 480px) {
    .comment-modal {
        width: 95vw;
        min-width: 0;
        padding: 0;
    }
    .comment-modal-content {
        padding: 18px 8px 16px 8px;
    }
}

/* --- RESPONSIVE --- */
@media (max-width: 1200px) {
    #contact-page, .team-and-offices-container, .comments-and-suggestions-container {
        max-width: 100vw;
        padding: 0 10px;
    }
}
@media (max-width: 992px) {
    #contact-page,
    .contact-content,
    .comments-and-suggestions-container,
    .team-and-offices-container,
    .comments-list-container,
    .contact-footer,
    .opening-hours-card,
    .offices-location-card,
    .executive-team-card {
        width: 100vw;
        max-width: 100vw;
        padding-left: 0;
        padding-right: 0;
    }
    .contact-form-card,
    .contact-info-card,
    .opening-hours-card,
    .offices-location-card,
    .executive-team-card {
        max-width: 100vw;
        margin-left: 0;
        margin-right: 0;
    }
    .comments-list-container {
        padding-left: 0;
        padding-right: 0;
    }
}
@media (max-width: 768px) {
    .contact-header h2 { font-size: 2.5em; }
    .contact-header p { font-size: 1em; }
    #contact-form .form-row { flex-direction: column; gap: 0; }
    #contact-form .form-group { margin-bottom: 20px; }
    .contact-form-card, .contact-info-card, .opening-hours-card { padding: 25px; }
    .card-header i, .card-header-hours i, .card-header-team i, .card-header-offices i { font-size: 1.5em; padding: 10px; }
    .card-header h3, .card-header-hours h3, .card-header-team h3, .card-header-offices h3 { font-size: 1.5em; }
    .offices-details-container { flex-direction: column; gap: 20px; padding-left: 0; }
    .office-title { text-align: center; }
}
@media (max-width: 600px) {
    .quick-help-block { padding: 30px 15px; }
    .quick-help-block h3 { font-size: 1.5em; }
    .help-button { font-size: 1em; padding: 10px 20px; }
    .suggestions-title { font-size: 1.8em; }
    .suggestions-subtitle { font-size: 1em; }
    .member-card { flex: 1 1 100%; max-width: 100%; }
    .card-header-team h3, .card-header-offices h3 { font-size: 1.5em; }
    .offices-list { flex-direction: column; padding-left: 0; }
    .comment-item { padding: 20px; }
    .comment-header-row { flex-direction: column; align-items: flex-start; }
    .comment-status { margin-top: 10px; }
    .comment-text, .team-response-block { margin-left: 0; }
    .user-icon { width: 35px; height: 35px; }
    .user-icon i { font-size: 1em; }
}
@media (max-width: 480px) {
    #contact-page { padding: 40px 10px; }
    .contact-header h2 { font-size: 2em; }
    .contact-header p { font-size: 0.9em; }
    .contact-form-card, .contact-info-card, .opening-hours-card { padding: 15px; }
    #contact-form button { padding: 12px 20px; font-size: 1em; }
    .hour-item { flex-direction: column; align-items: flex-start; }
    .hour-time { margin-top: 5px; }
}

.member-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%; /* cercle */
}
.member-icon-circle {
    width: 100px;
    height: 100px;
    padding: 0;
}
.tag-suggestion {
    background: #e3f2fd;
    color: #1565c0;
}

.tag-question {
    background: #fff3e0;
    color: #ef6c00;
}

.tag-avis {
    background: #e8f5e9;
    color: #2e7d32;
}
.status-sent {
    color: #1565c0; /* bleu = envoyé */
}

.status-approved {
    color: #2e7d32; /* vert = approuvé */
}
.status-rejected {
    color: #c62828; /* rouge = rejeté */
}
.admin-reply {
    background-color: #d4edda; /* vert clair */
    border-left: 4px solid #28a745; /* accent vert */
    padding: 10px 15px;
    margin-top: 10px;
    border-radius: 5px;
    color: #155724;
    font-size: 14px;
}
