:root {
  color-scheme: light;
  --bg: #edf3f1;
  --surface: rgba(255, 255, 255, 0.62);
  --surface-2: rgba(246, 251, 248, 0.58);
  --surface-strong: rgba(255, 255, 255, 0.78);
  --glass: rgba(255, 255, 255, 0.56);
  --glass-strong: rgba(255, 255, 255, 0.74);
  --ink: #13211f;
  --muted: #5e6f6c;
  --line: rgba(102, 124, 119, 0.26);
  --line-strong: rgba(83, 105, 100, 0.34);
  --sow: #2e8f68;
  --sow-dark: #1c6d50;
  --transplant: #6f68cf;
  --transplant-dark: #544ab0;
  --growth: #1f849c;
  --growth-dark: #146a7e;
  --harvest: #c87f26;
  --harvest-dark: #955c12;
  --water: #1f849c;
  --berry: #7a5aa7;
  --danger: #b84d44;
  --shadow: 0 22px 60px rgba(29, 48, 46, 0.16);
  --radius: 8px;
  --blur: blur(18px) saturate(138%);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(135deg, rgba(31, 132, 156, 0.16), transparent 38%),
    linear-gradient(315deg, rgba(200, 127, 38, 0.13), transparent 42%),
    linear-gradient(180deg, #eef5f3 0%, #f7f4ec 100%);
  background-attachment: fixed;
  color: var(--ink);
  font-family:
    "Microsoft YaHei",
    "PingFang SC",
    "Noto Sans CJK SC",
    system-ui,
    sans-serif;
}

button,
input {
  font: inherit;
}

.app-shell {
  min-height: 100vh;
  padding: 22px clamp(14px, 3vw, 34px) 32px;
}

.topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  max-width: 1520px;
  margin: 0 auto 18px;
}

.brand {
  min-width: 0;
}

.kicker {
  margin: 0 0 6px;
  color: var(--water);
  font-size: 13px;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
}

.header-actions {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.summary {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.summary div,
.summary-link {
  min-width: 92px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: 0 10px 30px rgba(24, 43, 40, 0.08);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
}

.summary strong,
.summary-link strong {
  display: block;
  font-size: 25px;
  line-height: 1;
}

.summary-link {
  border-color: rgba(31, 132, 156, 0.42);
  background: linear-gradient(135deg, rgba(31, 132, 156, 0.92), rgba(46, 143, 104, 0.9));
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(37, 133, 157, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.summary-link:hover {
  filter: saturate(1.08);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(37, 133, 157, 0.28);
}

.summary span,
.summary-link span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.summary-link span {
  color: rgba(255, 255, 255, 0.82);
}

.controls {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  max-width: 1520px;
  margin: 0 auto 14px;
}

.search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: 0 10px 28px rgba(24, 43, 40, 0.07);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
}

.search span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.search input::placeholder {
  color: #8a9690;
}

.category-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: thin;
}

.tab {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--muted);
  cursor: pointer;
  backdrop-filter: blur(12px) saturate(128%);
  -webkit-backdrop-filter: blur(12px) saturate(128%);
}

.tab[aria-selected="true"] {
  border-color: rgba(46, 143, 104, 0.38);
  background: rgba(222, 240, 230, 0.72);
  color: #18543b;
  font-weight: 700;
}

.workspace {
  max-width: 1520px;
  margin: 0 auto;
}

.site-footer {
  max-width: 1520px;
  margin: 14px auto 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: 0 10px 28px rgba(24, 43, 40, 0.07);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  text-align: center;
}

.site-footer a {
  display: inline-block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
  overflow-wrap: anywhere;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--water);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer a:focus-visible {
  border-radius: 4px;
  outline: 2px solid rgba(31, 132, 156, 0.28);
  outline-offset: 4px;
}

.timeline-section {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
}

.timeline-meta {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(31, 132, 156, 0.12), rgba(200, 127, 38, 0.1)),
    rgba(255, 255, 255, 0.52);
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.legend span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.legend i {
  width: 30px;
  height: 10px;
  border-radius: 999px;
}

.legend-sow {
  background: var(--sow);
}

.legend-transplant {
  background: var(--transplant);
}

.legend-growth {
  background: var(--growth);
}

.legend-harvest {
  background: var(--harvest);
}

.source {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.chart-scroll {
  overflow: auto;
  max-height: calc(100vh - 220px);
  min-height: 420px;
  scrollbar-color: #a7b9ae #edf4ef;
  scrollbar-width: thin;
}

.chart-grid {
  --label-width: 174px;
  display: grid;
  grid-template-columns: var(--label-width) repeat(12, minmax(68px, 1fr));
  min-width: 1020px;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.chart-grid.is-fading {
  opacity: 0;
  transform: translateY(6px);
}

.corner,
.month-head {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  min-height: 66px;
  border-bottom: 1px solid var(--line-strong);
  background: rgba(250, 253, 251, 0.76);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.corner {
  left: 0;
  z-index: 7;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 6px;
  padding: 7px 10px 8px 12px;
  border-right: 1px solid var(--line-strong);
}

.corner-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px;
  align-items: center;
}

.corner-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.crop-filter-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  max-width: 88px;
  min-height: 28px;
  padding: 0 7px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.crop-filter-trigger:hover,
.crop-filter-trigger:focus-visible,
.crop-filter-trigger.is-active {
  border-color: rgba(46, 143, 104, 0.38);
  background: rgba(230, 244, 236, 0.76);
  color: #18543b;
  outline: 0;
}

.crop-filter-status {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.crop-filter-caret {
  line-height: 1;
}

.crop-filter-menu {
  position: absolute;
  top: calc(100% - 5px);
  left: 8px;
  z-index: 12;
  width: min(260px, calc(100vw - 28px));
  max-height: min(360px, calc(100vh - 160px));
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--glass-strong);
  box-shadow: 0 18px 44px rgba(24, 43, 40, 0.18);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
}

.crop-filter-menu[hidden] {
  display: none;
}

.crop-filter-search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 252, 250, 0.48);
}

.crop-filter-search span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.crop-filter-search input {
  width: 100%;
  min-width: 0;
  min-height: 30px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: 0;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}

.crop-filter-search input::placeholder {
  color: #8a9690;
}

.crop-filter-search input:focus {
  border-color: #8cbca2;
  box-shadow: 0 0 0 3px rgba(47, 148, 97, 0.12);
}

.crop-filter-actions {
  display: flex;
  gap: 6px;
  padding: 8px;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 252, 250, 0.48);
}

