:root {
  --brand-50: #eef4ff;
  --brand-100: #d9e6ff;
  --brand-500: #2f6df6;
  --brand-700: #184bc0;
  --surface: #ffffff;
  --panel: #f5f8fd;
  --panel-strong: #f4f7fb;
  --ink-900: #172033;
  --ink-700: #4a5671;
  --ink-500: #7b879c;
  --line: #e0e8f2;
  --line-strong: #d3deed;
  --success: #1da971;
  --danger: #e15252;
  --warning: #d39b15;
  --shadow-soft: 0 6px 18px rgba(26, 44, 84, 0.035);
  --radius-md: 5px;
  --radius-lg: 8px;
  --shadow-card: 0 12px 28px rgba(26, 44, 84, 0.04);
}

body[data-theme="dark"] {
  --surface: #111826;
  --panel: #0f1723;
  --panel-strong: #151d2b;
  --ink-900: #edf3ff;
  --ink-700: #c4d0e5;
  --ink-500: #8f9bb0;
  --line: #253043;
  --line-strong: #31415b;
  --shadow-soft: 0 8px 20px rgba(0, 0, 0, 0.24);
  --shadow-card: 0 16px 34px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(47, 109, 246, 0.05), transparent 24%),
    linear-gradient(180deg, #fbfdff 0%, #f2f6fb 100%);
  color: var(--ink-900);
  font-family: "Fira Sans", sans-serif;
  font-size: 13px;
  line-height: 1.4;
}

body[data-theme="dark"] {
  background:
    radial-gradient(circle at top right, rgba(47, 109, 246, 0.14), transparent 26%),
    linear-gradient(180deg, #0b1018 0%, #111827 100%);
}

img {
  display: block;
  max-width: 100%;
}

.app-shell {
  display: grid;
  grid-template-columns: 136px 1fr;
  min-height: 100vh;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 18px 12px;
  background: rgba(255, 255, 255, 0.92);
  border-right: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

body[data-theme="dark"] .sidebar {
  background: rgba(17, 24, 38, 0.92);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 58px;
  height: auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.nav-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 5px;
  color: var(--ink-700);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
}

.nav-item.is-active,
.nav-item:hover {
  background: #f3f7fd;
  color: var(--brand-500);
}

body[data-theme="dark"] .nav-item.is-active,
body[data-theme="dark"] .nav-item:hover {
  background: rgba(47, 109, 246, 0.14);
}

.nav-icon {
  position: relative;
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  opacity: 0.9;
}

.nav-icon::before,
.nav-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.nav-icon-home::before {
  left: 2px;
  right: 2px;
  bottom: 1px;
  height: 7px;
  border: 1.4px solid currentColor;
  border-top: 0;
}

.nav-icon-home::after {
  left: 1px;
  top: 1px;
  width: 9px;
  height: 9px;
  border-left: 1.4px solid currentColor;
  border-top: 1.4px solid currentColor;
  transform: rotate(45deg);
}

.nav-icon-bookmark::before {
  inset: 1px 2px 1px 2px;
  border: 1.4px solid currentColor;
  border-radius: 2px 2px 0 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 74%, 0 100%);
}

.nav-icon-grid::before {
  inset: 1px;
  border: 1.4px solid currentColor;
  border-radius: 2px;
}

.nav-icon-grid::after {
  left: 6px;
  top: 2px;
  width: 1.4px;
  height: 9px;
  background: currentColor;
  box-shadow: -4px 0 0 currentColor, 0 4px 0 currentColor, -4px 4px 0 currentColor;
}

.sidebar-footer {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.theme-chip,
.chip,
.ghost-button,
.workspace-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.theme-chip {
  padding: 8px 10px;
  color: var(--ink-700);
  font-size: 0.82rem;
  font-family: inherit;
  cursor: pointer;
}

.logout-button {
  width: 100%;
}

.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
}

.login-panel {
  width: min(100%, 420px);
  display: grid;
  gap: 18px;
}

.login-form {
  display: grid;
  gap: 12px;
}

.login-form button {
  height: 40px;
  border: 0;
  border-radius: 5px;
  background: var(--brand-500);
  color: white;
  font-size: 0.86rem;
  font-weight: 600;
}

.content {
  padding: 16px 18px;
}

.hero,
.page-header {
  display: grid;
  gap: 18px;
}

.hero {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: stretch;
  margin-bottom: 16px;
}

.hero-single {
  grid-template-columns: 1fr;
}

.hero-copy,
.page-header,
.metric-card,
.workspace-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

body[data-theme="dark"] .hero-copy,
body[data-theme="dark"] .page-header,
body[data-theme="dark"] .metric-card,
body[data-theme="dark"] .workspace-card,
body[data-theme="dark"] .dashboard-panel,
body[data-theme="dark"] .workspace-panel {
  background: rgba(17, 24, 38, 0.94);
}

.hero-copy {
  padding: 24px;
}

.hero-copy-full {
  width: 100%;
}

.page-header {
  grid-template-columns: 1fr auto;
  align-items: start;
  padding: 14px 16px;
  margin-bottom: 14px;
  box-shadow: none;
}

h1,
h2 {
  margin: 0;
  font-family: "Fira Sans", sans-serif;
}

h1 {
  font-size: clamp(1.28rem, 2vw, 1.7rem);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.015em;
}

h2 {
  font-size: 0.98rem;
  font-weight: 600;
}

.hero-subtitle,
.location-meta,
.group-label,
.section-heading p:last-child,
.card-copy {
  color: var(--ink-500);
}

.hero-subtitle,
.location-meta {
  margin: 6px 0 0;
  max-width: 60ch;
  font-size: 0.84rem;
}

.search-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin: 18px 0;
}

