:root {
  --blue: #22368d;
  --blue-dark: #192870;
  --blue-50: #eef0fb;
  --blue-100: #d4d9f2;
  --white: #fff;
  --g50: #f9fafb;
  --g100: #f3f4f6;
  --g200: #e5e7eb;
  --g300: #d1d5db;
  --g400: #9ca3af;
  --g500: #6b7280;
  --g700: #374151;
  --g900: #111827;
  --red: #dc2626;
  --amber: #d97706;
  --green: #16a34a;
  --teal: #0891b2;
  --radius: 10px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--g900);
  background: var(--g50);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

main { flex: 1; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

/* ── Navbar ── */
.navbar {
  background: var(--blue);
  padding: 0 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -.2px;
}

.nav-logo { flex-shrink: 0; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  background: var(--white);
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity .15s;
}

.nav-cta:hover { opacity: .9; }

/* ── Alert ── */
.alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin: 16px 0;
}

.alert-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: var(--red);
}

/* ── Hero landing ── */
.hero-landing {
  text-align: center;
  padding: 52px 0 12px;
  max-width: 720px;
  margin: 0 auto;
}

.hero-landing h1 {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -.6px;
  line-height: 1.15;
  color: var(--g900);
  margin-bottom: 10px;
}

.hero-sub {
  font-size: 16px;
  color: var(--g500);
  line-height: 1.55;
  margin-bottom: 28px;
}

/* ── Autocomplete ── */
.ac-wrap {
  position: relative;
  margin-bottom: 14px;
}

.ac-wrap label {
  font-size: 12px;
  font-weight: 500;
  color: var(--g500);
  margin-bottom: 4px;
  display: block;
}

.ac-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--g300);
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color .15s, box-shadow .15s;
}

.ac-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(34,54,141,.1);
}

.ac-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--g200);
  border-top: none;
  border-radius: 0 0 8px 8px;
  box-shadow: var(--shadow-md);
  z-index: 50;
  max-height: 240px;
  overflow-y: auto;
}

.ac-option {
  padding: 10px 14px;
  font-size: 14px;
  color: var(--g700);
  cursor: pointer;
  transition: background .1s;
}

.ac-option:hover,
.ac-option.active {
  background: var(--g100);
  color: var(--g900);
}

.ac-wrap-inline {
  flex: 1;
  margin-bottom: 0;
}

.inline-grow { width: 100%; }

/* Search card */
.search-card {
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow-md);
}

.btn-hero {
  width: 100%;
  padding: 12px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background .15s;
}

.btn-hero:hover { background: #15803d; }

.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 0;
  color: var(--g500);
  font-size: 14px;
}

.spinner {
  width: 18px; height: 18px;
  border: 2.5px solid var(--g200);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin .65s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── What section ── */
.what-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 36px 0 28px;
}

.what-section h2 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--g400);
  margin-bottom: 16px;
}

.what-grid { display: flex; flex-direction: column; gap: 0; }

.what-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--g200);
}

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

.what-num {
  width: 28px;
  height: 28px;
  background: var(--g100);
  color: var(--g500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
}

.what-item strong { font-size: 15px; font-weight: 600; color: var(--g900); display: block; margin-bottom: 2px; }
.what-item p { font-size: 14px; color: var(--g500); line-height: 1.45; margin: 0; }

/* ── Guides ── */
.guides-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 0 32px;
}

.guides-section h2 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--g400);
  margin-bottom: 12px;
}

.guides-grid { display: flex; flex-direction: column; gap: 8px; }

.guide {
  display: block;
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: 10px;
  padding: 16px 20px;
  text-decoration: none;
  position: relative;
  transition: border-color .15s;
}

.guide:hover { border-color: var(--g400); }

.guide-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--g400);
  display: block;
  margin-bottom: 4px;
}

.guide strong {
  font-size: 15px;
  color: var(--g900);
  display: block;
  margin-bottom: 2px;
}

.guide p {
  font-size: 13px;
  color: var(--g500);
  line-height: 1.4;
  margin: 0;
}

.guide-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--g300);
  transition: color .15s;
}

.guide:hover .guide-arrow { color: var(--g500); }

/* ── Alert promo (results page, above tabs) ── */
.alert-promo {
  display: block;
  text-align: center;
  background: var(--blue-50);
  color: var(--blue);
  border: 1px solid var(--blue-100);
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s;
}

