 
.comment-box {
    border: 1px solid #d1d5da;
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 12px;
    background-color: #f6f8fa;
}

.comment-header {
    font-weight: bold;
    color: #24292e;
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.comment-body {
    color: #24292e;
    font-size: 0.95rem;
    white-space: pre-wrap;
}

.message-error {
    background-color: #ffeef0;
    color: #86181d;
    padding: 8px 12px;
    border-radius: 4px;
    margin-bottom: 8px;
    display: none;
}

.message-success {
    background-color: #e6ffed;
    color: #22863a;
    padding: 8px 12px;
    border-radius: 4px;
    margin-bottom: 8px;
    display: none;
}


/* Boîte commentaire */
.commentaire-box {
    background-color: #f8f9fa;
    border-left: 4px solid #0d6efd;
    padding: 12px 16px;
    margin-bottom: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: background-color 0.2s;
}

.commentaire-box:hover {
    background-color: #e9ecef;
}

.commentaire-auteur {
    font-weight: bold;
    color: #0d6efd;
    margin-bottom: 4px;
}

.commentaire-texte {
    color: #212529;
    line-height: 1.4;
    word-wrap: break-word;
}

/* Messages succès/erreur */
.message-erreur, .message-succes {
    padding: 8px 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    display: none;
}

.message-erreur {
    background-color: #f8d7da;
    color: #842029;
}

.message-succes {
    background-color: #d1e7dd;
    color: #0f5132;
}
