:root {
    --bg: #f7f8fb;
    --panel: #ffffff;
    --panel-soft: #fbfcfe;
    --line: #e7ebf0;
    --line-soft: #f0f3f6;
    --text: #111827;
    --muted: #667085;
    --muted-soft: #98a2b3;
    --green: #16a34a;
    --green-soft: #eaf8ef;
    --green-line: #bfe8cd;
    --danger: #b42318;
    --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.05);
    --shadow-md: 0 16px 40px rgba(16, 24, 40, 0.08);
    --radius-lg: 18px;
    --radius-md: 14px;
}

* { box-sizing: border-box; }

html,
body {
    margin: 0;
    min-height: 100%;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.presentation-access-page {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 1.5rem;
    background:
        radial-gradient(circle at top left, rgba(22, 163, 74, 0.14), transparent 34rem),
        linear-gradient(135deg, #f8fafc 0%, #eef4f1 100%);
}

.presentation-access-card {
    width: min(100%, 30rem);
    border: 1px solid rgba(231, 235, 240, 0.95);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 70px rgba(16, 24, 40, 0.14);
    padding: 2rem;
}

.presentation-access-card img {
    display: block;
    width: 11rem;
    max-width: 70%;
    height: auto;
    margin-bottom: 1.35rem;
}

.presentation-access-card h1 {
    margin: 0;
    color: var(--text);
    font-size: clamp(1.8rem, 5vw, 2.4rem);
    font-weight: 850;
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.presentation-access-card p:not(.eyebrow) {
    margin: 0.8rem 0 0;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.55;
}

.presentation-access-form {
    display: grid;
    gap: 1rem;
    margin-top: 1.35rem;
}

.presentation-access-form label span {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.presentation-access-form input {
    width: 100%;
    min-height: 3.15rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #ffffff;
    color: var(--text);
    padding: 0 1rem;
    font-size: 1rem;
    font-weight: 700;
    outline: none;
    transition: border-color 200ms ease, box-shadow 200ms ease;
}

.presentation-access-form input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
}

.presentation-access-form .primary-button {
    width: 100%;
    min-height: 3rem;
}

.presentation-access-alert {
    margin-top: 1rem;
    border: 1px solid #fecaca;
    border-radius: 14px;
    background: #fff1f2;
    color: var(--danger);
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
    font-weight: 700;
}

.presentation-access-card > a {
    display: inline-flex;
    margin-top: 1.1rem;
    color: var(--green);
    font-size: 0.88rem;
    font-weight: 750;
    text-decoration: none;
}

.presentation-access-card > a:hover {
    text-decoration: underline;
}

.premium-app {
    min-height: 100vh;
}

.premium-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
    min-height: 100vh;
    padding: 1.25rem;
    overflow-x: hidden;
    overflow-y: auto;
}

.hero-panel,
.filter-card,
.table-card,
.footer-metrics,
.summary-card {
    border: 1px solid rgba(231, 235, 240, 0.9);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
}

.hero-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex: 0 0 auto;
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.35rem;
}

.eyebrow {
    margin: 0 0 0.35rem;
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-panel h1 {
    margin: 0;
    color: var(--text);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.hero-panel p {
    max-width: 52rem;
    margin: 0.45rem 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex: 0 0 auto;
}

.primary-button,
.secondary-button,
.apply-button,
.filter-toggle {
    min-height: 2.5rem;
    border-radius: 999px;
    padding: 0 1rem;
    font-size: 0.86rem;
    font-weight: 750;
    transition: background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.primary-button,
.apply-button {
    border: 1px solid var(--green);
    background: var(--green);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(22, 163, 74, 0.22);
}

.secondary-button,
.filter-toggle {
    border: 1px solid var(--line);
    background: #ffffff;
    color: var(--text);
}

.primary-button:hover,
.apply-button:hover,
.secondary-button:hover,
.filter-toggle:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 0.75rem;
    flex: 0 0 auto;
}

.summary-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    min-width: 0;
    min-height: 6.15rem;
    border-radius: var(--radius-lg);
    padding: 0.95rem;
    transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.summary-card:hover {
    border-color: var(--green-line);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.card-icon {
    display: grid;
    flex: 0 0 auto;
    width: 2.15rem;
    height: 2.15rem;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--panel-soft);
    color: var(--green);
    font-size: 1rem;
    font-weight: 800;
}

.summary-card.accent-green .card-icon {
    border-color: var(--green-line);
    background: var(--green-soft);
}

.summary-card div {
    min-width: 0;
}

.summary-card span:not(.card-icon),
.footer-metrics span,
.field-control span {
    display: block;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.summary-card strong {
    display: block;
    margin-top: 0.25rem;
    overflow: hidden;
    color: var(--text);
    font-size: clamp(1.05rem, 1.35vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: opacity 200ms ease, transform 200ms ease;
}

.summary-card strong.is-updating,
.footer-metrics strong.is-updating {
    animation: valueFade 220ms ease;
}

.summary-card small {
    display: block;
    margin-top: 0.2rem;
    overflow: hidden;
    color: var(--muted-soft);
    font-size: 0.72rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.summary-card small[data-summary-detail] {
    margin-top: 0.3rem;
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 650;
    letter-spacing: -0.01em;
}

.filter-card {
    flex: 0 0 auto;
    border-radius: var(--radius-lg);
    padding: 1rem;
}

.filter-card-header,
.table-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.9rem;
}

.filter-card h2,
.table-card h2 {
    margin: 0;
    color: var(--text);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.filter-card p,
.table-card p {
    margin: 0.18rem 0 0;
    color: var(--muted);
    font-size: 0.84rem;
}

.filter-toggle {
    display: none;
}

.filter-grid {
    display: grid;
    grid-template-columns: minmax(14rem, 1.5fr) repeat(5, minmax(8rem, 1fr)) auto;
    gap: 0.75rem;
    align-items: end;
}

.field-control {
    display: grid;
    gap: 0.4rem;
    min-width: 0;
}

.field-control input,
.field-control select {
    width: 100%;
    min-height: 2.65rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #ffffff;
    color: var(--text);
    outline: none;
    padding: 0 0.75rem;
    font-size: 0.9rem;
    transition: border-color 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
}

.field-control input:focus,
.field-control select:focus,
.percent-input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
}

.table-card {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.table-card-header {
    flex: 0 0 auto;
    margin: 0;
    padding: 1rem 1rem 0.75rem;
}

.table-scroll {
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: auto;
    overflow-y: auto;
}

.estimator-table {
    width: max-content;
    min-width: 150rem;
    table-layout: auto;
    border-collapse: separate;
    border-spacing: 0;
}

.estimator-table th,
.estimator-table td {
    min-width: 6.5rem;
    overflow: visible;
    padding: 0.58rem 0.55rem;
    border-bottom: 1px solid var(--line-soft);
    color: #344054;
    font-size: 0.8125rem;
    line-height: 1.35;
    text-align: right;
    text-overflow: clip;
    white-space: nowrap;
}

.estimator-table tbody tr:nth-child(even) {
    background: #fcfdff;
}

.estimator-table tbody tr {
    transition: background-color 200ms ease;
}

.estimator-table tbody tr:hover {
    background: #f4fbf6;
}

.estimator-table th {
    position: sticky;
    top: 0;
    z-index: 2;
    border-bottom-color: var(--line);
    background: rgba(255, 255, 255, 0.96);
    color: var(--muted);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.estimator-table th button {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    letter-spacing: inherit;
    text-align: inherit;
    text-transform: inherit;
}

.estimator-table th button::after {
    content: "↕";
    margin-left: 0.16rem;
    color: #b7c0ca;
    font-size: 0.62rem;
}

.estimator-table th button.is-active[data-direction="asc"]::after {
    content: "↑";
    color: var(--green);
}

.estimator-table th button.is-active[data-direction="desc"]::after {
    content: "↓";
    color: var(--green);
}

.estimator-table th:first-child,
.estimator-table td:first-child {
    min-width: 10.5rem;
}

.estimator-table th:nth-child(2),
.estimator-table td:nth-child(2) {
    min-width: 8rem;
}

.estimator-table th:nth-child(3),
.estimator-table td:nth-child(3) {
    min-width: 5.6rem;
}

.estimator-table th:nth-child(4),
.estimator-table td:nth-child(4),
.estimator-table th:nth-child(5),
.estimator-table td:nth-child(5) {
    min-width: 6rem;
}

.estimator-table th:nth-child(6),
.estimator-table td:nth-child(6),
.estimator-table th:nth-child(7),
.estimator-table td:nth-child(7) {
    min-width: 10rem;
}

.estimator-table th:nth-child(8),
.estimator-table td:nth-child(8) {
    min-width: 9.5rem;
}

.estimator-table th:nth-child(9),
.estimator-table td:nth-child(9),
.estimator-table th:nth-child(10),
.estimator-table td:nth-child(10),
.estimator-table th:nth-child(11),
.estimator-table td:nth-child(11),
.estimator-table th:nth-child(12),
.estimator-table td:nth-child(12),
.estimator-table th:nth-child(13),
.estimator-table td:nth-child(13) {
    min-width: 11.5rem;
}

.estimator-table th:nth-child(14),
.estimator-table td:nth-child(14) {
    min-width: 5.4rem;
}

.estimator-table th:nth-child(15),
.estimator-table td:nth-child(15) {
    min-width: 9.5rem;
}

.estimator-table th:nth-child(16),
.estimator-table td:nth-child(16),
.estimator-table th:nth-child(17),
.estimator-table td:nth-child(17),
.estimator-table th:nth-child(18),
.estimator-table td:nth-child(18) {
    min-width: 11.5rem;
}

.estimator-table th:first-child,
.estimator-table td:first-child,
.estimator-table th:nth-child(2),
.estimator-table td:nth-child(2),
.estimator-table th:nth-child(3),
.estimator-table td:nth-child(3),
.estimator-table th:nth-child(6),
.estimator-table td:nth-child(6),
.estimator-table th:nth-child(7),
.estimator-table td:nth-child(7) {
    text-align: left;
}

.estimator-table th:first-child button,
.estimator-table th:nth-child(2) button,
.estimator-table th:nth-child(3) button,
.estimator-table th:nth-child(6) button,
.estimator-table th:nth-child(7) button {
    justify-content: flex-start;
}

.neighborhood-link {
    display: inline;
    max-width: 100%;
    border: 0;
    background: transparent;
    color: #0f7a3a;
    padding: 0;
    font: inherit;
    font-weight: 800;
    text-align: left;
    text-decoration: underline;
    text-decoration-color: rgba(22, 163, 74, 0.35);
    text-underline-offset: 0.18rem;
}

.neighborhood-link:hover,
.neighborhood-link:focus {
    color: var(--green);
    outline: none;
    text-decoration-color: currentColor;
}

.company-badge,
.priority-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    min-height: 1.45rem;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0.12rem 0.5rem;
    background: #f2f4f7;
    color: #475467;
    font-size: 0.68rem;
    font-weight: 750;
}

.priority-badge.is-priority {
    border-color: var(--green-line);
    background: var(--green-soft);
    color: var(--green);
}

.percent-control {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    min-height: 1.9rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #ffffff;
    padding: 0 0.45rem;
    transition: border-color 200ms ease, box-shadow 200ms ease;
}

.percent-control:focus-within {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
}

.percent-control span {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
}

.percent-input {
    width: 100%;
    min-width: 0;
    border: 0;
    background: transparent;
    color: var(--text);
    outline: 0;
    padding: 0 0.18rem 0 0;
    font-size: 0.78rem;
    font-weight: 800;
    text-align: right;
}

.positive {
    color: var(--green) !important;
    font-weight: 800;
}

.loading {
    display: grid;
    gap: 0.55rem;
    padding: 1rem;
}

.loading span {
    display: block;
    height: 2.25rem;
    border-radius: 12px;
    background: linear-gradient(90deg, #eef2f6 25%, #f8fafc 38%, #eef2f6 63%);
    background-size: 400% 100%;
    animation: shimmer 1.2s ease-in-out infinite;
}

.error {
    margin: 1rem;
    border-radius: 14px;
    padding: 1rem;
    background: #fef3f2;
    color: var(--danger);
    font-weight: 700;
}

.footer-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    flex: 0 0 auto;
    border-radius: var(--radius-lg);
    padding: 0.75rem;
}

.footer-metrics article {
    min-width: 0;
    border-radius: var(--radius-md);
    background: var(--panel-soft);
    padding: 0.8rem 0.9rem;
}

.footer-metrics strong {
    display: block;
    margin-top: 0.2rem;
    overflow: hidden;
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.has-neighborhood-map-modal {
    overflow: hidden;
}

.neighborhood-map-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: 1.25rem;
}

.neighborhood-map-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.62);
}

.neighborhood-map-dialog {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: min(96rem, 96vw);
    height: min(52rem, 92vh);
    overflow: hidden;
    border: 1px solid rgba(231, 235, 240, 0.9);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: 0 24px 80px rgba(16, 24, 40, 0.28);
}

.neighborhood-map-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex: 0 0 auto;
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.1rem;
}

.neighborhood-map-header h2 {
    margin: 0;
    color: var(--text);
    font-size: 1.35rem;
    font-weight: 850;
    letter-spacing: -0.025em;
}

.neighborhood-map-header p:not(.eyebrow) {
    margin: 0.28rem 0 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.neighborhood-map-metrics {
    display: grid;
    grid-template-columns: minmax(25rem, 1.02fr) minmax(30rem, 1.2fr) minmax(20rem, 0.92fr) minmax(8.5rem, 0.36fr);
    align-items: stretch;
    gap: 0.7rem;
    margin-top: 0.85rem;
    max-width: 86rem;
}

.neighborhood-map-metric-group {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #ffffff;
    padding: 0.55rem;
}

.neighborhood-map-metric-group h3 {
    margin: 0 0 0.45rem;
    color: var(--muted);
    font-size: 0.66rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.neighborhood-map-metric-group div {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
}

.neighborhood-map-metric-group:nth-child(2) div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.neighborhood-map-metric-group:nth-child(3) div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.neighborhood-map-metric-group:nth-child(4) div {
    grid-template-columns: 1fr;
}

.neighborhood-map-metrics article {
    min-width: 0;
    border-radius: 9px;
    background: var(--panel-soft);
    padding: 0.5rem 0.58rem;
}

.neighborhood-map-metrics article.is-danger {
    border: 1px solid #fecdca;
    background: #fef3f2;
}

.neighborhood-map-metrics span {
    display: block;
    color: var(--muted);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.neighborhood-map-metrics strong {
    display: block;
    margin-top: 0.18rem;
    overflow: hidden;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 850;
    letter-spacing: -0.015em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.neighborhood-map-metrics article.is-danger strong {
    color: var(--danger);
}

.neighborhood-map-metric-group:nth-child(2) strong {
    text-overflow: ellipsis;
    white-space: nowrap;
}

.neighborhood-map-close {
    display: grid;
    flex: 0 0 auto;
    width: 2.35rem;
    height: 2.35rem;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #ffffff;
    color: var(--text);
    font-size: 1.55rem;
    line-height: 1;
}

.neighborhood-map-close:hover,
.neighborhood-map-close:focus {
    border-color: var(--green-line);
    color: var(--green);
    outline: none;
}

.neighborhood-map-body {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    background: #e5e7eb;
}

.neighborhood-map-canvas {
    width: 100%;
    height: 100%;
    min-height: 28rem;
}

.neighborhood-map-status {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 500;
    max-width: min(32rem, calc(100% - 2rem));
    border: 1px solid var(--green-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--green);
    box-shadow: var(--shadow-md);
    padding: 0.55rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 800;
}

.neighborhood-map-status.is-error {
    border-color: #fecdca;
    color: var(--danger);
}

@keyframes shimmer {
    0% { background-position: 100% 0; }
    100% { background-position: 0 0; }
}

@keyframes valueFade {
    0% { opacity: 0.55; transform: translateY(2px); }
    100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1400px) {
    .premium-main {
        padding: 1rem;
    }

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

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

    .apply-button {
        width: 100%;
    }

    .neighborhood-map-metrics {
        grid-template-columns: 1fr;
        max-width: 62rem;
    }

    .neighborhood-map-metric-group:nth-child(2) div {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .premium-main {
        height: auto;
        min-height: calc(100vh - 6rem);
        overflow: visible;
    }

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

    .table-card {
        min-height: 34rem;
    }
}

@media (max-width: 760px) {
    .hero-panel {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-panel h1 {
        font-size: 1.7rem;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-actions button {
        flex: 1 1 auto;
    }

    .summary-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 0.25rem;
    }

    .summary-card {
        flex: 0 0 78%;
        scroll-snap-align: start;
    }

    .filter-card-header {
        margin-bottom: 0;
    }

    .filter-toggle {
        display: inline-flex;
        align-items: center;
    }

    .filter-grid {
        grid-template-columns: 1fr;
        margin-top: 0.85rem;
    }

    .filter-grid.is-collapsed {
        display: none;
    }

    .table-scroll {
        overflow-x: auto;
    }

    .estimator-table {
        min-width: 96rem;
    }

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

    .neighborhood-map-modal {
        padding: 0.5rem;
    }

    .neighborhood-map-dialog {
        width: calc(100vw - 1rem);
        height: calc(100vh - 1rem);
    }

    .neighborhood-map-header {
        padding: 0.85rem;
    }

    .neighborhood-map-header h2 {
        font-size: 1.1rem;
    }

    .neighborhood-map-metrics,
    .neighborhood-map-metric-group div,
    .neighborhood-map-metric-group:nth-child(2) div,
    .neighborhood-map-metric-group:nth-child(3) div {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

[hidden],
.loading[hidden],
.error[hidden],
.estimator-table[hidden],
.neighborhood-map-modal[hidden] {
    display: none !important;
}