.alert-promo:hover { background: var(--blue-100); }

/* ── Hero app nudge (homepage, below search) ── */
.hero-app-nudge {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
  text-decoration: none;
}

.hero-app-nudge:hover { text-decoration: underline; }

/* ── Sticky bottom bar (results page) ── */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--g900);
  padding: 12px 0;
  z-index: 90;
  box-shadow: 0 -2px 8px rgba(0,0,0,.15);
}

.sticky-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-bar-text strong {
  display: block;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 1px;
}

.sticky-bar-text span {
  font-size: 12px;
  color: var(--g400);
}

.sticky-bar-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--g900);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .15s;
}

.sticky-bar-btn:hover { opacity: .9; }

@media (max-width: 768px) {
  .alert-promo { flex-wrap: wrap; }
  .alert-promo a { margin-left: 0; }

  .sticky-bar-inner { flex-direction: column; text-align: center; gap: 8px; }
  .sticky-bar-text span { display: none; }

  .hero-app-nudge { flex-wrap: wrap; justify-content: center; }
}

/* ── App banner ── */
.app-banner {
  max-width: 720px;
  margin: 0 auto 32px;
  background: var(--g900);
  border-radius: 12px;
  padding: 20px 24px;
}

.app-banner-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.app-banner-icon { border-radius: 12px; flex-shrink: 0; }

.app-banner-text { flex: 1; }
.app-banner-text strong { font-size: 15px; color: var(--white); display: block; margin-bottom: 2px; }
.app-banner-text p { font-size: 13px; color: var(--g400); margin: 0; line-height: 1.4; }

/* ── Results bar ── */
.results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0 16px;
  flex-wrap: wrap;
}

.results-address {
  font-size: 20px;
  font-weight: 700;
  color: var(--g900);
  letter-spacing: -.3px;
}

.results-bin {
  font-size: 12px;
  color: var(--g400);
  font-family: 'SF Mono', 'Fira Code', ui-monospace, monospace;
}

.inline-search {
  display: flex;
  gap: 6px;
  align-items: center;
}

.inline-input {
  padding: 7px 10px;
  border: 1px solid var(--g300);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
}

.inline-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(34,54,141,.1);
}

.inline-sm { width: 72px; }
.inline-lg { width: 140px; }

.inline-btn {
  padding: 7px 14px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}

.inline-btn:hover { background: var(--blue-dark); }

/* ── Tabs ── */
.tabs-bar {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--g200);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.tabs-bar::-webkit-scrollbar { display: none; }

.tab {
  background: none;
  border: none;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  color: var(--g400);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: color .15s;
}

.tab:hover { color: var(--g700); }
.tab.active { color: var(--blue); border-bottom-color: var(--blue); font-weight: 600; }

.tab-count {
  background: var(--g200);
  color: var(--g700);
  font-size: 11px;
  font-weight: 600;
  padding: 1px 7px;
  border-radius: 10px;
  margin-left: 4px;
}

.tab.active .tab-count {
  background: var(--g200);
  color: var(--g700);
}

.tab[data-tab="violations"] .tab-count {
  background: #fee2e2;
  color: var(--red);
}

.tab[data-tab="complaints"] .tab-count {
  background: #fef3c7;
  color: var(--amber);
}

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

/* ── Expandable rows ── */
.expandable-row { cursor: pointer; }
.expandable-row:hover td { background: var(--g50); }

.chevron-cell {
  width: 24px;
  padding: 0 8px !important;
  text-align: center;
}

.chevron-cell::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--g400);
  border-bottom: 2px solid var(--g400);
  transform: rotate(45deg);
  transition: transform .15s;
}

.expandable-row.expanded .chevron-cell::after {
  transform: rotate(-135deg);
}

tr:not(.expandable-row) { cursor: default; }

.detail-row { display: none; }
.detail-row.open { display: table-row; }

.detail-row td {
  padding: 0 !important;
  border-bottom: 1px solid var(--g200) !important;
}

.expandable-row.expanded td {
  background: var(--blue-50);
  border-bottom: none;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0;
  padding: 12px 14px;
  background: var(--g50);
  border-left: 3px solid var(--blue);
}

.detail-item {
  padding: 6px 8px;
}

.detail-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--g400);
  text-transform: uppercase;
  letter-spacing: .3px;
  margin-bottom: 2px;
}