.crop-filter-action {
  flex: 1 1 0;
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.crop-filter-action:hover,
.crop-filter-action:focus-visible {
  border-color: rgba(46, 143, 104, 0.38);
  background: rgba(230, 244, 236, 0.76);
  color: #18543b;
  outline: 0;
}

.crop-filter-list {
  max-height: calc(min(360px, calc(100vh - 160px)) - 94px);
  overflow-y: auto;
  padding: 6px;
  scrollbar-width: thin;
}

.crop-filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 5px 7px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.crop-filter-option:hover,
.crop-filter-option:focus-within {
  background: rgba(230, 244, 236, 0.64);
}

.crop-filter-option input {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: var(--sow);
}

.crop-filter-option span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.crop-filter-empty {
  display: grid;
  place-items: center;
  min-height: 72px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.month-head {
  justify-content: center;
  border-right: 1px solid var(--line);
}

.crop-label {
  position: sticky;
  left: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 3px;
  min-width: 0;
  min-height: 70px;
  padding: 9px 12px 9px 14px;
  border: 0;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(14px) saturate(132%);
  -webkit-backdrop-filter: blur(14px) saturate(132%);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  animation: rowEnter 260ms ease both;
  animation-delay: min(calc(var(--row, 0) * 12ms), 160ms);
}

.crop-label:hover,
.crop-label:focus-visible {
  background: rgba(231, 244, 237, 0.78);
  outline: 0;
}

.crop-label strong,
.crop-label span,
.crop-label small {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.crop-label strong {
  font-size: 14px;
  line-height: 1.15;
}

.crop-label span {
  color: var(--muted);
  font-size: 11px;
}

.crop-label small {
  color: #6b5a2d;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

.track {
  position: relative;
  min-height: max(70px, calc(36px + var(--lane-count, 1) * 20px));
  grid-column: span 12;
  border-bottom: 1px solid var(--line);
  background:
    repeating-linear-gradient(
      to right,
      transparent 0,
      transparent calc(8.333333% - 1px),
      rgba(88, 110, 105, 0.2) calc(8.333333% - 1px),
      rgba(88, 110, 105, 0.2) 8.333333%
    ),
    repeating-linear-gradient(
      to right,
      transparent 0,
      transparent calc(2.777777% - 1px),
      rgba(88, 110, 105, 0.08) calc(2.777777% - 1px),
      rgba(88, 110, 105, 0.08) 2.777777%
    ),
    linear-gradient(90deg, rgba(46, 143, 104, 0.055), rgba(200, 127, 38, 0.05)),
    rgba(255, 255, 255, 0.22);
  animation: rowEnter 260ms ease both;
  animation-delay: min(calc(var(--row, 0) * 12ms), 160ms);
}

.track:hover {
  background:
    repeating-linear-gradient(
      to right,
      transparent 0,
      transparent calc(8.333333% - 1px),
      rgba(88, 110, 105, 0.26) calc(8.333333% - 1px),
      rgba(88, 110, 105, 0.26) 8.333333%
    ),
    repeating-linear-gradient(
      to right,
      transparent 0,
      transparent calc(2.777777% - 1px),
      rgba(88, 110, 105, 0.12) calc(2.777777% - 1px),
      rgba(88, 110, 105, 0.12) 2.777777%
    ),
    rgba(255, 255, 255, 0.38);
}

.segment {
  position: absolute;
  left: calc(var(--left) * 1%);
  top: var(--top, 50%);
  transform: translateY(-50%);
  width: max(calc(var(--width) * 1%), 30px);
  height: 16px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 16px;
  text-align: left;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.14),
    0 5px 12px rgba(20, 42, 39, 0.12);
}

.segment span {
  display: block;
  overflow: hidden;
  padding: 0 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.segment:focus-visible {
  outline: 2px solid #123623;
  outline-offset: 2px;
}

.segment.sow,
.segment.seedling,
.segment.direct {
  background: linear-gradient(90deg, var(--sow), var(--sow-dark));
}

.segment.transplant {
  background: linear-gradient(90deg, var(--transplant), var(--transplant-dark));
}

.segment.growth {
  background: linear-gradient(90deg, var(--growth), var(--growth-dark));
}

.segment.harvest {
  background: linear-gradient(90deg, var(--harvest), var(--harvest-dark));
}

.empty-state {
  grid-column: 1 / -1;
  min-height: 260px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 700;
  animation: rowEnter 220ms ease both;
}

@keyframes rowEnter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.shade {
  position: fixed;
  inset: 0;
  z-index: 20;
  background: rgba(17, 28, 22, 0.28);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.shade.open {
  opacity: 1;
  pointer-events: auto;
}

.shade[hidden] {
  display: none;
}

.drawer {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 30;
  width: min(560px, calc(100vw - 28px));
  max-height: min(82vh, 720px);
  overflow: hidden;
  transform: translate(-50%, -48%) scale(0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 200ms ease,
    transform 200ms ease,
    visibility 0s linear 200ms;
}

.drawer.open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 200ms ease,
    transform 200ms ease,
    visibility 0s linear 0s;
}

.drawer-close {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.drawer-close:hover,
.drawer-close:focus-visible {
  border-color: rgba(46, 143, 104, 0.38);
  background: rgba(230, 244, 236, 0.78);
  outline: 0;
}

.drawer-content {
  max-height: min(82vh, 720px);
  overflow-y: auto;
  padding: 28px 24px 26px;
}

.drawer-hero {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(102, 124, 119, 0.22);
}

.drawer-kicker {
  margin: 0 0 7px;
  color: var(--water);
  font-size: 13px;
  font-weight: 800;
}

.drawer h2 {
  margin: 0 42px 8px 0;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: 0;
}

.drawer-source {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.drawer-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin: 18px 0 0;
}

.drawer-highlights div {
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid rgba(102, 124, 119, 0.2);
  border-radius: 8px;
  background: rgba(246, 251, 248, 0.62);
}

.drawer-highlights dt,
.source-details dt {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.drawer-highlights dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.drawer-section {
  padding-top: 20px;
}

.drawer-section h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
}

.drawer-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.drawer-section-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.stage-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stage-item {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  gap: 11px;
  align-items: start;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(102, 124, 119, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
}

.stage-marker {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--sow);
  box-shadow: 0 0 0 4px rgba(46, 143, 104, 0.12);
}

.stage-item.transplant .stage-marker {
  background: var(--transplant);
  box-shadow: 0 0 0 4px rgba(111, 104, 207, 0.12);
}

.stage-item.growth .stage-marker {
  background: var(--growth);
  box-shadow: 0 0 0 4px rgba(31, 132, 156, 0.12);
}

.stage-item.harvest .stage-marker {
  background: var(--harvest);
  box-shadow: 0 0 0 4px rgba(200, 127, 38, 0.14);
}

.stage-copy {
  min-width: 0;
}

.stage-copy strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}

.stage-copy span,
.stage-copy small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.stage-item time {
  max-width: 170px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  text-align: right;
}

.source-details {
  display: grid;
  gap: 9px;
  margin: 11px 0 0;
}

.source-details div {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(102, 124, 119, 0.18);
}

.source-details dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

@media (max-width: 860px) {
  .header-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .app-shell {
    padding: 16px 10px 24px;
  }

  .topbar,
  .controls {
    grid-template-columns: 1fr;
  }

  .topbar {
    align-items: start;
  }

  .summary {
    width: 100%;
  }

  .summary div {
    flex: 1 1 0;
  }

  .timeline-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .source {
    text-align: left;
  }

  .chart-scroll {
    max-height: calc(100vh - 310px);
  }

  .chart-grid {
    --label-width: 136px;
    grid-template-columns: var(--label-width) repeat(12, 62px);
  }

  .crop-label {
    padding-left: 10px;
  }

  .drawer {
    width: calc(100vw - 20px);
    max-height: min(86vh, 660px);
  }

  .drawer-content {
    max-height: min(86vh, 660px);
  }

  .drawer-highlights {
    grid-template-columns: 1fr;
  }

  .stage-item {
    grid-template-columns: 12px minmax(0, 1fr);
  }

  .stage-item time {
    grid-column: 2;
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 32px;
  }

  .search {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .tab {
    min-height: 38px;
    padding: 0 12px;
  }

  .drawer-content {
    padding: 24px 18px 22px;
  }

  .source-details div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .chart-grid,
  .crop-label,
  .track,
  .empty-state,
  .drawer,
  .shade {
    animation: none;
    transition: none;
  }
}
