/* === Reset & Base === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1a1a1a;
  background: #f1f5f9;
  line-height: 1.5;
  min-height: 100vh;
}

/* Party stripe */
.party-stripe {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  bottom: 0;
  width: 5vw;
  z-index: 50;
}

.party-stripe--left  { left: 0; }
.party-stripe--right { right: 0; }

.party-stripe span {
  flex: 1;
}

/* Party colors — edit hex values here */
.party-a  { background: #A82721; } /* A – Socialdemokratiet */
.party-f  { background: #E07EA8; } /* F – SF */
.party-i  { background: #3FB2BE; } /* I – Liberal Alliance */
.party-v  { background: #254264; } /* V – Venstre */
.party-o  { background: #EAC73E; } /* O – Dansk Folkeparti */
.party-oe { background: #E6801A; } /* Ø – Enhedslisten */
.party-c  { background: #96B226; } /* C – Konservative */
.party-ae { background: #7896D2; } /* Æ – Danmarksdemokraterne */
.party-b  { background: #733280; } /* B – Radikale Venstre */
.party-m  { background: #B48CD2; } /* M – Moderaterne */
.party-h  { background: #5FC8B4; } /* H – Borgernes Parti */
.party-aa { background: #2B8738; } /* Å – Alternativet */

a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* === Utility === */
.loading-msg {
  color: #6b7280;
  padding: 2rem 1rem;
  text-align: center;
}

.error-msg {
  color: #6b7280;
  padding: 2rem 1rem;
  text-align: center;
}

.empty-msg {
  color: #6b7280;
  padding: 1.5rem 0;
}

/* ===================== */
/* LANDING PAGE          */
/* ===================== */

.landing {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem 2.5rem;
}

.landing-inner {
  width: 100%;
  max-width: 600px;
  text-align: center;
}

.landing-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}

.landing-tagline {
  color: #374151;
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

/* Search */
.search-wrap {
  position: relative;
  margin-bottom: 2rem;
}

.search-input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  border: 2px solid #cbd5e1;
  border-radius: 8px;
  outline: none;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.search-input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
}

.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-top: 4px;
  list-style: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 100;
  overflow: hidden;
}

.search-result-item {
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-size: 0.95rem;
  border-bottom: 1px solid #f3f4f6;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item.active,
.search-result-item:hover {
  background: #f0f4ff;
}

/* Explainer */
.landing-explainer {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 440px;
  margin: 0 auto 2rem;
}

/* Info Boxes */
.info-box {
  text-align: left;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #2563eb;
  border-radius: 8px;
  padding: 1.25rem 1.25rem 1.25rem 1.125rem;
  margin-bottom: 1rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.info-box h2 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #2563eb;
  margin-bottom: 0.5rem;
}

.info-box p {
  font-size: 0.95rem;
  color: #1f2937;
  line-height: 1.65;
}

.info-box--about {
  margin-bottom: 1.5rem;
}

.info-box--disclaimer {
  border-color: #e2e8f0;
  border-left-color: #d97706;
  background: #fffbeb;
}

.info-box--disclaimer h2 {
  color: #d97706;
}

/* Footer */
.landing-footer {
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
  color: #9ca3af;
  font-size: 0.85rem;
}

.landing-footer a {
  color: #9ca3af;
}

.landing-footer a:hover {
  color: #6b7280;
}

/* ===================== */
/* CANDIDATE PAGE        */
/* ===================== */

.candidate-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}

.candidate-nav {
  margin-bottom: 1rem;
}

.back-link {
  font-size: 0.95rem;
  color: #6b7280;
}

.back-link:hover {
  color: #2563eb;
}

/* Header */
.candidate-header {
  margin-bottom: 1.5rem;
}

.candidate-header h1 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.candidate-meta {
  color: #6b7280;
  font-size: 0.95rem;
  margin-top: 0.25rem;
}

/* Stats Bar */
.stats-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 600px) {
  .stats-bar {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.stat-cell {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
}

.stat-label {
  font-size: 0.8rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.25rem;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
}

.stat-sub {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-top: 0.125rem;
}

/* Fiscal Summary */
.fiscal-summary {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.fiscal-summary h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.fiscal-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.625rem;
}

.fiscal-bar-wrap {
  height: 20px;
  background: #f3f4f6;
  border-radius: 4px;
  overflow: hidden;
  min-width: 80px;
}

.fiscal-bar {
  height: 100%;
  background: #94a3b8;
  border-radius: 4px;
  min-width: 2px;
}

.fiscal-count {
  font-weight: 600;
  font-size: 0.95rem;
  min-width: 2ch;
  text-align: right;
}

.fiscal-label {
  font-size: 0.85rem;
  color: #6b7280;
}

@media (max-width: 480px) {
  .fiscal-row {
    grid-template-columns: 1fr auto;
  }
  .fiscal-label {
    grid-column: 1 / -1;
    margin-top: -0.25rem;
  }
}

.fiscal-disclaimer {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-top: 1rem;
  line-height: 1.5;
}

/* Tab Navigation */
.tab-nav {
  display: flex;
  border-bottom: 2px solid #e5e7eb;
  margin-bottom: 1rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  position: sticky;
  top: 0;
  background: #f8f9fa;
  z-index: 10;
}

.tab-btn {
  flex-shrink: 0;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: #6b7280;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
}

.tab-btn:hover {
  color: #1a1a1a;
}

.tab-btn.active {
  color: #2563eb;
  border-bottom-color: #2563eb;
  font-weight: 600;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* Filter Bar */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.filter-select {
  font: inherit;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #ffffff;
  color: #1a1a1a;
  outline: none;
}

.filter-select:focus {
  border-color: #2563eb;
}

.filter-check {
  font-size: 0.9rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  cursor: pointer;
}

.filter-check input[type="checkbox"] {
  accent-color: #2563eb;
}

/* Udvalg Sections */
.udvalg-section {
  margin-bottom: 0.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.udvalg-summary {
  padding: 0.75rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.udvalg-summary::-webkit-details-marker {
  display: none;
}

.udvalg-summary::before {
  content: '\25B6';
  display: inline-block;
  margin-right: 0.5rem;
  font-size: 0.7rem;
  transition: transform 0.15s;
}

.udvalg-section[open] > .udvalg-summary::before {
  transform: rotate(90deg);
}

.udvalg-votes {
  border-top: 1px solid #f3f4f6;
}

/* Vote Row */
.vote-row {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #f3f4f6;
}

.vote-row:last-child {
  border-bottom: none;
}

.vote-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
}

.vote-date {
  margin-left: auto;
  font-size: 0.8rem;
  color: #9ca3af;
  white-space: nowrap;
}

/* Vote Badge */
.vote-badge {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.vote-badge--for {
  background: #2563eb;
  color: #ffffff;
}

.vote-badge--imod {
  background: #6b7280;
  color: #ffffff;
}

.vote-badge--absent {
  background: #e5e7eb;
  color: #6b7280;
}

/* Party break flag */
.party-break-flag {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  background: #fef3c7;
  color: #92400e;
  letter-spacing: 0.03em;
}

/* Vote Title */
.vote-title {
  font-size: 0.9rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vote-title.expanded {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.vote-title-toggle {
  font-size: 0.8rem;
  color: #2563eb;
  padding: 0;
  margin-top: 0.125rem;
}

.vote-title-toggle:hover {
  text-decoration: underline;
}

/* Vote Footer */
.vote-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.375rem;
  flex-wrap: wrap;
}

.vote-result {
  font-size: 0.8rem;
  color: #6b7280;
}

.tag-pill {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  background: #f1f5f9;
  color: #475569;
}

/* Load More */
.load-more-btn {
  display: block;
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #2563eb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
  text-align: center;
}

.load-more-btn:hover {
  background: #f0f4ff;
}

.load-more-btn:disabled {
  color: #9ca3af;
  cursor: default;
}

/* Section Divider */
.section-divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 1rem 0;
}

/* Tab Intro */
.tab-intro {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* Loyalty Bars */
.loyalty-row {
  display: grid;
  grid-template-columns: 160px 1fr 48px;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 480px) {
  .loyalty-row {
    grid-template-columns: 1fr 48px;
  }
  .loyalty-label {
    grid-column: 1 / -1;
    font-size: 0.85rem;
  }
}

.loyalty-label {
  font-size: 0.9rem;
  color: #1a1a1a;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.loyalty-bar-wrap {
  height: 16px;
  background: #f3f4f6;
  border-radius: 4px;
  overflow: hidden;
}

.loyalty-bar {
  height: 100%;
  background: #94a3b8;
  border-radius: 4px;
}

.loyalty-pct {
  font-size: 0.85rem;
  font-weight: 600;
  text-align: right;
  color: #6b7280;
}

/* Fiscal Gauge (Økonomi tab) */
/* ===================== */
/* TOPIC BREAKDOWN       */
/* ===================== */

.topic-section {
  margin-bottom: 0.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.topic-section--empty {
  opacity: 0.6;
}

.topic-section--empty .topic-label {
  color: #6b7280;
}

/* Header line: label + count */
.topic-summary-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem 0.75rem;
}

.topic-label {
  font-weight: 700;
  font-size: 1.05rem;
  flex: 1;
  text-align: center;
}

.topic-summary:hover {
  background: #f8fafc;
}

.topic-chevron {
  font-size: 0.7rem;
  color: #6b7280;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.topic-section[open] .topic-chevron {
  transform: rotate(180deg);
}

.topic-count {
  font-size: 0.8rem;
  color: #9ca3af;
  white-space: nowrap;
}

/* Explainer */
.topic-explainer {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.875rem;
  line-height: 1.4;
}

/* Bar row: end-labels + bar */
.topic-bar-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.topic-bar-end {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111111;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Bar wrapper */
.topic-bar-wrap {
  flex: 1;
  min-width: 0;
}

.topic-bar-na {
  color: #9ca3af;
  font-size: 0.85rem;
}

/* Shared track */
.topic-bar-track {
  display: flex;
  height: 14px;
  border-radius: 999px;
  overflow: hidden;
  width: 100%;
  background: #e9ecef;
}

.topic-bar-track--empty {
  background: #e9ecef;
  opacity: 0.6;
}

.topic-bar-seg { height: 100%; flex-shrink: 0; }
.topic-bar-seg--for  { background: #2563eb; }
.topic-bar-seg--mere { background: #2563eb; }
.topic-bar-seg--imod { background: #2563eb; }

/* Sub-tags */
.topic-tags {
  border-top: 2px solid #f3f4f6;
}

.topic-tag-row,
.topic-tag-section {
  padding: 0.875rem 1.25rem 0.875rem 2rem;
  border-bottom: 1px solid #f3f4f6;
}

.topic-tag-section:last-child { border-bottom: none; }

/* Header line: chevron + name + count */
.topic-tag-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0;
}

.topic-tag-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
  flex: 1;
  text-align: center;
}

.topic-tag-count {
  font-size: 0.8rem;
  color: #6b7280;
  flex-shrink: 0;
}

.topic-description {
  font-size: 0.82rem;
  color: #9ca3af;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.topic-tag-description {
  font-size: 0.78rem;
  color: #9ca3af;
  line-height: 1.4;
  margin: 0.25rem 0 0 0;
  text-align: center;
}

.topic-bar-row--sub {
  margin-top: 0.5rem;
  width: 100%;
  align-items: center;
}

.topic-bar-end--sub {
  font-size: 0.8rem;
  color: #374151;
  font-weight: 600;
  width: 5rem;
  flex-shrink: 0;
  white-space: normal;
  word-break: break-word;
  line-height: 1.2;
}

.topic-tag-chevron {
  font-size: 0.6rem;
  color: #9ca3af;
  transition: transform 0.15s;
  flex-shrink: 0;
}

.topic-tag-section[open] > .topic-tag-row .topic-tag-chevron {
  transform: rotate(180deg);
}

.topic-tag-section > summary { cursor: pointer; }
.topic-tag-section > summary::-webkit-details-marker { display: none; }

/* Bill list inside tag section */
.topic-bill-list {
  border-top: 1px solid #f3f4f6;
  background: #fafafa;
}

.topic-bill-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem 0.75rem 3rem;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.85rem;
}

.topic-bill-row:last-child { border-bottom: none; }

.topic-bill-row .vote-badge {
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.topic-bill-meta {
  flex: 1;
  min-width: 0;
}

.topic-bill-title {
  display: block;
  color: #374151;
  line-height: 1.4;
  word-break: break-word;
}

.topic-bill-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.topic-bill-date {
  font-size: 0.78rem;
  color: #9ca3af;
}

.topic-bill-link {
  font-size: 0.78rem;
  color: #2563eb;
}

.topic-bill-link:hover { text-decoration: underline; }

/* "Hvor kommer dataen fra?" button */
.data-source-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.625rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2563eb;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s;
}

.data-source-btn:hover {
  background: #dbeafe;
}

/* "Se AI-klassificering" button per bill */
.bill-details-btn {
  display: inline-block;
  margin-top: 0.375rem;
  padding: 0.2rem 0.5rem;
  font-size: 0.75rem;
  color: #6b7280;
  background: none;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.bill-details-btn:hover {
  color: #374151;
  border-color: #9ca3af;
}

/* AI classification section */
.topic-bill-ai-section {
  margin-top: 0.5rem;
}

.topic-bill-ai-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #6b7280;
  margin-bottom: 0.375rem;
}

.topic-bill-tags {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.topic-bill-tag-block {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.topic-bill-tag-explain {
  font-size: 0.72rem;
  color: #4b5563;
  line-height: 1.4;
  padding-left: 0.25rem;
}

.topic-bill-tag-pill {
  font-size: 0.72rem;
  background: #f1f5f9;
  color: #475569;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  display: inline-block;
}

/* The tag matching the section we're viewing */
.topic-bill-tag-pill--relevant {
  background: #dbeafe;
  border-color: #93c5fd;
  color: #1e40af;
  font-weight: 600;
}

/* Low-confidence tags are dimmed */
.topic-bill-tag-pill--low-conf {
  opacity: 0.55;
}

/* Inline pill row — always visible under title */
.topic-bill-pill-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.375rem;
}

.ai-vurdering-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #6b7280;
  white-space: nowrap;
  flex-shrink: 0;
}

/* AI details panel */
.bill-ai-panel {
  margin-top: 0.375rem;
  padding: 0.625rem 0.75rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
}

/* Full bill panel */
.bill-full-panel {
  margin-top: 0.375rem;
  padding: 0.75rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
}

.bill-full-title {
  font-size: 0.85rem;
  color: #1f2937;
  line-height: 1.5;
  margin-bottom: 0.625rem;
}

.bill-full-resume {
  font-size: 0.85rem;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e5e7eb;
}

.bill-full-row {
  display: flex;
  gap: 0.5rem;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
  align-items: baseline;
}

.bill-full-label {
  color: #6b7280;
  flex-shrink: 0;
  min-width: 7rem;
  font-weight: 600;
}

.bill-full-value {
  color: #1f2937;
}

.bill-full-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #2563eb;
}

.bill-full-link:hover {
  text-decoration: underline;
}

.bill-party-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.bill-party-cell {
  display: flex;
  flex-direction: column;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  padding: 0.3rem 0.5rem;
  font-size: 0.75rem;
  min-width: 4.5rem;
}

.bill-party-name {
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.1rem;
}

.bill-party-for {
  color: #2563eb;
}

.bill-party-imod {
  color: #6b7280;
}

.topic-vote-stats {
  font-size: 0.8rem;
  color: #6b7280;
  padding: 0.25rem 1.25rem 0.625rem 2rem;
}

.topic-dir-stats {
  display: flex;
  gap: 0.5rem;
  padding: 0.25rem 1.25rem 0.625rem 2rem;
}

.topic-dir-stats > div:nth-child(2) {
  flex: 1;
}

.topic-dir-col {
  font-size: 0.75rem;
  color: #374151;
  line-height: 1.6;
  white-space: nowrap;
  flex-shrink: 0;
}

.topic-dir-col--right {
  text-align: right;
}

@media (max-width: 480px) {
  .topic-tag-row { padding-left: 1.25rem; }
  .topic-bill-row { padding-left: 2rem; }
  .topic-bill-date { display: none; }
}