.detail-value {
  font-size: 13px;
  color: var(--g700);
  word-break: break-word;
}

@media (max-width: 768px) {
  .detail-row.open { display: block; }
  .detail-row td { padding: 0 !important; }
  .detail-grid { grid-template-columns: 1fr 1fr; padding: 12px; }
}

/* ── Tab loading ── */
.tab-loading {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 32px 16px;
  color: var(--g400);
  font-size: 14px;
  background: var(--white);
  border: 1px solid var(--g200);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
}

/* ── Filters ── */
.filters {
  display: flex;
  gap: 8px;
  padding: 12px 0;
  flex-wrap: wrap;
}

.filters select {
  padding: 6px 10px;
  border: 1px solid var(--g300);
  border-radius: 6px;
  font-size: 13px;
  font-family: inherit;
  color: var(--g700);
  background: var(--white);
  cursor: pointer;
}

.filters select:focus {
  outline: none;
  border-color: var(--blue);
}

tr.filtered { display: none !important; }

/* ── Table ── */
.table-card {
  background: var(--white);
  border: 1px solid var(--g200);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

thead { background: var(--g50); }

th {
  text-align: left;
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--g400);
  border-bottom: 1px solid var(--g200);
}

td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--g100);
  vertical-align: top;
  word-wrap: break-word;
  overflow-wrap: break-word;
  color: var(--g700);
  line-height: 1.45;
}

tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--g50); }
tr.hidden { display: none; }

/* Description column takes remaining space */
.col-desc { width: 40%; }

/* ── Pills & badges ── */
.pill {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.pill-source {
  background: var(--blue);
  color: var(--white);
  letter-spacing: .2px;
  white-space: nowrap;
}

.badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.badge-open { background: #fee2e2; color: var(--red); }
.badge-closed { background: #dcfce7; color: var(--green); }
.badge-other { background: var(--g100); color: var(--g700); }
.badge-danger { background: #fee2e2; color: var(--red); }
.badge-warning { background: #fef3c7; color: var(--amber); }
.badge-info { background: #cffafe; color: var(--teal); }

.mono {
  font-family: 'SF Mono', 'Fira Code', ui-monospace, monospace;
  font-size: 12px;
  color: var(--g500);
}

.balance-due {
  font-weight: 600;
  color: var(--red);
}

.nowrap { white-space: nowrap; }

.empty-state {
  padding: 40px 20px;
  text-align: center;
  color: var(--g400);
  font-size: 14px;
  background: var(--white);
  border: 1px solid var(--g200);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
}

/* ── Promo card (upcoming inspections) ── */
.promo-card {
  background: var(--white);
  border: 1px solid var(--g200);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
}

.promo-inner {
  text-align: center;
  padding: 48px 24px;
  max-width: 400px;
  margin: 0 auto;
}

.promo-icon { margin-bottom: 16px; }
.promo-inner h3 { font-size: 18px; font-weight: 600; color: var(--g900); margin-bottom: 8px; }
.promo-inner p { font-size: 14px; color: var(--g500); line-height: 1.5; margin-bottom: 20px; }

.btn-primary { display: inline-block; }

/* ── Bottom CTA ── */
.bottom-cta {
  margin: 24px 0 32px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius);
  padding: 16px 20px;
}

.bottom-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bottom-cta strong {
  font-size: 14px;
  color: var(--g900);
  display: block;
  margin-bottom: 2px;
}

.bottom-cta span { font-size: 13px; color: var(--g500); }

/* ── FAQ ── */
.faq-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 8px 0 32px;
}

.faq-section h2 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--g400);
  margin-bottom: 12px;
}

.faq-item {
  border-bottom: 1px solid var(--g200);
}

.faq-item:last-of-type { border-bottom: none; }

.faq-item summary {
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--g900);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 18px;
  color: var(--g400);
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform .2s;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item p {
  font-size: 14px;
  color: var(--g500);
  line-height: 1.65;
  padding: 0 0 14px;
  margin: 0;
}

.faq-item a { color: var(--blue); text-decoration: none; }
.faq-item a:hover { text-decoration: underline; }

/* ── Content pages ── */
.content-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 0 32px;
}

.content-page h1 {
  font-size: 30px;
  font-weight: 700;
  color: var(--g900);
  letter-spacing: -.4px;
  margin-bottom: 12px;
}

.content-intro {
  font-size: 17px;
  color: var(--g500);
  line-height: 1.6;
  margin-bottom: 24px;
}

.content-page h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--g900);
  margin: 32px 0 10px;
  letter-spacing: -.2px;
}

