/* Exercice Minuscules – Films */
.emf-wrapper {
  border: 1px solid #e5e7eb;
  padding: 1rem;
  border-radius: 0.75rem;
  background: #fff;
  margin: 0 auto;     /* centrage */
  width: 50%;         /* réduit à 50% de la largeur */
}
.emf-title { margin-top: 0; font-size: 1.25rem; text-align: center; }
.emf-actions { display: flex; gap: .5rem; align-items: center; justify-content: center; margin-bottom: .5rem; flex-wrap: wrap; }
.emf-btn { padding: .5rem .75rem; border: 1px solid #cbd5e1; border-radius: .5rem; background: #f8fafc; cursor: pointer; }
.emf-btn:hover { background: #f1f5f9; }
.emf-score { margin-left: .5rem; font-weight: 600; }
.emf-table-wrap { overflow-x: auto; }
.emf-table { width: 100%; border-collapse: collapse; }
.emf-table th, .emf-table td { border: 1px solid #e5e7eb; padding: .5rem; vertical-align: middle; }
.emf-td-title { font-weight: 600; }
.emf-input { width: 100%; padding: .4rem .5rem; border: 1px solid #cbd5e1; border-radius: .375rem; }
.emf-input.is-correct { border-color: #16a34a; background: #f0fdf4; }
.emf-input.is-wrong { border-color: #dc2626; background: #fef2f2; }
.emf-status { display: inline-block; min-width: 1.25rem; text-align: center; }
.emf-status.is-correct { color: #16a34a; font-weight: 700; }
.emf-status.is-wrong { color: #dc2626; font-weight: 700; }
.emf-note { color: #64748b; font-size: .9rem; margin-top: .5rem; text-align: center; }
