/* completeness-surfacing.css — profile completeness on list cards + dashboard */
/* (v0.45.0). Adds the kind-color variants the metapill base never had, plus the  */
/* "needs contact" flag on going-dark rows. Additive; existing gray pills that     */
/* pass a kind now read with intent (warning = attention).                         */

/* metapill kind colors (base .rr-card-metapill is neutral gray; these tint by kind) */
.rr-card-metapill-warning{
  background:rgba(220,38,38,.10);
  color:#9A2A1E;
}
.rr-card-metapill-success{
  background:rgba(22,163,74,.12);
  color:#15803D;
}
.rr-card-metapill-info{
  background:rgba(37,99,235,.10);
  color:#1D4ED8;
}
/* neutral stays the default gray — the progress pill reads as quiet info */
.rr-card-metapill-neutral{
  background:#F4F1E8;
  color:#5F5E5A;
}

/* dashboard going-dark row: thin-profile flag */
.dh-row-flag{
  font-family:var(--font-mono,monospace);
  font-size:9.5px;font-weight:600;
  letter-spacing:.03em;text-transform:uppercase;
  padding:1px 7px;border-radius:7px;
  margin-left:8px;
  background:rgba(220,38,38,.10);
  color:#9A2A1E;
  white-space:nowrap;
}