.content-page h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--g900);
  margin: 20px 0 6px;
}

.content-page p {
  font-size: 15px;
  color: var(--g700);
  line-height: 1.7;
  margin-bottom: 12px;
}

.content-page a { color: var(--blue); text-decoration: none; }
.content-page a:hover { text-decoration: underline; }

.content-list {
  margin: 0 0 16px 20px;
  font-size: 15px;
  color: var(--g700);
  line-height: 1.7;
}

.content-list li { margin-bottom: 6px; }
.content-list ul { margin: 6px 0 6px 20px; }

.content-cta-inline {
  background: var(--blue-50);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--g700);
}

.link-action {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.link-action:hover { text-decoration: underline; }

.content-cta-box {
  background: var(--blue);
  border-radius: 12px;
  padding: 28px;
  margin-top: 32px;
  text-align: center;
}

.content-cta-box h3 {
  color: var(--white);
  font-size: 18px;
  margin: 0 0 6px;
}

.content-cta-box p {
  color: rgba(255,255,255,.8);
  font-size: 14px;
  margin-bottom: 16px;
}

.code-table {
  border: 1px solid var(--g200);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 16px 0 20px;
}

.code-table table { font-size: 14px; }
.code-table th { background: var(--g50); }
.code-table td { font-size: 14px; line-height: 1.5; }

@media (max-width: 768px) {
  .content-page { padding: 24px 0; }
  .content-page h1 { font-size: 24px; }
  .content-page h2 { font-size: 18px; }
  .code-table table, .code-table thead, .code-table tbody,
  .code-table tr, .code-table th, .code-table td { display: block; width: 100%; }
  .code-table thead { display: none; }
  .code-table td {
    display: flex;
    justify-content: space-between;
    padding: 6px 14px;
    border-bottom: 1px solid var(--g100);
  }
}

/* ── Footer ── */
.footer {
  padding: 20px 0 72px;
  border-top: 1px solid var(--g200);
  margin-top: 24px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--g500);
  text-decoration: none;
}

.footer-links a:hover { color: var(--blue); }

.footer p { font-size: 12px; color: var(--g400); text-align: center; line-height: 1.5; }

/* ── Mobile ── */
@media (max-width: 768px) {
  .container { padding: 0 16px; }

  /* Landing */
  .hero-landing { padding: 32px 0 8px; }
  .hero-landing h1 { font-size: 28px; }
  .hero-sub { font-size: 14px; }
  .search-card { padding: 16px; }

  .what-section, .guides-section, .faq-section { padding-left: 0; padding-right: 0; }

  .app-banner-inner { flex-direction: column; text-align: center; }
  .app-banner-icon { margin: 0 auto; }

  /* Results */
  .results-bar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .inline-search { width: 100%; }
  .inline-lg { flex: 1; }
  .inline-sm { flex: 0 0 60px; }

  .tab { padding: 10px 12px; font-size: 13px; }

  /* Responsive table → stacked cards */
  .table-card { border-radius: 0 0 var(--radius) var(--radius); }

  table, thead, tbody, tr, th, td {
    display: block;
    width: 100%;
  }

  thead { display: none; }

  tbody tr {
    border-bottom: 1px solid var(--g200);
    padding: 8px 0;
  }

  tbody tr:last-child { border-bottom: none; }
  tbody tr.hidden { display: none; }

  td:not(.detail-row td) {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 5px 14px;
    border-bottom: none;
    gap: 12px;
  }

  td:not(.detail-row td)::before {
    content: attr(data-label);
    font-size: 11px;
    font-weight: 600;
    color: var(--g400);
    text-transform: uppercase;
    letter-spacing: .3px;
    flex-shrink: 0;
    min-width: 90px;
    padding-top: 1px;
  }

  .detail-row td { display: block; }

  .empty-cell { display: none !important; }
  .chevron-cell { display: none !important; }
  .nowrap { font-weight: 600; }

  /* Reset column widths */
  th:nth-child(n), td:nth-child(n) { width: 100%; }

  .bottom-cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 420px) {
  .inline-search { flex-wrap: wrap; }
  .ac-wrap-inline { width: 100%; }
}
