html,
body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: "Inter", "Segoe UI", Arial, "Microsoft YaHei", sans-serif;
    color: #20242a;
    background: #ffffff;
}

body {
    overflow: hidden;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 58px;
    z-index: 2000;
    display: grid;
    grid-template-columns: 220px minmax(300px, 430px) minmax(420px, 1fr);
    align-items: center;
    gap: 24px;
    padding: 0 24px 0 18px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e8ebee;
    box-sizing: border-box;
}

.brand-left,
.brand-right {
    display: flex;
    align-items: center;
    min-width: 0;
}

.brand-left {
    gap: 12px;
    color: inherit;
    text-decoration: none;
}

.brand-right {
    justify-content: flex-end;
    gap: 28px;
    overflow: hidden;
}

.brand-right a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.fieldwork-logo {
    width: 28px;
    height: 42px;
    object-fit: contain;
}

.fieldwork-wordmark {
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0;
    white-space: nowrap;
}

.hmyrd-logo {
    height: 38px;
    max-width: min(42vw, 500px);
    object-fit: contain;
}

.nottingham-logo {
    height: 34px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(42px, 8vw, 120px);
}

.site-nav button {
    appearance: none;
    border: 0;
    background: transparent;
    color: #20242a;
    font: inherit;
    font-size: 18px;
    line-height: 1;
    padding: 18px 6px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    outline: none;
}

.site-nav button.active {
    font-weight: 650;
    border-bottom-color: #20242a;
}

.site-nav button:focus-visible {
    outline: 1px solid #9aa5af;
    outline-offset: 3px;
}

.site-page {
    position: absolute;
    left: 0;
    right: 0;
    top: 58px;
    bottom: 0;
    background: #ffffff;
}

.site-page[hidden] {
    display: none !important;
}

#mapPage {
    overflow: hidden;
}

#map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.map-filters {
    position: absolute;
    z-index: 1000;
    top: 14px;
    left: 76px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    max-width: calc(100vw - 150px);
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(216, 222, 228, 0.92);
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(8px);
}

.map-filters .filter-search input {
    width: 190px;
    height: 26px;
    box-sizing: border-box;
    border: 1px solid #cfd6dd;
    border-radius: 2px;
    padding: 0 8px;
    font-size: 12px;
}

.map-filters label {
    display: grid;
    gap: 3px;
}

.map-filters span {
    font-size: 10px;
    line-height: 1;
    color: #68737d;
}

.map-filters select {
    width: 120px;
    height: 26px;
    border: 1px solid #cfd6dd;
    border-radius: 2px;
    background: #ffffff;
    color: #20242a;
    font-size: 12px;
}

.filter-year-range {
    width: 176px;
}

.year-range-control {
    position: relative;
    height: 26px;
    --range-fill-left: 0%;
    --range-fill-right: 0%;
}

.year-range-control::before,
.year-range-fill {
    position: absolute;
    left: 0;
    right: 0;
    top: 11px;
    height: 4px;
    border-radius: 999px;
    content: "";
}

.year-range-control::before {
    background: #d8dee5;
}

.year-range-fill {
    left: var(--range-fill-left);
    right: var(--range-fill-right);
    background: #1f6fb7;
}

.year-range-control input[type="range"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 26px;
    margin: 0;
    appearance: none;
    background: transparent;
    pointer-events: none;
}

.year-range-control input[type="range"]::-webkit-slider-runnable-track {
    height: 4px;
    background: transparent;
}

.year-range-control input[type="range"]::-moz-range-track {
    height: 4px;
    background: transparent;
}

.year-range-control input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 14px;
    height: 14px;
    margin-top: -5px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: #1f6fb7;
    box-shadow: 0 1px 5px rgba(15, 23, 42, 0.28);
    cursor: pointer;
    pointer-events: auto;
}

.year-range-control input[type="range"]::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: #1f6fb7;
    box-shadow: 0 1px 5px rgba(15, 23, 42, 0.28);
    cursor: pointer;
    pointer-events: auto;
}

#yearMinRange {
    z-index: 3;
}

