/* VocabFR Numbers — inherits the theme look and only adds small helpers. */
#vocabfr-numbers-shell {
  font-family: inherit;
  font-size: inherit;
}
#vocabfr-numbers-shell .numbers-kicker {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:12px;
}
#vocabfr-numbers-shell .numbers-chip {
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  background: var(--surface2, #f5f6fb);
  border:1px solid var(--border, rgba(0,0,0,.08));
  color: var(--text, #1a1d2e);
  font-size:.8rem;
  font-weight:700;
}
#vocabfr-numbers-shell .numbers-grid {
  display:grid;
  gap:12px;
}
#vocabfr-numbers-shell .numbers-grid.cols-2 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
#vocabfr-numbers-shell .numbers-grid.cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
#vocabfr-numbers-shell .numbers-mini-card {
  border:1px solid var(--border, rgba(0,0,0,.08));
  border-radius: 14px;
  padding: 14px;
  background: var(--surface2, #f8f9fe);
  box-shadow: var(--shadow-sm, none);
}
#vocabfr-numbers-shell .numbers-question-title {
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.35;
  margin-bottom: 8px;
  color: var(--text, #1a1d2e);
}
#vocabfr-numbers-shell .numbers-muted {
  opacity: .8;
  font-size: .92rem;
  line-height: 1.4;
}
#vocabfr-numbers-shell .numbers-progress {
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--surface2, #f3f4f6);
}
#vocabfr-numbers-shell .numbers-progress > div {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--blue, #4f63d2);
}
#vocabfr-numbers-shell .numbers-section-title {
  font-weight: 800;
  font-size: .95rem;
  margin-bottom: 10px;
}
#vocabfr-numbers-shell .numbers-result-list {
  display:grid;
  gap:8px;
  text-align:left;
}
#vocabfr-numbers-shell .numbers-result-row {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  padding:8px 0;
  border-bottom:1px solid var(--border, rgba(0,0,0,.08));
}
#vocabfr-numbers-shell .numbers-result-row:last-child {
  border-bottom:0;
  padding-bottom:0;
}
#vocabfr-numbers-shell .numbers-badge {
  display:inline-flex;
  align-items:center;
  gap:4px;
  padding:2px 9px;
  border-radius:999px;
  font-size:.72rem;
  font-weight:700;
  background: var(--surface2, #f5f6fb);
  border:1px solid var(--border, rgba(0,0,0,.08));
}
#vocabfr-numbers-shell .numbers-badge.good { background: rgba(22,163,74,.1); color: var(--green, #16a34a); }
#vocabfr-numbers-shell .numbers-badge.bad { background: rgba(225,29,72,.1); color: var(--rose, #e11d48); }
#vocabfr-numbers-shell .numbers-badge.warn { background: rgba(217,119,6,.1); color: var(--amber, #d97706); }
#vocabfr-numbers-shell .numbers-choice-grid {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap:10px;
}
#vocabfr-numbers-shell .numbers-choice-grid .btn.active {
  background: var(--blue, #4f63d2);
  color:#fff;
  border-color: var(--blue, #4f63d2);
}
#vocabfr-numbers-shell .numbers-focus-panel {
  display:grid;
  gap:10px;
}
#vocabfr-numbers-shell .numbers-focus-card {
  border:1px solid var(--border, rgba(0,0,0,.08));
  border-radius: 14px;
  background: var(--surface, #fff);
  padding:14px;
}
#vocabfr-numbers-shell .numbers-focus-card strong {
  display:block;
  margin-bottom:4px;
}
