/* afficher_commentaire_par_id() */
.commentaire {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 20px;
  flex-direction: column;
}

.commentaire-container {
  display: flex;
  flex-direction: row;
  gap: 8px;
  /* width: 100%; */
}

.commentaire-avatar {
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}

.commentaire-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.commentaire-details {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  /* gap: 8px; */
}

.commentaire-auteur {
  font-weight: bold;
}

/*.commentaire-date {
  margin-top: 5px;
}*/

.commentaire-contenu-style-1 {
  margin-top: 20px;
}

.commentaire-contenu-style-2 {
  display: block;
}

.commentaire-error {
  color: red;
  font-weight: bold;
}