#yearMaxRange {
    z-index: 2;
}

#yearRangeLabel {
    font-size: 11px;
    color: #596673;
}

.map-filters button {
    height: 26px;
    border: 1px solid #1f6fb7;
    border-radius: 2px;
    padding: 0 12px;
    font-size: 12px;
    cursor: pointer;
}

.map-filters button[type="submit"] {
    background: #1f6fb7;
    color: #ffffff;
}

.map-filters button[type="button"] {
    background: #f3f6f8;
    border-color: #d5dce2;
    color: #69737d;
}

.result-count {
    align-self: center;
    min-width: 120px;
    color: #596673;
    font-size: 12px;
    white-space: nowrap;
}

.category-legend {
    position: absolute;
    z-index: 1000;
    left: 14px;
    bottom: 34px;
    width: 250px;
    max-height: min(430px, calc(100vh - 170px));
    overflow: hidden;
    border: 1px solid rgba(216, 222, 228, 0.94);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 5px 18px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(8px);
}

#legendToggle {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #e3e8ed;
    background: transparent;
    padding: 10px 12px;
    text-align: left;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.legend-items {
    max-height: 374px;
    overflow: auto;
    padding: 8px 10px 10px;
}

.category-legend.is-collapsed .legend-items {
    display: none;
}

.legend-item {
    display: grid;
    grid-template-columns: 22px 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    font-size: 12px;
}

.legend-count {
    color: #68737d;
}

.legend-swatch {
    width: 16px;
    height: 16px;
    border: 1.5px solid #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #ffffff;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.24);
}

.legend-swatch i {
    font-size: 7px;
}

.detail-panel {
    position: absolute;
    z-index: 1100;
    top: 158px;
    right: 18px;
    width: min(370px, calc(100vw - 36px));
    max-height: calc(100vh - 196px);
    overflow: auto;
    border: 1px solid rgba(216, 222, 228, 0.94);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(10px);
    padding: 22px 20px 18px;
}

.detail-close {
    position: absolute;
    top: 8px;
    right: 10px;
    border: 0;
    background: transparent;
    color: #5c6670;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.detail-panel h2 {
    margin: 0 22px 14px 0;
    font-size: 20px;
    line-height: 1.25;
}

.detail-panel dl {
    display: grid;
    grid-template-columns: 108px 1fr;
    gap: 0;
    margin: 0;
}

.detail-panel dt,
.detail-panel dd {
    border-top: 1px solid #edf1f4;
    padding: 9px 0;
}

.detail-panel dt {
    color: #596673;
    font-weight: 700;
}

.detail-panel dd {
    margin: 0;
    overflow-wrap: anywhere;
}

.detail-panel a {
    color: #2478c4;
    text-decoration: none;
}

#filters,
.filters,
.filter-container,
.qgis2web-filter {
    display: none !important;
}

.content-page {
    overflow: auto;
    padding: 42px 24px 88px;
    box-sizing: border-box;
}

.content-inner {
    max-width: 1280px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.48;
}

.content-inner h1 {
    margin: 0 0 26px;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
}

.content-inner h2 {
    margin: 22px 0 4px;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
}

.content-inner p {
    margin: 0 0 14px;
}

.content-inner a {
    color: #2478c4;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}

.page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 34px;
    align-items: start;
    margin-bottom: 30px;
    padding-bottom: 26px;
    border-bottom: 1px solid #d9dee4;
}

.page-kicker {
    margin: 0 0 10px !important;
    color: #68737d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-hero h1 {
    max-width: 760px;
    margin: 0 0 14px;
    font-size: 26px;
    line-height: 1.18;
    font-weight: 750;
}

.page-lede {
    max-width: 920px;
    margin: 0 !important;
    color: #3e4750;
    font-size: 17px;
    line-height: 1.58;
}

.page-meta {
    margin: 0;
    border-top: 1px solid #d9dee4;
}

.page-meta div {
    padding: 13px 0;
    border-bottom: 1px solid #e8edf1;
}

