:root {
  color-scheme: light;
  --bg: #eef3f1;
  --panel: #ffffff;
  --panel-soft: #f7faf8;
  --ink: #15221d;
  --muted: #687972;
  --line: #dbe5e0;
  --brand: #23745f;
  --brand-dark: #155641;
  --accent: #b85d2d;
  --gold: #d49a31;
  --danger: #b53c3c;
  --shadow: 0 18px 45px rgba(26, 52, 43, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(35, 116, 95, 0.12), transparent 34%),
    linear-gradient(225deg, rgba(184, 93, 45, 0.12), transparent 38%),
    var(--bg);
  color: var(--ink);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Microsoft YaHei", sans-serif;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  width: min(100%, 460px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 18px 14px 92px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 2px 14px;
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: 22px;
  line-height: 1.2;
}

h2 {
  font-size: 17px;
}

.icon-button {
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  place-items: center;
  background: var(--panel);
  color: var(--accent);
}

.login-strip,
.mode-switch,
.progress-band,
.section-head,
.action-bar,
.geo-row,
.geo-actions {
  display: flex;
  align-items: center;
}

.login-strip {
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.login-form,
.session-panel {
  display: flex;
  align-items: end;
  width: 100%;
  gap: 8px;
}

.login-form label {
  flex: 1 1 0;
}

.login-form label > span {
  margin-bottom: 4px;
  font-size: 12px;
}

.login-form input {
  min-height: 38px;
}

.session-panel {
  justify-content: space-between;
  align-items: center;
}

.user-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.user-phone {
  color: var(--muted);
  font-size: 12px;
}

.status-pill,
.muted-tag {
  flex: 0 0 auto;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.status-pill {
  background: rgba(35, 116, 95, 0.11);
  color: var(--brand-dark);
}

.as-button {
  border: 0;
}

.muted-tag {
  background: #edf1ee;
  color: var(--muted);
}

.mode-switch {
  margin: 14px 0;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
}

.mode-button {
  flex: 1;
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
}

.mode-button.active {
  background: var(--brand);
  color: #fff;
}

.view,
.form-step {
  display: none;
}

.view.active,
.form-step.active {
  display: block;
}

.progress-band {
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  border-radius: 8px;
  background: var(--brand-dark);
  color: #fff;
}

.progress-band span {
  display: block;
  font-size: 12px;
  opacity: 0.82;
}

.progress-band strong {
  font-size: 20px;
}

.progress-track {
  flex: 1;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.progress-track span {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--gold);
  opacity: 1;
  transition: width 0.2s ease;
}

.step-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin: 14px 0;
}

.step-tab {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--muted);
  font-weight: 700;
}

.step-tab.active {
  border-color: var(--brand);
  background: rgba(35, 116, 95, 0.1);
  color: var(--brand-dark);
}

