/* Fusion Hub detail-dialog 人工确认 widget (hub-verify.js).
 *
 * Stars = the logged-in user's own 1–5 confidence level, submitted via
 * 「人工确认」. The community aggregate ("N 人已确认") is display-only; the
 * catalog's automated confidenceFor tiers are untouched. Reuses hub.css design
 * tokens + button classes; this file only styles the verify widget + the
 * evidence-summary row added by hub-app.js openDetail.
 */

/* Catalog-derived 核验状态 summary row inside the "字段与核验状态" section. */
.detail-evidence-summary {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  margin: 0 0 0.75rem;
  color: var(--muted);
}
/* The .confidence-badge pill carries `margin-left: auto` (hub.css) so it sits
   flush right on cards; inside this summary row we want it next to the meta. */
.detail-evidence-summary .confidence-badge { margin-left: 0; }
.detail-evidence-meta { font-size: 0.74rem; }

.detail-verify-section { margin-top: 1.25rem; }
.detail-verify-section h3 { margin-bottom: 0.45rem; font-size: 1rem; }

.verify-row {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  flex-wrap: wrap;
}
.verify-label { font-size: 0.78rem; color: var(--muted); }

.verify-stars {
  display: inline-flex;
  gap: 0.1rem;
  padding: 0.18rem 0.4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}
.verify-star {
  appearance: none;
  border: 0;
  background: none;
  padding: 0 0.12rem;
  font-size: 1.15rem;
  line-height: 1;
  color: var(--line);
  cursor: pointer;
}
.verify-star:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}
.verify-star.is-hover,
.verify-star.is-active { color: var(--accent); }
.verify-stars[aria-disabled="true"] .verify-star { cursor: default; }

.verify-status { margin: 0.4rem 0 0; min-height: 1.2em; font-size: 0.74rem; color: var(--muted); }
.verify-status.is-error { color: var(--danger); }
.verify-status.is-success { color: var(--success); }

.verify-aggregate { margin: 0.5rem 0 0; font-size: 0.78rem; color: var(--muted); }
.verify-aggregate strong { color: var(--ink); }
.verify-empty { color: var(--muted); }
