/* ─── Design tokens ──────────────────────────────────────────────────────── */
:root {
  --purple:       #3C3489;
  --purple-light: #7F77DD;
  --purple-pale:  #EEEDFE;
  --teal:         #0F6E56;
  --teal-light:   #1D9E75;
  --teal-pale:    #E1F5EE;
  --coral:        #D85A30;
  --coral-pale:   #FAECE7;
  --amber:        #BA7517;
  --amber-pale:   #FAEEDA;
  --gray-900:     #2C2C2A;
  --gray-700:     #5F5E5A;
  --gray-400:     #888780;
  --gray-100:     #D3D1C7;
  --gray-50:      #F1EFE8;
  --white:        #FFFFFF;
  --radius:       12px;
  --radius-sm:    8px;
  --shadow:       0 2px 12px rgba(60,52,137,0.08);
  --shadow-lg:    0 8px 32px rgba(60,52,137,0.13);
}

/* ─── Reset & base ───────────────────────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gray-900);
  background: #f7f6f2;
  min-height: 100vh;
}

/* ─── Header ─────────────────────────────────────────────────────────────── */
header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo {
  font-family: 'Lora', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--purple);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links { display: flex; gap: 8px; }
.nav-btn {
  padding: 6px 14px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  background: var(--white);
  color: var(--gray-700);
  transition: all .15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-btn:hover { background: var(--gray-50); border-color: var(--gray-400); }

/* ─── Pages ──────────────────────────────────────────────────────────────── */
.page { display: none; }
.page.active { display: block; }
.container      { max-width: 760px;  margin: 0 auto; padding: 2.5rem 1.5rem; }
.container-wide { max-width: 960px;  margin: 0 auto; padding: 2.5rem 1.5rem; }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero { text-align: center; padding: 4rem 2rem 3rem; max-width: 620px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--purple-pale);
  color: var(--purple);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}