.search-bar input,
.search-bar button {
  height: 44px;
  border-radius: 5px;
  font: inherit;
}

.search-bar input {
  border: 1px solid #bfd1ef;
  padding: 0 14px;
  background: var(--surface);
}

body[data-theme="dark"] .search-bar input {
  border-color: var(--line-strong);
  color: var(--ink-900);
}

.search-bar button {
  min-width: 104px;
  border: 0;
  background: var(--brand-500);
  color: white;
  font-size: 0.86rem;
  font-weight: 600;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.group-label {
  width: 100%;
  margin: 0 0 2px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.chip,
.ghost-button {
  padding: 7px 10px;
  font-size: 0.78rem;
  font-weight: 500;
}

.analysis-grid {
  display: grid;
  gap: 16px;
}

.analysis-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 10px;
}

.metrics-panel {
  margin-bottom: 14px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.metric-card {
  padding: 12px 14px;
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
}

.metric-label {
  color: var(--ink-700);
  font-size: 0.8rem;
  font-weight: 500;
}

.metric-value {
  font-size: 1.08rem;
  font-weight: 600;
}

.metric-rows,
.metric-row {
  display: grid;
  gap: 8px;
}

.metric-rows {
  margin-top: 10px;
}

.metric-main {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.metric-category,
.metric-deltas {
  font-size: 0.8rem;
}

.metric-category {
  color: var(--ink-700);
}

.metric-deltas {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  justify-content: space-between;
  width: 100%;
  font-weight: 600;
}

.trend-up {
  color: var(--success);
}

.trend-down {
  color: var(--danger);
}

.trend-flat {
  color: var(--warning);
}

.dashboard-tabs-shell {
  display: grid;
  gap: 0;
}

.suburb-tab-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 0 0 8px;
  position: relative;
  z-index: 2;
}

.suburb-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
  background: #f8fbff;
  color: var(--ink-700);
  font-size: 0.86rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
}

.suburb-tab.is-active {
  background: #ffffff;
  color: var(--brand-500);
  border-color: var(--line-strong);
  box-shadow: 0 -1px 0 #ffffff inset;
}

body[data-theme="dark"] .suburb-tab {
  background: #121b29;
}

body[data-theme="dark"] .suburb-tab.is-active {
  background: var(--surface);
  box-shadow: none;
}

.suburb-tab.new-tab {
  background: transparent;
}

.dashboard-panel {
  margin-top: -1px;
  padding: 14px;
  border: 1px solid var(--line-strong);
  border-radius: 0 6px 6px 6px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.dashboard-header {
  border: 0;
  background: transparent;
  padding: 0 0 12px;
}

.suburb-panel {
  display: none;
}

.suburb-panel.is-active {
  display: block;
}

.card-copy {
  margin: 4px 0 0;
  font-size: 0.8rem;
  max-width: none;
}

.workspace-card {
  overflow: hidden;
}

.workspace-tabs {
  display: flex;
  gap: 4px;
  padding: 8px 8px 0;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fbfdff 0%, #f7faff 100%);
}

body[data-theme="dark"] .workspace-tabs {
  background: linear-gradient(180deg, #151d2b 0%, #121a28 100%);
}

.workspace-tab {
  padding: 9px 12px;
  border: 1px solid transparent;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
  background: transparent;
  color: var(--ink-700);
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 500;
  cursor: pointer;
}

.workspace-tab.is-active {
  background: #ffffff;
  border-color: var(--line);
  color: var(--brand-500);
}

body[data-theme="dark"] .workspace-tab.is-active {
  background: var(--surface);
}

.workspace-panel {
  display: none;
  padding: 14px;
  background: #ffffff;
}

.workspace-panel.is-active {
  display: block;
}

.workspace-heading {
  margin-bottom: 12px;
}

.chart-card {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

body[data-theme="dark"] .chart-card {
  background: var(--panel-strong);
}

.chart-canvas {
  min-height: 390px;
  width: 100%;
}

.chart-canvas.is-resizing {
  visibility: hidden;
}

.is-hidden {
  display: none !important;
}

.empty-state,
.notice-state {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--panel);
  color: var(--ink-700);
}

.notice-state {
  margin: 0 0 14px;
}

.notice-state.warning {
  border-color: rgba(211, 155, 21, 0.28);
  background: rgba(211, 155, 21, 0.08);
  color: var(--warning);
}

.filter-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(132px, 180px);
  gap: 12px;
  align-items: start;
}

label {
  display: grid;
  gap: 5px;
  min-width: 0;
  color: var(--ink-700);
  font-size: 0.72rem;
  font-weight: 600;
}

.dashboard-property-filter { display: inline-flex; align-items: center; gap: 8px; min-width: 0; padding: 7px 10px; border: 1px solid var(--line); border-radius: 5px; background: var(--surface); color: var(--ink-700); font-size: 0.78rem; font-weight: 500; }
.property-filter { position: relative; min-width: 0; }
.property-filter-button { box-sizing: border-box; max-width: 220px; color: var(--ink-700); cursor: pointer; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.property-filter-menu { position: absolute; z-index: 20; top: calc(100% + 8px); right: -10px; box-sizing: border-box; width: 220px; padding: 6px; border: 1px solid var(--line); border-radius: 5px; background: var(--surface); }
.property-filter-option { display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: 7px; min-width: 0; padding: 5px 6px; }
.property-filter-option span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

input,
select,
button {
  font-family: inherit;
}

input,
select {
  min-width: 0;
  height: 36px;
  border: 1px solid #bfd1ef;
  border-radius: 5px;
  padding: 0 10px;
  background: var(--surface);
  color: var(--ink-900);
}

button {
  cursor: pointer;
}

.ghost-button,
.chip {
  color: var(--ink-700);
  text-decoration: none;
}

.estimate-summary {
  display: grid;
  gap: 2px;
  min-width: 180px;
  text-align: right;
}

.estimate-summary span,
.meta-line {
  color: var(--ink-500);
  font-size: 0.78rem;
}

.estimate-summary strong {
  font-size: 1.18rem;
  font-weight: 700;
}

.meta-line {
  margin-bottom: 12px;
}

.valuation-form {
  display: grid;
  grid-template-columns: minmax(150px, 1.2fr) repeat(6, minmax(82px, 1fr)) auto;
  gap: 8px;
  align-items: end;
  margin-bottom: 14px;
}

.valuation-form button {
  height: 36px;
  min-width: 92px;
  border: 0;
  border-radius: 5px;
  background: var(--brand-500);
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
}

.valuation-form label.is-disabled input[type="number"] {
  background: var(--line);
  cursor: not-allowed;
}

.valuation-field-title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  white-space: nowrap;
}

.valuation-field-title input {
  accent-color: var(--brand-600);
  cursor: pointer;
}

.valuation-field-title input:disabled {
  cursor: not-allowed;
}

.valuation-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.diagnostics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.diagnostics-panel {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.diagnostics-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.diagnostics-heading h3,
.diagnostics-section-title,
.field-completeness h4 {
  margin: 0;
  color: var(--ink-900);
}

.diagnostics-heading h3 {
  font-size: 1rem;
}

.diagnostics-heading p {
  margin: 3px 0 0;
  color: var(--ink-500);
  font-size: 0.8rem;
}

.status-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--ink-700);
  font-size: 0.76rem;
  font-weight: 600;
  white-space: nowrap;
}

.status-pill.is-available {
  border-color: rgba(19, 121, 91, 0.35);
  color: var(--brand-700);
}

.status-pill.is-unavailable {
  color: var(--ink-500);
}

.diagnostics-table-wrap {
  overflow-x: auto;
}

.diagnostics-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--ink-900);
  font-size: 0.8rem;
}