.page-meta dt {
    margin-bottom: 5px;
    color: #68737d;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.page-meta dd {
    margin: 0;
    color: #20242a;
    font-size: 14px;
    line-height: 1.45;
}

.text-panel {
    max-width: 980px;
    margin: 0 0 34px;
}

.text-panel h2,
.section-heading h2 {
    margin-top: 0;
}

.text-panel p {
    color: #3e4750;
    font-size: 16px;
    line-height: 1.62;
}

.info-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 0 0 34px;
    padding-top: 18px;
    border-top: 1px solid #d9dee4;
}

.info-panel div {
    min-width: 0;
}

.info-panel h2 {
    margin-top: 0;
}

.info-panel p {
    color: #3e4750;
    line-height: 1.58;
}

.method-panel {
    margin: 0 0 34px;
    padding-top: 18px;
    border-top: 1px solid #d9dee4;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(180px, 0.32fr) minmax(0, 0.68fr);
    gap: 24px;
    align-items: start;
    margin-bottom: 18px;
}

.section-heading p {
    margin: 0;
    color: #596673;
}

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

.method-steps article {
    min-width: 0;
    padding-top: 12px;
    border-top: 1px solid #e2e7eb;
}

.method-steps span {
    display: block;
    margin-bottom: 18px;
    color: #8b98a3;
    font-size: 12px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.method-steps h3 {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.35;
}

.method-steps p {
    margin: 0;
    color: #4c5660;
    font-size: 14px;
    line-height: 1.55;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    gap: 18px;
    margin: 26px 0 34px;
}

.data-item {
    border-top: 1px solid #d9dee4;
    padding-top: 12px;
}

.data-value {
    display: block;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 700;
}

.data-label {
    display: block;
    margin-top: 7px;
    color: #68737d;
}

.data-insight-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
    gap: 18px;
    margin: 0 0 34px;
}

.data-chart {
    min-width: 0;
    border-top: 1px solid #d9dee4;
    padding-top: 13px;
}

.data-chart-wide {
    grid-row: span 2;
}

.data-chart-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.data-chart-header h2 {
    margin: 0;
}

.data-chart-note {
    color: #7a858f;
    font-size: 12px;
    white-space: nowrap;
}

.bar-chart,
.rank-chart,
.method-chart {
    display: grid;
    gap: 9px;
}

.chart-row {
    display: grid;
    grid-template-columns: minmax(145px, 0.92fr) minmax(0, 1.7fr) 46px;
    align-items: center;
    gap: 10px;
    min-height: 25px;
    font-size: 13px;
}

.chart-label {
    overflow: hidden;
    color: #2d3339;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.chart-track {
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: #edf1f4;
}

.chart-fill {
    display: block;
    height: 100%;
    min-width: 2px;
    border-radius: 999px;
    background: #2f6f9f;
}

.chart-value {
    color: #68737d;
    font-variant-numeric: tabular-nums;
    text-align: right;
}

.timeline-chart svg {
    display: block;
    width: 100%;
    height: auto;
}

.timeline-axis,
.timeline-grid {
    stroke: #dfe5ea;
    stroke-width: 1;
}

.timeline-line {
    fill: none;
    stroke: #2f6f9f;
    stroke-width: 2.4;
}

.timeline-area {
    fill: rgba(47, 111, 159, 0.12);
}

.timeline-point {
    fill: #ffffff;
    stroke: #2f6f9f;
    stroke-width: 1.8;
}

.timeline-label {
    fill: #68737d;
    font-size: 11px;
}

.area-bins {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: end;
    gap: 10px;
    min-height: 150px;
}

.area-bin {
    display: grid;
    grid-template-rows: 1fr auto auto;
    align-items: end;
    gap: 6px;
    min-width: 0;
}

.area-bin-bar {
    width: 100%;
    min-height: 3px;
    border-radius: 4px 4px 0 0;
    background: #6f7f8d;
}

.area-bin-value {
    color: #2d3339;
    font-size: 13px;
    font-variant-numeric: tabular-nums;
    text-align: center;
}