.hero h1 { font-family: 'Lora', serif; font-size: 40px; font-weight: 600; line-height: 1.2; margin-bottom: 1rem; }
.hero p  { font-size: 17px; color: var(--gray-700); line-height: 1.7; margin-bottom: 2rem; }
.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 2.5rem;
  text-align: left;
}
.hero-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.5rem;
  cursor: pointer;
  transition: all .2s;
  box-shadow: var(--shadow);
}
.hero-card:hover { border-color: var(--purple-light); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.hero-card .card-icon {
  width: 44px; height: 44px;
  background: var(--purple-pale);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple);
  font-size: 20px;
  margin-bottom: 12px;
}
.hero-card h3 { font-family: 'Lora', serif; font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.hero-card p  { font-size: 13px; color: var(--gray-700); line-height: 1.5; }

/* ─── Card ───────────────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
}
.card-title {
  font-family: 'Lora', serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 1.25rem;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-50);
  display: flex; align-items: center; gap: 8px;
}
.card-title i { color: var(--purple); }

/* ─── Page header ────────────────────────────────────────────────────────── */
.page-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-header h2 { font-family: 'Lora', serif; font-size: 20px; font-weight: 600; }

/* ─── Forms ──────────────────────────────────────────────────────────────── */
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: 13px; font-weight: 500; color: var(--gray-700); margin-bottom: 5px; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color .15s;
  outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--purple-light);
  box-shadow: 0 0 0 3px rgba(127,119,221,0.12);
}
.field textarea { resize: vertical; min-height: 90px; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  background: var(--white);
  color: var(--gray-900);
  transition: all .15s;
}
.btn:hover    { background: var(--gray-50); border-color: var(--gray-400); }
.btn:active   { transform: scale(0.98); }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn-primary { background: var(--purple); color: var(--white); border-color: var(--purple); }
.btn-primary:hover { background: #26215C; border-color: #26215C; color: var(--white); }
.btn-success { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-success:hover { background: #085041; border-color: #085041; color: var(--white); }
.btn-sm { padding: 6px 12px; font-size: 13px; }

/* ─── Alerts ─────────────────────────────────────────────────────────────── */
.alert {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.alert i { margin-top: 1px; flex-shrink: 0; }
.alert-success { background: var(--teal-pale);  color: #085041; border: 1px solid #9FE1CB; }
.alert-warn    { background: var(--amber-pale);  color: #633806; border: 1px solid #FAC775; }
.alert-error   { background: var(--coral-pale);  color: #712B13; border: 1px solid #F5C4B3; }

/* ─── Code box ───────────────────────────────────────────────────────────── */
.code-box {
  background: var(--purple-pale);
  border: 1px solid #AFA9EC;
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  margin: 1rem 0;
}
.code-label { font-size: 12px; color: var(--purple); font-weight: 500; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.code-value { font-family: 'Lora', serif; font-size: 32px; font-weight: 600; letter-spacing: 10px; color: var(--purple); }

/* ─── Progress ───────────────────────────────────────────────────────────── */
.progress-wrap  { margin-bottom: 1.5rem; }
.progress-info  { display: flex; justify-content: space-between; font-size: 12px; color: var(--gray-400); margin-bottom: 6px; }
.progress-bar   { height: 4px; background: var(--gray-100); border-radius: 2px; }
.progress-fill  { height: 4px; background: linear-gradient(90deg, var(--purple), var(--purple-light)); border-radius: 2px; transition: width .4s ease; }

/* ─── Survey ─────────────────────────────────────────────────────────────── */
.theme-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500;
  background: var(--purple-pale); color: var(--purple);
  padding: 4px 12px; border-radius: 20px; margin-bottom: 1rem;
}
.question-block { margin-bottom: 1.5rem; }
.question-text  { font-size: 15px; line-height: 1.6; margin-bottom: 10px; }
.scale-row      { display: flex; gap: 8px; flex-wrap: wrap; }
.scale-btn {
  width: 42px; height: 42px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500;
  cursor: pointer;
  background: var(--white); color: var(--gray-700);
  transition: all .15s;
  font-family: inherit;
}
.scale-btn:hover    { border-color: var(--purple-light); color: var(--purple); }
.scale-btn.selected { background: var(--purple); border-color: var(--purple); color: var(--white); }
.scale-labels {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--gray-400); margin-top: 5px; max-width: 250px;
}

/* ─── Stats ──────────────────────────────────────────────────────────────── */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 10px; margin-bottom: 1.25rem; }
.stat-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius); padding: 1rem 1.25rem; text-align: center; box-shadow: var(--shadow);
}
.stat-num   { font-family: 'Lora', serif; font-size: 26px; font-weight: 600; color: var(--purple); }
.stat-label { font-size: 12px; color: var(--gray-400); margin-top: 2px; }
.stat-card.teal  .stat-num { color: var(--teal); }
.stat-card.coral .stat-num { color: var(--coral); }

/* ─── Church list ────────────────────────────────────────────────────────── */
.church-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--gray-50); gap: 12px;
}
.church-row:last-child { border-bottom: none; }
.church-name { font-weight: 500; font-size: 15px; margin-bottom: 3px; }
.church-meta { font-size: 12px; color: var(--gray-400); }
.response-count {
  font-size: 12px; background: var(--purple-pale); color: var(--purple);
  padding: 3px 10px; border-radius: 20px; font-weight: 500; white-space: nowrap;
}

/* ─── Score bars ─────────────────────────────────────────────────────────── */
.score-row { display: flex; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--gray-50); gap: 12px; }
.score-row:last-child { border-bottom: none; }
.score-label    { font-size: 14px; min-width: 200px; display: flex; align-items: center; gap: 6px; }
.score-bar-wrap { flex: 1; height: 8px; background: var(--gray-50); border-radius: 4px; }
.score-bar-fill { height: 8px; border-radius: 4px; background: var(--purple); transition: width .5s ease; }
.score-value    { font-size: 14px; font-weight: 600; min-width: 32px; text-align: right; color: var(--purple); }