.diagnostics-table th,
.diagnostics-table td {
  padding: 8px 7px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.diagnostics-table th {
  color: var(--ink-700);
  font-weight: 600;
}

.diagnostics-table tr.is-selected td {
  background: rgba(19, 121, 91, 0.06);
}

.diagnostics-table.compact td:nth-child(2),
.diagnostics-table.compact td:nth-child(3),
.diagnostics-table.compact td:nth-child(4) {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.diagnostics-table.compact {
  table-layout: fixed;
}

.diagnostics-table.compact th,
.diagnostics-table.compact td {
  width: 25%;
}

.field-completeness {
  display: grid;
  gap: 8px;
}

.diagnostics-section-title {
  font-size: 0.92rem;
}

.field-completeness h4 {
  font-size: 0.86rem;
}

.valuation-milestones,
.valuation-comparables {
  overflow-x: auto;
}

.valuation-typicality {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  gap: 16px;
}

.typicality-score {
  display: grid;
  gap: 8px;
}

.typicality-score strong {
  color: var(--ink-900);
  font-size: 1.9rem;
  line-height: 1;
}

.typicality-score p {
  margin: 0;
  color: var(--ink-700);
  font-size: 0.84rem;
}

.typicality-label {
  color: var(--ink-900);
  font-size: 0.82rem;
  font-weight: 700;
}

.typicality-bar {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
}

.typicality-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--brand-500);
}

