/* conteneur */
#oral-test-root .oral-test { margin: 0 auto; }

/* texte prompt */
#oral-test-root #prompt { text-align:center; margin: 12px 0 16px; }

/* boutons centrés */
#oral-test-root .oral-test-actions{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin: 10px 0;
}

/* base boutons */
#oral-test-root .oral-test-actions button{
  padding:10px 18px;
  border-radius:6px;
  border:none;
  cursor:pointer;
}

/* bleu corporate (Débuter + Détails) */
#btnBegin, #btnDiag{
  background:#2979BF;
  color:#fff;
}

/* rouge danger */
#btnEnd{
  background:#d9534f;
  color:#fff;
}

/* disabled gris */
#oral-test-root button:disabled{
  background:#e0e0e0;
  color:#8a8a8a;
  cursor:not-allowed;
}
/* === Bouton PARLER : bleu quand actif === */
#oral-test-root #btnTalk:not(:disabled) {
  background: #2979BF;   /* bleu PMECDV */
  color: #ffffff;
}

/* Optionnel : petit feedback visuel */
#oral-test-root #btnTalk:not(:disabled):hover {
  background: #1f5f9a;
}
/* ============================================================
   RAPPORT FINAL – ORAL TEST
   Portée : #results uniquement
   ============================================================ */

#results {
  margin-top: 24px;
  padding: 20px 22px;
  background: #f9fbfd;
  border: 1px solid #dbe5ef;
  border-radius: 8px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #1f2d3d;
  line-height: 1.55;
}

/* Titre principal */
#results h3 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1.25rem;
  color: #0b5fa5; /* bleu PMECDV */
  border-bottom: 2px solid #e2edf7;
  padding-bottom: 6px;
}

/* Paragraphes */
#results p {
  margin: 10px 0 14px;
  font-size: 0.95rem;
}

/* Mots clés */
#results strong {
  color: #0b5fa5;
  font-weight: 600;
}

/* Listes */
#results ul {
  margin: 6px 0 16px 20px;
  padding: 0;
}

#results li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

/* Bloc disclaimer */
#results .disclaimer {
  margin-top: 18px;
  padding-top: 12px;
  font-size: 0.85rem;
  color: #6b7c93;
  border-top: 1px dashed #c9d6e4;
}

/* ============================================================
   Amélioration visuelle par sections (optionnel mais clean)
   ============================================================ */

/* Points forts */
#results ul:first-of-type li::marker {
  color: #2e7d32; /* vert discret */
}

/* Points à améliorer */
#results ul:last-of-type li::marker {
  color: #c62828; /* rouge doux */
}

/* Responsive léger */
@media (max-width: 640px) {
  #results {
    padding: 16px;
  }

  #results h3 {
    font-size: 1.15rem;
  }

  #results p,
  #results li {
    font-size: 0.9rem;
  }
  #status {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}
}