/* Brief / commentaire tronqué : extrait + bouton « Voir tout » / « Réduire ».
   Généré par briefTronque() (modele/functions_globales.php), basculé par
   app-assets/js/brief-toggle.js.
   Bloc repris de app-assets/css/dashboard.css (2026-07-28) : il y est désormais
   commenté, cette feuille est chargée globalement depuis vue/header.php et
   vue/header-assistant-virtuel.php. */

.comment-container {
  transition: all 0.3s ease-in-out;
}

.btn-toggle-comment {
  background: #007bff;
  color: white;
  border: none;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  margin-left: 8px;
  transition: background-color 0.2s;
}

.btn-toggle-comment:hover {
  background: #0056b3;
}

.ellipsis {
  color: #666;
  font-weight: bold;
}

.comment-full {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
  }
}