.typicality-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--ink-900);
  font-size: 0.8rem;
}

.typicality-table th,
.typicality-table td {
  padding: 8px 6px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.typicality-table th {
  color: var(--ink-700);
  font-weight: 600;
}

.valuation-comparables {
  transition: opacity 0.15s ease;
}

.valuation-comparables.is-loading {
  opacity: 0.62;
}

.comparable-match-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-bottom: 12px;
  color: var(--ink-700);
  font-size: 0.82rem;
}

.comparable-match-label {
  color: var(--ink-900);
  font-weight: 600;
}

.comparable-match-option {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.comparable-match-option input {
  accent-color: var(--brand-600);
}

.comparable-match-option.is-disabled {
  opacity: 0.48;
}

.valuation-milestones table,
.valuation-comparables table {
  width: 100%;
  border-collapse: collapse;
  color: var(--ink-900);
  font-size: 0.82rem;
}

.valuation-milestones th,
.valuation-milestones td,
.valuation-comparables th,
.valuation-comparables td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.valuation-milestones th,
.valuation-comparables th {
  color: var(--ink-700);
  font-weight: 600;
}

.valuation-milestones td:nth-child(2),
.valuation-milestones td:nth-child(4),
.valuation-comparables td:nth-child(3) {
  font-weight: 600;
}

.valuation-comparables a {
  color: var(--brand-600);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.valuation-comparables a:hover {
  color: var(--brand-700);
}

.sales-table-shell {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sales-table-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: var(--ink-700);
}

.sales-table-toolbar label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  font-size: 0.84rem;
  font-weight: 500;
}

.sales-table-toolbar input {
  box-sizing: border-box;
  width: min(280px, 54vw);
}

.sales-table-toolbar input:focus {
  border-color: var(--brand-500);
  box-shadow: 0 0 0 2px rgba(47, 109, 246, 0.12);
  outline: 0;
}

.sales-table-count {
  color: var(--ink-500);
  font-size: 0.8rem;
  white-space: nowrap;
}

.table-wrap {
  max-height: calc(100vh - 280px);
  min-height: 560px;
  overflow: auto;
  border-bottom: 1px solid var(--line);
}

.sales-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--ink-900);
  font-size: 0.8rem;
}

.sales-table th,
.sales-table td {
  padding: 9px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
}

.sales-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--surface);
  color: var(--ink-700);
  font-weight: 600;
}

.sales-sort-button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  white-space: nowrap;
}

.sort-indicator::after {
  color: var(--ink-400);
  content: "";
  font-size: 0.7rem;
}

.sales-sort-button[data-sort-direction="asc"] .sort-indicator::after {
  color: var(--brand-500);
  content: "^";
}

.sales-sort-button[data-sort-direction="desc"] .sort-indicator::after {
  color: var(--brand-500);
  content: "v";
}

@media (max-width: 1280px) {
  .metrics-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .valuation-form {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

}

@media (max-width: 920px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: sticky;
    top: 0;
    z-index: 10;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .nav-stack,
  .sidebar-footer {
    display: none;
  }

  .hero,
  .page-header {
    grid-template-columns: 1fr;
  }

  .metrics-grid {
    grid-template-columns: 1fr 1fr;
  }

  .analysis-grid,
  .valuation-grid,
  .diagnostics-grid {
    grid-template-columns: 1fr;
  }

  .filter-heading {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 640px) {
  .content {
    padding: 16px;
  }

  .hero-copy,
  .page-header,
  .metric-card,
  .workspace-card {
    padding: 18px;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .search-bar {
    grid-template-columns: 1fr;
  }

  .dashboard-panel {
    padding: 14px;
  }

  .workspace-tabs {
    overflow-x: auto;
  }

  .valuation-form {
    grid-template-columns: 1fr;
  }

  .estimate-summary {
    min-width: 0;
    text-align: left;
  }
}
