/* Barra de rendimento — usada nos dashboards de desempenho
   (professor, diretor, secretário). */

.rendimento-bar {
  height: 8px;
  border-radius: 4px;
  background: var(--bg-main, #f1f1f5);
  overflow: hidden;
  min-width: 120px;
}

.rendimento-bar-fill {
  height: 100%;
  background: var(--bs-primary);
  width: 0;
  transition: width .4s ease;
}

.rendimento-bar-fill[data-faixa="alto"]   { background: #198754; }
.rendimento-bar-fill[data-faixa="medio"]  { background: #ffc107; }
.rendimento-bar-fill[data-faixa="baixo"]  { background: #dc3545; }

.rendimento-pct {
  min-width: 38px;
  text-align: right;
  color: var(--text-main, inherit);
  font-variant-numeric: tabular-nums;
}

/* Pré-visualização do enunciado nas tabelas de desempenho:
   colapsa parágrafos e remove margens para não quebrar a linha. */
.enunciado-cell p,
.enunciado-cell ul,
.enunciado-cell ol {
  margin: 0;
  display: inline;
}
.enunciado-cell img { display: none; }

