/* ===== Panel del Coordinador ===== */
.filters{
  display:grid; gap:12px;
  grid-template-columns: repeat(4,1fr);
  margin-bottom:16px;
}
.kpi{ display:flex; align-items:center; justify-content:space-between }
.kpi .val{ font-size:1.8rem; font-weight:800 }
.kpi .hint{ color:var(--dav-muted) }

/* Sección gráfica (Chart.js) */
.chart-wrap{
  width:100%; max-width:100%;
  overflow:auto; padding-bottom:6px;
  border-radius:12px;
  border:1px dashed rgba(255,255,255,.08);
}

/* Títulos de sección */
.section-head{ display:flex; justify-content:space-between; align-items:flex-end }
.section-head small{ color:var(--dav-muted) }

@media (max-width:900px){
  .filters{ grid-template-columns:1fr 1fr }
}
