/* Carte "Sante des donnees" du dashboard responsable. */

.dh-head {
  display: flex;
  align-items: center;
  font-weight: 700;
  margin-bottom: 8px;
}

.dh-row {
  display: flex;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.dh-label {
  min-width: 170px;
  display: inline-block;
}

.dh-value {
  color: #374151;
}

.dh-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 8px;
  background: #9ca3af;
  flex: 0 0 auto;
}

.dh-dot--ok { background: #16a34a; }
.dh-dot--attention { background: #d97706; }
.dh-dot--critical { background: #dc2626; }

.dh-foot {
  display: block;
  margin-top: 8px;
  color: #6b7280;
}

/* Page "Sante & KPIs dev" (reutilise les briques dh-* ci-dessus). */

.dh-head-main {
  font-size: 1.05rem;
}

.dh-section-title {
  margin: 18px 0 6px;
  font-size: 0.95rem;
  color: #111827;
}

.dh-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
  margin: 6px 0 4px;
}

.dh-kpi {
  display: flex;
  flex-direction: column;
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.02);
}

.dh-kpi-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
}

.dh-kpi-label {
  margin-top: 2px;
  font-size: 0.8rem;
  color: #6b7280;
}
