/* ============================================================
   Variables
   ============================================================ */
:root {
  --green:       #166534;
  --green-light: #22c55e;
  --green-dark:  #14532d;
  --blue:        #1d4ed8;
  --blue-light:  #3b82f6;
  --gold:        #ca8a04;
  --red:         #dc2626;
  --bg:          #0f1a0f;
  --surface:     #1a2e1a;
  --surface2:    #243824;
  --border:      #2d4a2d;
  --text:        #e8f5e9;
  --text-dim:    #9cad9c;
  --radius:      6px;
  --panel-w:     310px;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; overflow: hidden; font-family: 'Segoe UI', Arial, sans-serif; background: var(--bg); color: var(--text); font-size: 14px; }
a { color: var(--green-light); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ============================================================
   Nav
   ============================================================ */
#topnav {
  display: flex; align-items: center; gap: 12px;
  background: var(--green-dark); padding: 0 16px; height: 48px;
  border-bottom: 2px solid var(--green); flex-shrink: 0; z-index: 100;
}
#nav-brand { font-weight: 700; font-size: 16px; letter-spacing: .5px; white-space: nowrap; }
#nav-meta  { display: flex; gap: 12px; flex: 1; overflow: hidden; }
#nav-course { font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
#nav-tee    { color: var(--text-dim); white-space: nowrap; }
#nav-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: var(--radius);
  font-size: 13px; font-weight: 600; cursor: pointer;
  border: 1.5px solid transparent; transition: all .15s; white-space: nowrap;
}
.btn:hover { filter: brightness(1.15); }
.btn:active { transform: scale(.97); }
.btn-primary  { background: var(--green); border-color: var(--green-light); color: #fff; }
.btn-outline  { background: transparent; border-color: var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--green-light); color: var(--green-light); }
.btn-danger   { background: var(--red); color: #fff; }
.btn-sm       { padding: 4px 10px; font-size: 12px; }
.btn-xs       { padding: 2px 7px; font-size: 11px; }
.btn-full     { width: 100%; justify-content: center; }
.btn-lg       { padding: 10px 24px; font-size: 15px; }
.btn.disabled { opacity: 0.4; pointer-events: none; }
button.btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ============================================================
   Setup Page
   ============================================================ */
#setup-page {
  display: flex; justify-content: center; align-items: flex-start;
  padding: 32px 16px; overflow-y: auto; height: calc(100vh - 48px);
}
#setup-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 32px; width: 100%; max-width: 560px;
}
#setup-card h1 { font-size: 22px; margin-bottom: 6px; }
.subtitle { color: var(--text-dim); margin-bottom: 24px; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--text-dim); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 9px 12px; background: var(--surface2);
  border: 1.5px solid var(--border); border-radius: var(--radius);
  color: var(--text); font-size: 14px; outline: none;
  transition: border-color .15s;
}
.form-control:focus { border-color: var(--green-light); }
.form-row { display: flex; gap: 16px; }
.form-group.half { flex: 1; }

.radio-group { display: flex; gap: 20px; padding: 9px 0; }
.radio-label { display: flex; align-items: center; gap: 6px; cursor: pointer; font-size: 14px; }
.radio-label input { accent-color: var(--green-light); width: 16px; height: 16px; }

.selected-badge {
  margin-top: 6px; padding: 6px 10px; background: var(--surface2);
  border: 1px solid var(--green); border-radius: var(--radius);
  color: var(--green-light); font-size: 13px;
}

#mini-map-container { height: 200px; border-radius: var(--radius); overflow: hidden; margin-bottom: 18px; border: 1px solid var(--border); }
#mini-map { width: 100%; height: 100%; }

.altitude-display {
  display: flex; align-items: baseline; gap: 8px;
  padding: 10px 12px; background: var(--surface2);
  border: 1.5px solid var(--border); border-radius: var(--radius);
}
#altitude-value { font-size: 22px; font-weight: 700; color: var(--green-light); }
.altitude-unit  { color: var(--text-dim); font-size: 13px; }
.altitude-status { font-size: 12px; color: var(--text-dim); margin-left: auto; }

.error-msg { margin-top: 10px; padding: 8px 12px; background: #3b0000; border: 1px solid var(--red); border-radius: var(--radius); color: #fca5a5; font-size: 13px; }
.hidden { display: none !important; }

/* ============================================================
   Hole Editor Layout
   ============================================================ */
#editor-layout {
  display: flex; height: calc(100vh - 48px); overflow: hidden;
}