.area-bin-label {
    overflow: hidden;
    color: #68737d;
    font-size: 11px;
    line-height: 1.2;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.data-empty {
    padding: 18px 0;
    color: #7a858f;
    font-size: 13px;
}

.admin-page {
    padding: 22px;
}

.admin-page [hidden] {
    display: none !important;
}

.admin-shell {
    display: grid;
    grid-template-columns: 430px minmax(0, 1fr);
    gap: 18px;
    height: 100%;
}

.admin-login {
    min-height: 100%;
    display: grid;
    place-items: center;
}

.admin-login-box {
    width: min(420px, 100%);
    border: 1px solid #d9dee4;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    padding: 24px;
}

.admin-login-box h1 {
    margin: 0 0 8px;
    font-size: 22px;
}

.admin-login-box p {
    margin: 0 0 18px;
    color: #68737d;
    font-size: 13px;
    line-height: 1.45;
}

.admin-login-box label {
    display: grid;
    gap: 5px;
}

.admin-login-box span {
    color: #68737d;
    font-size: 11px;
}

.admin-login-box input {
    border: 1px solid #cfd6dd;
    border-radius: 4px;
    padding: 9px 10px;
    font: inherit;
}

.admin-login-box button {
    width: 100%;
    margin-top: 14px;
    border: 1px solid #1f6fb7;
    border-radius: 4px;
    background: #1f6fb7;
    color: #ffffff;
    font: inherit;
    padding: 10px 12px;
    cursor: pointer;
}

.admin-login-error {
    margin-top: 12px;
    color: #a33;
    font-size: 13px;
}

.admin-panel,
.admin-table-panel {
    min-height: 0;
    border: 1px solid #d9dee4;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 5px 18px rgba(15, 23, 42, 0.06);
}

.admin-panel {
    overflow: auto;
    padding: 18px;
}

.admin-panel h1 {
    margin: 0 0 8px;
    font-size: 20px;
}

.admin-panel p {
    margin: 0 0 16px;
    color: #68737d;
    font-size: 13px;
    line-height: 1.45;
}

.admin-actions,
.admin-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.admin-actions button,
.file-button,
.admin-download-link,
.admin-form-actions button,
.admin-table button {
    border: 1px solid #cfd6dd;
    border-radius: 4px;
    background: #f7f9fb;
    color: #20242a;
    font: inherit;
    font-size: 12px;
    line-height: 1;
    padding: 9px 10px;
    cursor: pointer;
    text-decoration: none;
}

.admin-form-actions button[type="submit"] {
    background: #1f6fb7;
    border-color: #1f6fb7;
    color: #ffffff;
}

.admin-status {
    margin: -4px 0 14px;
    padding: 9px 10px;
    border: 1px solid #bfd8c8;
    border-radius: 4px;
    background: #f1f8f3;
    color: #235c38;
    font-size: 13px;
}

.admin-status.is-error {
    border-color: #e4b7b7;
    background: #fff3f3;
    color: #9a2d2d;
}

.file-button {
    position: relative;
    overflow: hidden;
}

.file-button input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.admin-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
}

.admin-form label,
.admin-table-header label {
    display: grid;
    gap: 4px;
}

.admin-form span,
.admin-table-header span {
    color: #68737d;
    font-size: 11px;
}

.admin-form input,
.admin-form textarea,
.admin-table-header input {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #cfd6dd;
    border-radius: 4px;
    padding: 8px 9px;
    font: inherit;
    font-size: 13px;
}

.admin-wide,
.admin-form-actions {
    grid-column: 1 / -1;
}

.admin-table-panel {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
}

.admin-table-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-bottom: 1px solid #e6ebef;
}

.admin-table-header label {
    width: min(460px, 100%);
}

.admin-count {
    color: #68737d;
    font-size: 12px;
    white-space: nowrap;
}

.admin-table-wrap {
    overflow: auto;
}

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

.admin-table th,
.admin-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #eef2f5;
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: #f7f9fb;
    color: #596673;
    font-weight: 650;
}

.admin-table td:first-child {
    font-weight: 650;
}

.admin-row-actions {
    display: flex;
    gap: 6px;
    justify-content: flex-end;
}