.form-step,
.admin-section {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.section-head {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.small-action,
.primary-action,
.secondary-action {
  min-height: 40px;
  border-radius: 8px;
  font-weight: 800;
}

.small-action {
  flex: 0 0 auto;
  padding: 0 12px;
  border: 1px solid rgba(35, 116, 95, 0.24);
  background: rgba(35, 116, 95, 0.08);
  color: var(--brand-dark);
}

.field-grid {
  display: grid;
  gap: 12px;
}

label,
fieldset {
  min-width: 0;
}

label > span,
legend,
.geo-row span {
  display: block;
  margin-bottom: 7px;
  color: #43544e;
  font-size: 13px;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: var(--panel-soft);
  color: var(--ink);
}

select[multiple] {
  min-height: 96px;
  padding: 8px 10px;
}

fieldset {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: var(--panel-soft);
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.choice-row label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  color: var(--ink);
}

.choice-row input {
  width: auto;
  min-height: 0;
}

.prefill-list {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.prefill-list button,
.building-item,
.table-list article,
.dashboard-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
}

.prefill-list button {
  padding: 12px;
  text-align: left;
}

.prefill-list span,
.prefill-list small,
.building-item span,
.building-item small,
.table-list span,
.table-list small {
  display: block;
}

.prefill-list span,
.building-item span {
  font-weight: 800;
}

.prefill-list small,
.building-item small,
.table-list span,
.table-list small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.building-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.building-item {
  position: relative;
  padding: 10px;
}

.building-item.active {
  border-color: var(--brand);
  background: rgba(35, 116, 95, 0.09);
}

.delete-inline {
  position: absolute;
  top: 8px;
  right: 8px;
  min-height: 28px;
  border: 1px solid rgba(181, 60, 60, 0.22);
  border-radius: 7px;
  padding: 0 8px;
  background: rgba(181, 60, 60, 0.08);
  color: var(--danger);
  font-size: 12px;
  font-weight: 800;
}

.empty-state {
  border: 1px dashed rgba(35, 116, 95, 0.28);
  border-radius: 8px;
  padding: 18px;
  background: rgba(35, 116, 95, 0.06);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.geo-row {
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
}

.geo-actions {
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.small-action.quiet {
  background: #f5f0df;
  color: #7a5a1c;
}

.geo-row strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  word-break: break-word;
}

.upload-field {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 88px;
  align-content: center;
  border: 1px dashed rgba(35, 116, 95, 0.45);
  border-radius: 8px;
  padding: 14px;
  background: rgba(35, 116, 95, 0.05);
}

.upload-field.large {
  min-height: 128px;
}

.upload-field input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.upload-field b {
  color: var(--brand-dark);
  font-size: 15px;
}

.confirm-panel {
  display: grid;
  gap: 14px;
}

dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

dt,
dd {
  margin: 0;
}

dt {
  color: var(--muted);
}

dd {
  font-weight: 800;
  text-align: right;
}

.action-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px max(12px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
}

.primary-action,
.secondary-action {
  width: min(50%, 215px);
  border: 0;
}

.primary-action {
  background: var(--brand);
  color: #fff;
}

.secondary-action {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--brand-dark);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.dashboard-grid article {
  padding: 14px;
}

.dashboard-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.dashboard-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 26px;
}

.dashboard-grid small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.admin-layout {
  display: grid;
  gap: 14px;
}

.admin-sidebar {
  display: none;
}

.admin-hero,
.filter-panel,
.admin-actions,
.mini-tabs,
.table-head,
.table-row,
.compact-list article {
  display: flex;
  align-items: center;
}

.admin-hero {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.admin-hero h2 {
  margin-bottom: 6px;
  font-size: 20px;
}

.admin-hero span {
  color: var(--muted);
  font-size: 13px;
}

.admin-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.compact {
  width: auto;
  min-width: 116px;
  padding: 0 14px;
}

.filter-panel {
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.filter-panel label {
  flex: 1 1 140px;
}

.filter-panel .primary-action {
  flex: 0 0 92px;
  align-self: end;
}

.admin-section + .admin-section {
  margin-top: 14px;
}

.admin-content-grid {
  display: grid;
  gap: 14px;
}

.chart-section,
.wide-section {
  min-width: 0;
}

.table-list {
  display: grid;
  gap: 8px;
}

.table-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
}

.table-list strong {
  display: block;
}

.mini-tabs {
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
}

.mini-tabs button {
  min-height: 30px;
  border: 0;
  border-radius: 6px;
  padding: 0 10px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.mini-tabs button.active {
  background: var(--brand);
  color: #fff;
}

.map-mock {
  position: relative;
  height: 250px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(88, 121, 104, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(88, 121, 104, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 22% 25%, rgba(113, 151, 118, 0.22), transparent 24%),
    radial-gradient(circle at 78% 18%, rgba(213, 181, 113, 0.2), transparent 22%),
    linear-gradient(135deg, #e7eee8 0%, #f5f0df 48%, #dfeade 100%);
  background-size: 26px 26px, 26px 26px, auto, auto, auto;
}

.map-mock::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(21, 86, 65, 0.18);
  border-radius: 8px;
  pointer-events: none;
}

.map-legend {
  position: absolute;
  z-index: 6;
  right: 12px;
  bottom: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.heatmap-layer {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.dynamic-heat {
  position: absolute;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(184, 93, 45, 0.68), rgba(212, 154, 49, 0.38) 42%, rgba(35, 116, 95, 0.12) 62%, transparent 74%);
  filter: blur(5px);
  mix-blend-mode: multiply;
}

.dynamic-point {
  position: absolute;
  z-index: 5;
  width: 12px;
  height: 12px;
  border: 3px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--brand);
  box-shadow: 0 5px 12px rgba(21, 34, 29, 0.26);
}

.dynamic-point::after {
  content: attr(data-label);
  position: absolute;
  left: 12px;
  top: -8px;
  max-width: 88px;
  border: 1px solid rgba(21, 86, 65, 0.14);
  border-radius: 999px;
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.map-summary {
  position: absolute;
  z-index: 6;
  left: 16px;
  top: 14px;
  border: 1px solid rgba(21, 86, 65, 0.16);
  border-radius: 8px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
}

.map-legend b,
.map-legend small {
  display: block;
}

.map-legend b {
  color: var(--brand-dark);
}

.map-legend small {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 5px;
  color: var(--muted);
}

.legend-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend-dot.hot {
  background: #b85d2d;
}

.legend-dot.mid {
  background: #d49a31;
}

.legend-dot.point {
  border: 2px solid #fff;
  background: var(--brand);
  box-shadow: 0 0 0 1px rgba(21, 86, 65, 0.36);
}

.terrain,
.river {
  position: absolute;
  pointer-events: none;
}

.terrain {
  border: 1px solid rgba(35, 116, 95, 0.12);
  border-radius: 45% 55% 48% 52%;
  background: rgba(35, 116, 95, 0.08);
}

.terrain-a {
  width: 160px;
  height: 92px;
  top: 28px;
  left: 32px;
  transform: rotate(-18deg);
}

.terrain-b {
  width: 210px;
  height: 120px;
  right: 42px;
  top: 34px;
  background: rgba(212, 154, 49, 0.1);
  transform: rotate(14deg);
}

.terrain-c {
  width: 180px;
  height: 98px;
  left: 210px;
  bottom: 18px;
  background: rgba(35, 116, 95, 0.07);
  transform: rotate(9deg);
}

.river {
  height: 8px;
  border-radius: 999px;
  background: rgba(70, 145, 178, 0.28);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.28);
  transform-origin: left center;
}

.river-a {
  width: 52%;
  top: 66%;
  left: 10%;
  transform: rotate(-16deg);
}

.river-b {
  width: 26%;
  top: 54%;
  right: 7%;
  transform: rotate(26deg);
}

.heat {
  position: absolute;
  border-radius: 50%;
  filter: blur(7px);
  mix-blend-mode: multiply;
}

.heat-a {
  width: 150px;
  height: 150px;
  top: 50px;
  left: 74px;
  background: radial-gradient(circle, rgba(184, 93, 45, 0.68), rgba(212, 154, 49, 0.42) 45%, transparent 72%);
}

.heat-b {
  width: 132px;
  height: 132px;
  right: 74px;
  top: 46px;
  background: radial-gradient(circle, rgba(212, 154, 49, 0.58), rgba(35, 116, 95, 0.22) 52%, transparent 74%);
}

.heat-c {
  width: 116px;
  height: 116px;
  left: 246px;
  bottom: 40px;
  background: radial-gradient(circle, rgba(35, 116, 95, 0.44), rgba(212, 154, 49, 0.28) 48%, transparent 72%);
}

.road {
  position: absolute;
  height: 7px;
  border-radius: 999px;
  background: #f7f3e8;
  border: 1px solid rgba(145, 128, 95, 0.34);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
  transform-origin: left center;
}

.road-a {
  width: 78%;
  top: 47%;
  left: 8%;
  transform: rotate(-12deg);
}

.road-b {
  width: 48%;
  top: 30%;
  left: 34%;
  transform: rotate(21deg);
}

.road-c {
  width: 38%;
  top: 72%;
  left: 30%;
  transform: rotate(10deg);
}

.map-point {
  position: absolute;
  z-index: 2;
  width: 14px;
  height: 14px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 4px 10px rgba(21, 34, 29, 0.24);
}

.point-a {
  top: 42%;
  left: 31%;
}

.point-b {
  top: 60%;
  left: 55%;
}

.point-c {
  top: 28%;
  right: 25%;
}

.point-d {
  top: 36%;
  left: 17%;
}

.village-label {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(21, 86, 65, 0.16);
  border-radius: 999px;
  padding: 3px 7px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(21, 34, 29, 0.08);
}

.label-a {
  top: 35%;
  left: 24%;
}

.label-b {
  top: 54%;
  left: 58%;
}

.label-c {
  top: 22%;
  right: 16%;
}

.label-d {
  top: 28%;
  left: 9%;
}

.map-scale {
  position: absolute;
  left: 16px;
  bottom: 14px;
  width: 92px;
  border-bottom: 4px solid rgba(21, 86, 65, 0.7);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.bar-list {
  display: grid;
  gap: 14px;
}

.bar-list div {
  display: grid;
  grid-template-columns: 72px 1fr 36px;
  align-items: center;
  gap: 10px;
}

.bar-list div::before {
  content: "";
  height: 10px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--accent) var(--bar), #e9efeb var(--bar));
  grid-column: 2;
  grid-row: 1;
}

.bar-list span {
  color: var(--muted);
  font-weight: 800;
}

.bar-list b {
  text-align: right;
}

.admin-table {
  min-width: 680px;
}

.admin-section.wide-section {
  overflow-x: auto;
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr 0.7fr 0.9fr 1fr 1fr;
  gap: 12px;
  min-height: 44px;
  padding: 0 12px;
  border-bottom: 1px solid var(--line);
}

.table-head {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  background: var(--panel-soft);
  border-radius: 8px 8px 0 0;
}

.table-row {
  font-size: 13px;
}

.compact-list {
  display: grid;
  gap: 8px;
}

.compact-list article {
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
}

.compact-list strong,
.compact-list span {
  display: block;
}

.compact-list span {
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.module-grid span {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: var(--panel-soft);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 82px;
  z-index: 10;
  max-width: min(340px, calc(100vw - 28px));
  transform: translateX(-50%) translateY(20px);
  border-radius: 8px;
  padding: 10px 14px;
  background: rgba(21, 34, 29, 0.92);
  color: #fff;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (min-width: 720px) {
  body {
    padding: 24px;
  }

  .app-shell {
    min-height: calc(100vh - 48px);
    border-radius: 12px;
  }

  .app-shell:has(#admin-view.active) {
    width: min(100%, 1180px);
  }

  .app-shell:has(#admin-view.active) .topbar,
  .app-shell:has(#admin-view.active) .login-strip,
  .app-shell:has(#admin-view.active) .mode-switch {
    max-width: none;
  }

  .app-shell:has(#admin-view.active) .mode-switch {
    width: 420px;
  }

  .app-shell:has(#admin-view.active) .action-bar {
    display: none;
  }

  .admin-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: start;
  }

  .admin-sidebar {
    position: sticky;
    top: 24px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--brand-dark);
    color: #fff;
  }

  .admin-brand {
    padding: 4px 4px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .admin-brand strong,
  .admin-brand span {
    display: block;
  }

  .admin-brand span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
  }

  .side-link {
    min-height: 40px;
    border: 0;
    border-radius: 8px;
    padding: 0 12px;
    background: transparent;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
    text-align: left;
  }

  .side-link.active,
  .side-link:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
  }

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

  .admin-content-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.85fr);
  }

  .wide-section {
    grid-column: 1 / -1;
  }

  .map-mock {
    height: 360px;
  }

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

  .action-bar {
    left: 50%;
    width: min(100%, 460px);
    transform: translateX(-50%);
    border-radius: 12px 12px 0 0;
  }
}