/* Map area */
#map-wrap { position: relative; flex: 1; min-width: 0; }
#map { width: 100%; height: 100%; }

/* Mode toolbar */
#mode-toolbar {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 4px; background: rgba(15,26,15,.92); backdrop-filter: blur(6px);
  border: 1px solid var(--border); border-radius: 8px; padding: 6px 8px; z-index: 10;
  flex-wrap: wrap; justify-content: center; max-width: calc(100vw - 24px);
}
#toolbar-drag-handle {
  cursor: grab; padding: 2px 6px 2px 2px; color: var(--border); font-size: 15px;
  display: flex; align-items: center; user-select: none; flex-shrink: 0;
  border-right: 1px solid var(--border); margin-right: 2px;
  touch-action: none;
}
#toolbar-drag-handle:hover { color: var(--text-dim); }
#mode-toolbar.toolbar-dragging { user-select: none; cursor: grabbing; }
#toolbar-undo-row {
  display: none; width: 100%; flex-wrap: wrap; gap: 4px;
  border-top: 1px solid var(--border); padding-top: 4px; margin-top: 2px;
}
.mode-btn {
  padding: 5px 10px; font-size: 12px; font-weight: 600;
  background: var(--surface2); border: 1.5px solid var(--border);
  border-radius: 5px; color: var(--text); cursor: pointer; transition: all .15s;
  white-space: nowrap;
}
.mode-btn:hover  { border-color: var(--green-light); color: var(--green-light); }
.mode-btn.active { background: var(--green); border-color: var(--green-light); color: #fff; }
.mode-btn.btn-undo { color: var(--text-dim); }
.mode-btn.btn-undo:hover { color: #fbbf24; border-color: #fbbf24; }
.mode-btn.btn-undo-toggle { color: var(--text-dim); font-size: 13px; }
.mode-btn.btn-undo-toggle:hover { color: #fbbf24; border-color: #fbbf24; }
.mode-btn.btn-undo-toggle.active { color: #fbbf24; border-color: #fbbf24; background: rgba(251,191,36,.1); }
.toolbar-sep   { width: 1px; background: var(--border); margin: 0 4px; }
.toolbar-break { width: 100%; height: 0; border-top: 1px solid var(--border); margin: 2px 0; }

/* Hole nav bar */
#hole-nav {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 12px;
  background: rgba(15,26,15,.92); backdrop-filter: blur(6px);
  border: 1px solid var(--border); border-radius: 8px; padding: 8px 16px; z-index: 10;
}
#hole-nav-label { font-size: 16px; font-weight: 700; min-width: 70px; text-align: center; color: var(--green-light); border: 1px solid var(--green); border-radius: var(--radius); padding: 5px 14px; }

/* Control panel */
#ctrl-panel {
  width: var(--panel-w); flex-shrink: 0;
  background: var(--surface); border-left: 1px solid var(--border);
  overflow-y: auto; display: flex; flex-direction: column;
}

#panel-toggle {
  display: none;
}

#map-rating-return {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 20;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}
.ctrl-section {
  border-bottom: 1px solid var(--border); padding: 12px 14px;
}
.ctrl-header {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px;
  color: var(--text-dim); margin-bottom: 10px;
  display: flex; justify-content: space-between; align-items: center;
}
.ctrl-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.ctrl-row label { font-size: 13px; color: var(--text-dim); }
.par-row { justify-content: flex-start; gap: 10px; }
.hole-tee-bubble { display: flex; align-items: center; min-height: 22px; margin: -4px 0 8px; }

/* Par selector */
.par-group { display: flex; gap: 4px; }
.par-btn {
  padding: 4px 12px; border-radius: 5px;
  background: var(--surface2); border: 1.5px solid var(--border);
  color: var(--text); cursor: pointer; font-size: 13px; font-weight: 600;
  transition: all .15s;
}
.par-btn.active { background: var(--green); border-color: var(--green-light); color: #fff; }
.par-btn:hover:not(.active) { border-color: var(--green-light); }

.gs-btn {
  flex: 1; padding: 3px 4px; font-size: 11px;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 4px; color: var(--text-dim); cursor: pointer; transition: all .15s;
}
.gs-btn.active { border-color: var(--green-light); color: var(--green-light); background: rgba(34,197,94,.12); }
.gs-btn:hover:not(.active) { border-color: var(--text-dim); }

/* Measurements grid */
.meas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.meas-item { background: var(--surface2); border-radius: 5px; padding: 8px 10px; }
.meas-label { font-size: 10px; color: var(--text-dim); text-transform: uppercase; letter-spacing: .4px; }
.meas-value { font-size: 18px; font-weight: 700; color: var(--green-light); margin: 2px 0; }
.meas-value.na { color: var(--text-dim); font-size: 14px; }
.meas-unit  { font-size: 10px; color: var(--text-dim); }

/* Mode toolbar — colored variant buttons */
.lop-scratch-btn { color: #93c5fd; border-color: #3b82f6; }
.lop-scratch-btn.active { background: #1d4ed8; border-color: #3b82f6; color: #fff; }
.lop-bogey-btn   { color: #86efac; border-color: #22c55e; }
.lop-bogey-btn.active   { background: #166534; border-color: #22c55e; color: #fff; }
.lop-dogleg-btn  { color: #fde68a; border-color: #f59e0b; }
.lop-dogleg-btn.active  { background: #92400e; border-color: #fbbf24; color: #fff; }
.bunker-btn      { color: #d4b84a; border-color: #7a6020; }
.bunker-btn.active      { background: #7a6020; border-color: #d4b84a; color: #fff; }
.obs-cross-btn   { color: #fca5a5; border-color: #dc2626; }
.obs-cross-btn.active   { background: #7f1d1d; border-color: #ef4444; color: #fff; }
.obs-lat-btn     { color: #fdba74; border-color: #ea580c; }
.obs-lat-btn.active     { background: #7c2d12; border-color: #f97316; color: #fff; }
.oob-btn         { color: #e2e8f0; border-color: #64748b; }
.oob-btn.active  { background: #334155; border-color: #e2e8f0; color: #fff; }
.depth-btn       { color: #d8b4fe; border-color: #9333ea; }
.depth-btn.active { background: #6b21a8; border-color: #a855f7; color: #fff; }

/* ctrl-hint (inline in section header) */
.ctrl-hint { font-size: 10px; color: var(--text-dim); font-weight: 400; text-transform: none; letter-spacing: 0; }

/* Line of Play status */
.lop-hint { font-size: 11px; color: var(--text-dim); margin-bottom: 8px; line-height: 1.5; }
.lop-item { display: grid; grid-template-columns: 10px 1fr auto; grid-template-rows: auto auto; gap: 2px 6px; margin-bottom: 8px; align-items: center; }
.lop-dot  { width: 10px; height: 10px; border-radius: 50%; grid-row: 1; }
.lop-label { font-size: 12px; font-weight: 600; grid-row: 1; }
.lop-shots { font-size: 11px; color: var(--text-dim); grid-row: 1; }
.lop-status { grid-column: 2 / 4; grid-row: 2; font-size: 11px; padding-left: 2px; }
.usga-row.usga-header.lop-grid-header .usga-col.scratch-col { color: #3b82f6; }
.usga-row.usga-header.lop-grid-header .usga-col.bogey-col { color: #22c55e; }
.lop-player-row .usga-col { font-size: 11px; }
.lop-status-row { align-items: stretch; }
.lop-status-row .usga-row-label { align-self: center; line-height: 1.2; }
.lop-status-row .usga-col { display: flex; align-items: center; justify-content: center; font-size: 11px; line-height: 1.3; min-height: 44px; }
.lop-dogleg-row .usga-col { color: #fde68a; font-size: 11px; line-height: 1.3; text-align: right; }
.lop-reach { color: #22c55e; }
.lop-reach-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  min-height: 38px;
  padding: 4px 5px;
  border: 1px solid rgba(34, 197, 94, .38);
  border-radius: 4px;
  background: rgba(34, 197, 94, .10);
  color: #22c55e;
  text-align: left;
}
.lop-reach-check { flex: 0 0 auto; font-size: 24px; font-weight: 800; line-height: 1; }
.lop-reach-text { display: block; font-size: 11px; font-weight: 800; line-height: 1.15; }
.lop-reach-text small { display: block; margin-top: 2px; color: #86efac; font-size: 10px; font-weight: 700; }
.lop-next { color: #fbbf24; }
.lop-muted { color: var(--text-dim); font-weight: 500; }
.lop-dogleg { color: #fde68a; }

.mounding-note-row .usga-row-label { color: #f59e0b; font-weight: 700; }
.mounding-note-row .usga-col {
  color: var(--text-dim);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
}
.mounding-detail-group { margin-top: 5px; }
.mounding-detail-group > span {
  display: inline-block;
  margin-right: 5px;
  color: var(--text);
  font-weight: 700;
}
.mounding-detail {
  display: inline-block;
  width: 100%;
  margin-top: 2px;
}
.mounding-detail summary {
  color: var(--green-light);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
}
.mounding-detail[open] {
  display: block;
  padding: 5px 6px;
  border-left: 2px solid #f59e0b;
  background: rgba(15, 26, 15, .45);
}
.mounding-detail div { margin-top: 4px; }
.mounding-detail strong { color: var(--text); }
.mounding-detail span { color: var(--green-light); }
.mound-dot-legend {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--text-dim);
  font-size: 10px;
}
.mound-dot-legend span { display: inline-flex; align-items: center; gap: 4px; }
.mound-dot-legend i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: inline-block;
}
.mound-dot-legend .low { background: #3b82f6; }
.mound-dot-legend .mid { background: #f59e0b; }
.mound-dot-legend .high { background: #ef4444; }

/* LZ group header */
.lz-group-header { font-size: 11px; color: var(--text-dim); margin: 6px 0 4px; font-weight: 700; }

/* Landing zones */
.lz-item { margin-bottom: 10px; }
.lz-header { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.lz-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.lz-label { font-size: 12px; font-weight: 600; flex: 1; }
.lz-toggle { width: 14px; height: 14px; accent-color: var(--green-light); cursor: pointer; }
.lz-width-row { display: flex; align-items: center; gap: 6px; padding-left: 16px; }
.lz-width-label { font-size: 11px; color: var(--text-dim); }
.lz-width-val { font-size: 13px; font-weight: 700; color: var(--gold); min-width: 40px; }
.lz-dist-hint { font-size: 10px; color: var(--text-dim); }

/* Bunkers */
.bunker-summary { font-size: 11px; color: var(--text-dim); margin-bottom: 6px; }
.bunker-item { display: flex; align-items: center; gap: 8px; font-size: 11px; padding: 3px 0; border-bottom: 1px solid var(--border); }
.bunker-item:last-child { border-bottom: none; }
.bunker-num  { font-weight: 700; color: #d4b84a; min-width: 22px; }

/* Obstacles */
.obs-item   { padding: 4px 0; border-bottom: 1px solid var(--border); font-size: 11px; }
.obs-item:last-child { border-bottom: none; }
.obs-badge  { display: inline-block; padding: 1px 6px; border-radius: 3px; color: #fff; font-size: 10px; font-weight: 700; margin-right: 4px; }
.obs-detail { margin-top: 3px; padding-left: 4px; line-height: 1.6; }

/* OOB lines */
.oob-item  { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px; padding: 4px 0; border-bottom: 1px solid var(--border); font-size: 11px; }
.oob-item:last-child { border-bottom: none; }
.oob-num   { font-weight: 700; color: #e2e8f0; min-width: 22px; }
.oob-label { color: var(--text-dim); }

/* Derived values */
.derived-item { display: flex; justify-content: space-between; align-items: center; padding: 4px 0; border-bottom: 1px solid var(--border); }
.derived-item:last-child { border-bottom: none; }
.derived-label { font-size: 11px; color: var(--text-dim); }
.derived-val { font-size: 12px; font-weight: 700; color: var(--blue-light); }

/* USGA two-column scratch/bogey table */
.usga-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4px; padding: 4px 0; border-bottom: 1px solid var(--border); align-items: center; }
.usga-row:last-child { border-bottom: none; }
.usga-row.usga-header { border-bottom: 2px solid var(--border); padding-bottom: 5px; margin-bottom: 2px; }
.usga-row-label { font-size: 10px; color: var(--text-dim); }
.usga-col { font-size: 12px; font-weight: 700; text-align: center; }
.usga-col.scratch-col { color: #3b82f6; }
.usga-col.bogey-col   { color: #22c55e; }
.usga-row.usga-header .usga-col { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .4px; color: var(--text-dim); }

/* Hole jump grid */
#hole-grid { display: grid; grid-template-columns: repeat(9, 1fr); gap: 4px; }
.hole-jump {
  display: flex; align-items: center; justify-content: center;
  height: 28px; border-radius: 4px;
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--text-dim); font-size: 12px; font-weight: 600;
  transition: all .15s;
}
.hole-jump:hover { border-color: var(--green-light); color: var(--green-light); text-decoration: none; }
.hole-jump.active { background: var(--green); border-color: var(--green-light); color: #fff; }
.hole-jump.done { border-color: var(--green); color: var(--green-light); }

/* Save indicator */
.save-ok   { font-size: 11px; color: var(--green-light); }
.save-busy { font-size: 11px; color: var(--gold); }

/* ============================================================
   Review Page
   ============================================================ */
#review-page { height: calc(100vh - 48px); display: flex; flex-direction: column; overflow: hidden; padding: 20px 24px; gap: 16px; }
#review-header { display: flex; justify-content: space-between; align-items: flex-start; flex-shrink: 0; }
#review-header h1 { font-size: 20px; margin-bottom: 4px; }
#review-session-info { color: var(--text-dim); font-size: 13px; }
#review-actions { display: flex; gap: 8px; }
#review-table-wrap { flex: 1; overflow: auto; border: 1px solid var(--border); border-radius: var(--radius); }

#review-table { width: 100%; border-collapse: collapse; font-size: 12px; }
#review-table thead { position: sticky; top: 0; background: var(--surface2); z-index: 1; }
#review-table th { padding: 8px 10px; text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: .4px; color: var(--text-dim); border-bottom: 2px solid var(--border); }
#review-table td { padding: 7px 10px; border-bottom: 1px solid var(--border); }
#review-table tr:hover td { background: var(--surface2); }
#review-table tr.row-incomplete td { color: var(--text-dim); }
#review-table tr.totals-row td { background: var(--surface2); border-top: 2px solid var(--border); }
#review-table tr.totals-total td { border-top: 3px solid var(--green-light); }
#review-table td:first-child a { font-weight: 700; color: var(--green-light); }
.review-total-complete { text-align: center; }
.review-complete-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--green-light);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 0 10px rgba(34, 197, 94, 0.45);
}
.na { color: var(--border); }
.badge-ok   { color: var(--green-light); font-weight: 700; }
.badge-warn { color: var(--gold); font-size: 11px; }

#review-footer { flex-shrink: 0; display: flex; justify-content: space-between; align-items: center; }
.hint { font-size: 12px; color: var(--text-dim); max-width: 600px; }

/* Hole swap select in ctrl-header */
.hole-swap-select {
  background: var(--surface2); border: 1px solid var(--border); border-radius: 3px;
  color: var(--text-dim); font-size: 10px; padding: 1px 4px; cursor: pointer;
  margin-left: 6px; vertical-align: middle;
}
.hole-swap-select:hover { border-color: var(--green-light); color: var(--green-light); }

/* Notes expand button */
.notes-expand-btn {
  background: none; border: 1px solid var(--border); border-radius: 3px;
  color: var(--text-dim); cursor: pointer; font-size: 11px;
  padding: 1px 5px; margin-left: 6px; vertical-align: middle; line-height: 1.4;
}
.notes-expand-btn:hover { border-color: var(--green-light); color: var(--green-light); }

/* Notes / Measure label inputs */
.notes-input {
  width: 100%; background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text); font-size: 12px;
  padding: 6px 8px; resize: vertical; font-family: inherit;
}
.notes-input:focus { outline: none; border-color: var(--green-light); }
.notes-input::placeholder { color: var(--text-dim); }

@media (max-width: 760px) {
  #editor-layout {
    position: relative;
  }

  #map-wrap {
    flex: 1 1 100%;
  }

  #ctrl-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(86vw, 330px);
    max-width: 100vw;
    z-index: 30;
    box-shadow: -10px 0 24px rgba(0, 0, 0, 0.38);
    transform: translateX(100%);
    transition: transform 0.22s ease;
  }

  #editor-layout.panel-open #ctrl-panel {
    transform: translateX(0);
  }

  #panel-toggle {
    position: absolute;
    top: 64px;
    right: 10px;
    z-index: 35;
    display: inline-flex;
    width: auto;
    background: rgba(15, 26, 15, 0.94);
    border-color: var(--green-light);
    color: var(--text);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
  }

  #map-rating-return {
    top: 10px;
    left: 10px;
    z-index: 35;
  }

  #hole-nav {
    width: calc(100vw - 20px);
    justify-content: space-between;
    gap: 8px;
    padding: 8px 10px;
  }

  #hole-nav .btn {
    padding: 6px 9px;
    font-size: 12px;
  }

  #hole-nav-label {
    min-width: 58px;
    padding: 5px 8px;
    font-size: 14px;
  }
}

/* ============================================================
   Scrollbar
   ============================================================ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--green); }