.admin-row-actions button {
    padding: 6px 8px;
}

.admin-row-actions button:last-child {
    color: #a33;
}

.leaflet-top {
    top: 10px;
}

.leaflet-tile-pane {
    filter: saturate(0.72) contrast(0.96) brightness(1.03);
}

.category-marker {
    width: 16px;
    height: 16px;
    border: 1.5px solid #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #ffffff;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.24);
    transform: scale(var(--marker-scale, 0.72));
    transform-origin: center;
    transition: transform 120ms ease, box-shadow 120ms ease;
}

.category-marker i {
    font-size: 7px;
    line-height: 1;
}

.category-marker.is-dark {
    color: #ffffff;
}

.category-marker.is-light {
    color: #20242a;
}

.category-marker:hover {
    transform: scale(calc(var(--marker-scale, 0.72) * 1.28));
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.34);
}

#map.marker-zoom-far {
    --marker-scale: 0.56;
}

#map.marker-zoom-regional {
    --marker-scale: 0.68;
}

#map.marker-zoom-local {
    --marker-scale: 0.86;
}

#map.marker-zoom-close {
    --marker-scale: 1;
}

.leaflet-popup-content {
    min-width: 280px;
    max-width: 380px;
    margin: 16px 18px;
    font-size: 13px;
    line-height: 1.45;
}

.leaflet-popup-content table {
    width: 100%;
    border-collapse: collapse;
}

.leaflet-popup-content th,
.leaflet-popup-content td {
    padding: 6px 4px;
    border-bottom: 1px solid #edf0f2;
    vertical-align: top;
}

.leaflet-popup-content th {
    width: 35%;
    color: #5d6873;
    font-weight: 700;
    text-align: left;
}

.leaflet-popup-content .popup-title {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 4px;
}

.leaflet-popup-content a {
    color: #2478c4;
    overflow-wrap: anywhere;
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: 1fr auto;
        gap: 12px;
        padding: 0 12px;
    }

    .brand-right {
        display: none;
    }

    .site-nav {
        gap: 18px;
    }

    .site-nav button {
        font-size: 15px;
        padding: 18px 2px;
    }

    .fieldwork-wordmark {
        font-size: 17px;
    }

    .data-grid {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
    }

    .page-hero,
    .section-heading,
    .info-panel,
    .method-steps {
        grid-template-columns: 1fr;
    }

    .page-hero {
        gap: 20px;
    }

    .data-insight-grid {
        grid-template-columns: 1fr;
    }

    .data-chart-wide {
        grid-row: auto;
    }

    .admin-shell {
        grid-template-columns: 1fr;
        height: auto;
    }

    .admin-page {
        overflow: auto;
    }

    .map-filters {
        left: 58px;
        right: 10px;
        max-width: none;
        overflow-x: auto;
    }

    .map-filters select {
        width: 118px;
    }

    .map-filters .filter-search input {
        width: 160px;
    }

    .filter-year-range {
        width: 150px;
    }

    .detail-panel {
        top: 148px;
        left: 10px;
        right: 10px;
        width: auto;
        max-height: calc(100vh - 188px);
    }

    .category-legend {
        width: 220px;
        max-height: 280px;
    }
}

@media (max-width: 560px) {
    .site-header {
        height: 54px;
    }

    .site-page {
        top: 54px;
    }

    .fieldwork-logo {
        width: 22px;
        height: 34px;
    }

    .fieldwork-wordmark {
        font-size: 15px;
    }

    .site-nav {
        gap: 10px;
    }

    .content-page {
        padding: 38px 18px 64px;
    }

    .content-inner {
        font-size: 14px;
    }

    .page-hero h1 {
        font-size: 22px;
    }

    .page-lede {
        font-size: 15px;
    }

    .data-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .chart-row {
        grid-template-columns: minmax(105px, 0.9fr) minmax(0, 1.2fr) 38px;
        gap: 8px;
        font-size: 12px;
    }

    .area-bins {
        gap: 7px;
    }

    .area-bin-label {
        font-size: 10px;
    }
}