/* ─── Advice ─────────────────────────────────────────────────────────────── */
.advice-row { padding: 10px 0; border-bottom: 1px solid var(--gray-50); font-size: 14px; line-height: 1.5; }
.advice-row:last-child { border-bottom: none; }
.advice-theme { font-weight: 500; margin-bottom: 3px; }
.tag-strong { display: inline-block; font-size: 12px; background: var(--teal-pale);  color: #085041; padding: 2px 8px; border-radius: 20px; margin-right: 4px; }
.tag-grow   { display: inline-block; font-size: 12px; background: var(--amber-pale); color: #633806; padding: 2px 8px; border-radius: 20px; margin-right: 4px; }
.tag-warn   { display: inline-block; font-size: 12px; background: var(--coral-pale); color: #712B13; padding: 2px 8px; border-radius: 20px; margin-right: 4px; }

.separator { height: 1px; background: var(--gray-50); margin: 1.5rem 0; }

/* ─── Spinner ────────────────────────────────────────────────────────────── */
.spinner {
  display: inline-block;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: white;
  border-radius: 50%;
  animation: spin .6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Dev-modus knoppen (alleen zichtbaar op localhost) ─────────────────── */
.dev-bar { display: none; }
.dev-mode .dev-bar { display: block; }

/* ─── Stad-suggesties dropdown ───────────────────────────────────────────── */
.field { position: relative; }

.plaats-suggesties {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  z-index: 200;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  margin: 3px 0 0;
  padding: 4px 0;
  max-height: 240px;
  overflow-y: auto;
}
.plaats-suggesties:empty { display: none; }

.plaats-suggestie-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  cursor: pointer;
  font-size: 14px;
  transition: background .1s;
}
.plaats-suggestie-item:hover { background: var(--purple-pale); }
.plaats-suggestie-item i { color: var(--purple); font-size: 13px; flex-shrink: 0; }

.suggestie-stad { font-weight: 500; flex: 1; }
.suggestie-provincie {
  font-size: 12px;
  color: var(--white);
  background: var(--purple);
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

.plaats-suggestie-laden,
.plaats-suggestie-leeg {
  padding: 9px 12px;
  font-size: 13px;
  color: var(--gray-400);
}

/* ─── Tom Select — aanpassing aan het Kerkscan-design ───────────────────── */
.ts-wrapper.single .ts-control {
  padding: 9px 12px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  color: var(--gray-900);
  background: var(--white);
  cursor: pointer;
  box-shadow: none;
  transition: border-color .15s;
}
.ts-wrapper.single.focus .ts-control,
.ts-wrapper.single .ts-control:focus-within {
  border-color: var(--purple-light);
  box-shadow: 0 0 0 3px rgba(127,119,221,0.12);
  outline: none;
}
.ts-wrapper.single.input-active .ts-control {
  border-color: var(--purple-light);
  box-shadow: 0 0 0 3px rgba(127,119,221,0.12);
}
.ts-control input {
  font-family: inherit;
  font-size: 14px;
  color: var(--gray-900);
}
.ts-control input::placeholder { color: var(--gray-400); }

.ts-dropdown {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  font-family: inherit;
  font-size: 14px;
  margin-top: 4px;
}
.ts-dropdown .option {
  padding: 9px 12px;
  color: var(--gray-900);
  cursor: pointer;
}
.ts-dropdown .option:hover,
.ts-dropdown .option.active {
  background: var(--purple-pale);
  color: var(--purple);
}
.ts-dropdown .option.selected {
  background: var(--purple);
  color: var(--white);
}
.ts-dropdown-content { max-height: 220px; }

/* Verberg het standaard select-element dat Tom Select vervangt */
.ts-wrapper + select { display: none; }

/* Dropdown-pijltje */
.ts-wrapper.single .ts-control::after {
  border-color: var(--gray-400) transparent transparent;
}
.ts-wrapper.single.dropdown-active .ts-control::after {
  border-color: transparent transparent var(--purple-light);
}

/* ─── Instellingen-kaart ─────────────────────────────────────────────────── */
.instelling-sectie { }
.instelling-sectie + .instelling-sectie {
  border-top: 1px solid var(--gray-50);
  padding-top: 1.25rem;
}
.instelling-sectie-titel {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.instelling-sectie-titel i { color: var(--purple); }

.instelling-nieuwe-beheerder {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-top: 8px;
}
.instelling-nieuwe-beheerder summary {
  font-size: 14px;
  font-weight: 500;
  color: var(--purple);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  user-select: none;
}
.instelling-nieuwe-beheerder summary::-webkit-details-marker { display: none; }
.instelling-nieuwe-beheerder[open] { background: var(--purple-pale); border-color: #AFA9EC; }

.beheerder-rij {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-50);
  gap: 10px;
}
.beheerder-rij:last-child { border-bottom: none; }
.beheerder-naam { font-size: 14px; font-weight: 500; }
.badge-jij {
  display: inline-block;
  font-size: 11px;
  background: var(--purple);
  color: var(--white);
  padding: 1px 8px;
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: middle;
}

/* ─── Individuele reacties ───────────────────────────────────────────────── */
.reactie-blok {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  background: var(--gray-50);
}
.reactie-blok:last-child { margin-bottom: 0; }

.reactie-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  gap: 8px;
}
.reactie-naam {
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.reactie-datum {
  font-size: 12px;
  color: var(--gray-400);
  white-space: nowrap;
}

.reactie-themas {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 0.75rem;
}
.reactie-thema {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 12px;
}
.reactie-thema-label {
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 4px;
}
.reactie-thema-score {
  font-weight: 700;
  color: var(--purple);
  min-width: 20px;
  text-align: center;
}

.reactie-details {
  border-top: 1px solid var(--gray-100);
  padding-top: 0.5rem;
  margin-top: 0.25rem;
}
.reactie-details summary {
  font-size: 13px;
  font-weight: 500;
  color: var(--purple);
  cursor: pointer;
  padding: 4px 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}
.reactie-details summary::before {
  content: '▶';
  font-size: 10px;
  transition: transform .2s;
  display: inline-block;
}
.reactie-details[open] summary::before { transform: rotate(90deg); }
.reactie-details summary::-webkit-details-marker { display: none; }

.reactie-antwoorden {
  margin-top: 0.75rem;
}
.reactie-sectie-titel {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0.75rem 0 0.4rem;
}
.reactie-sectie-titel:first-child { margin-top: 0; }

.reactie-antwoord-rij {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 5px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 13px;
}
.reactie-antwoord-rij:last-child { border-bottom: none; }

.reactie-vraag {
  flex: 1;
  color: var(--gray-700);
  line-height: 1.4;
}

.reactie-score-dot {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  background: var(--gray-100);
  color: var(--gray-700);
}
.score-1 { background: #FAECE7; color: #712B13; }
.score-2 { background: #FAEEDA; color: #633806; }
.score-3 { background: #EEEDFE; color: #3C3489; }
.score-4 { background: #D2EDE5; color: #085041; }
.score-5 { background: #E1F5EE; color: #0F6E56; }

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 560px) {
  .grid2          { grid-template-columns: 1fr; }
  .hero-cards     { grid-template-columns: 1fr; }
  .hero h1        { font-size: 28px; }
  .nav-btn span   { display: none; }
}

/* ─── Print ──────────────────────────────────────────────────────────────── */

/* Kop en voet — normaal verborgen */
#print-report-header,
#print-footer { display: none; }

@media print {

  @page {
    size: A4 portrait;
    margin: 16mm 16mm 20mm 16mm;
  }

  /* ── Verberg alles buiten het rapport ── */
  header, .page-header, .dev-bar, .no-print,
  .page { display: none !important; }

  #page-church-detail { display: block !important; }

  body {
    background: white;
    font-size: 10pt;
    color: #2C2C2A;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .container { max-width: 100%; padding: 0; }

  /* ── Statische koptekst — 1× bovenaan pagina 1 ── */
  #print-report-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2pt solid #3C3489;
    padding-bottom: 8pt;
    margin-bottom: 14pt;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 9pt;
    color: #3C3489;
  }
  .prh-logo {
    font-family: 'Lora', serif;
    font-size: 12pt;
    font-weight: 600;
  }
  .prh-naam {
    font-weight: 600;
    font-size: 10pt;
    flex: 1;
    text-align: center;
  }
  .prh-datum {
    font-size: 8pt;
    color: #888780;
  }

  /* ── Vaste voettekst — onderaan elke pagina ── */
  #print-footer {
    display: flex !important;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: 10mm;
    align-items: center;
    justify-content: space-between;
    border-top: 1pt solid #D3D1C7;
    padding: 0 16mm;
    font-size: 8pt;
    color: #888780;
    background: white;
  }

  /* ── Kaarten: niet halverwege breken ── */
  .card {
    box-shadow: none !important;
    border: 1pt solid #D3D1C7 !important;
    border-radius: 6pt !important;
    padding: 12pt !important;
    margin-bottom: 10pt !important;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .stat-card       { break-inside: avoid; page-break-inside: avoid; }
  .score-row       { break-inside: avoid; page-break-inside: avoid; }
  .advice-row      { break-inside: avoid; page-break-inside: avoid; }
  .church-row      { break-inside: avoid; page-break-inside: avoid; }
  .reactie-blok    { break-inside: avoid; page-break-inside: avoid; }
  .reactie-details { display: none; } /* details-sectie niet printen */

  /* Titels altijd bij hun inhoud houden */
  .card-title { break-after: avoid; page-break-after: avoid; }

  /* Grafiek op eigen pagina als het niet past */
  .card:has(canvas) { break-before: auto; }

  /* ── Kleuren behouden bij afdrukken ── */
  .score-bar-fill        { background: #3C3489 !important; }
  .tag-strong            { background: #E1F5EE !important; color: #085041 !important; }
  .tag-grow              { background: #FAEEDA !important; color: #633806 !important; }
  .tag-warn              { background: #FAECE7 !important; color: #712B13 !important; }
  .stat-num              { color: #3C3489 !important; }
  .stat-card.teal  .stat-num { color: #0F6E56 !important; }
  .stat-card.coral .stat-num { color: #D85A30 !important; }
  .score-value           { color: #3C3489 !important; }
}
