/* ─── TRZ PMS staff app — MOBILE FIRST (phones + small tablets, ≤860px) ──────────────────────────
   Loaded after styles.css. Desktop (>860px) is unchanged: everything below is inside the media
   query except the few rules that keep phone-only markup hidden on desktop.

   Design rules: bottom navigation, no horizontal scrolling, ≥44px tap targets, 16px form text (so
   iOS never zooms), full-width fields, bottom-sheet dialogs, a full-screen Booking Detail with its
   main actions pinned at the bottom, tables become stacked cards. Safe-area insets everywhere. */

/* Phone-only chrome stays out of the desktop layout. */
.bottom-nav, .more-sheet, .booking-cards { display: none; }
.detail-section { margin-top: 16px; }
.detail-section-title {
  margin: 0 0 10px; padding-bottom: 6px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--muted); border-bottom: 1px solid var(--line-soft);
}
.detail-statusline { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 12px; margin-bottom: 4px; }
.detail-glance { font-size: 13px; color: var(--ink-2); }
.detail-success { color: var(--success); font-size: 13px; margin: 10px 0 0; }
.detail-hint { color: var(--muted); font-size: 12px; }
.detail-link { color: var(--accent); }
.detail-grid { margin: 0; }
.dash-tools { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.refresh-control { display: inline-flex; align-items: center; gap: 10px; }
.refresh-status { font-size: 12px; color: var(--muted); white-space: nowrap; }
.refresh-btn { padding: 8px 14px; min-height: 40px; }
.refresh-control.is-loading .refresh-icon { display: inline-block; animation: trz-spin 0.9s linear infinite; }
@keyframes trz-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .refresh-control.is-loading .refresh-icon { animation: none; } }
.cal-refresh .refresh-status { display: none; }
.btn-danger { background: rgba(248, 113, 113, 0.14); border-color: rgba(248, 113, 113, 0.5); color: var(--danger); }

@media (max-width: 860px) {
  :root { --bn-h: 62px; }

  /* ── App shell ── */
  .app-shell { display: block; min-height: 100dvh; }
  .sidebar { display: none; }
  .main {
    max-width: none; padding: calc(14px + env(safe-area-inset-top)) max(14px, env(safe-area-inset-left)) calc(var(--bn-h) + 28px + env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-right));
  }
  .main-header { margin-bottom: 14px; }
  .main-header h1 { font-size: 22px; }
  .main-header p { font-size: 13px; }
  .gate-screen { min-height: 100dvh; padding: max(20px, env(safe-area-inset-top)) 16px max(20px, env(safe-area-inset-bottom)); }
  .card { padding: 14px; }

  /* ── Bottom navigation ── */
  .bottom-nav {
    display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
    height: calc(var(--bn-h) + env(safe-area-inset-bottom)); padding: 0 env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
    background: rgba(5, 22, 14, 0.97); border-top: 1px solid var(--line);
    -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  }
  .bn-item {
    position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
    min-height: 48px; padding: 6px 2px; background: none; border: 0; color: var(--muted);
    font: 700 11px/1.1 inherit; letter-spacing: 0.02em; cursor: pointer; -webkit-tap-highlight-color: transparent;
  }
  .bn-item span { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .bn-item.active { color: var(--trz-gold-bright); }
  .bn-item.active::before { content: ""; position: absolute; top: 0; left: 26%; right: 26%; height: 3px; border-radius: 0 0 3px 3px; background: var(--trz-gold-bright); }
  .bn-item:focus-visible { outline: 3px solid var(--trz-gold-bright); outline-offset: -3px; }

  /* ── More sheet ── */
  .more-sheet { position: fixed; inset: 0; z-index: 60; display: flex; align-items: flex-end; }
  .more-sheet[hidden] { display: none; }
  .more-backdrop { position: absolute; inset: 0; background: rgba(2, 8, 5, 0.72); }
  .more-panel {
    position: relative; width: 100%; max-height: 88dvh; display: flex; flex-direction: column;
    background: var(--panel); border-radius: 20px 20px 0 0; border: 1px solid var(--line); border-bottom: 0; box-shadow: var(--shadow-modal);
  }
  .more-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px 8px; font-size: 17px; }
  .more-close { min-width: 44px; min-height: 44px; background: none; border: 0; color: var(--muted); font-size: 28px; line-height: 1; cursor: pointer; }
  .more-scroll { overflow-y: auto; padding: 0 14px calc(18px + env(safe-area-inset-bottom)); overscroll-behavior: contain; }
  .more-section { margin-bottom: 14px; }
  .more-section h3 { margin: 6px 4px 8px; font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
  .more-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .more-item, .more-row {
    display: flex; align-items: center; gap: 10px; min-height: 52px; padding: 10px 12px; text-align: left;
    background: var(--panel-2); border: 1px solid var(--line-soft); border-radius: var(--radius-sm); color: var(--ink); font-weight: 600; font-size: 14px; cursor: pointer;
  }
  .more-item.active { border-color: var(--accent); color: var(--accent); }
  .more-glyph { width: 22px; text-align: center; color: var(--accent); flex-shrink: 0; }
  .more-row { width: 100%; margin-bottom: 8px; justify-content: space-between; flex-wrap: wrap; }
  .more-row small { color: var(--muted); font-weight: 500; font-size: 12px; }
  .more-signout span { color: var(--danger); }
  .more-note { color: var(--muted); font-size: 13px; padding: 4px 4px 10px; }
  body.sheet-open { overflow: hidden; }

  /* ── Type, buttons, forms ── */
  .btn { min-height: 46px; padding: 11px 16px; }
  .btn-small { min-height: 40px; padding: 8px 12px; font-size: 12px; }
  .input, select.input, textarea.input { font-size: 16px; min-height: 48px; padding: 12px 14px; width: 100%; }
  textarea.input { min-height: 96px; }
  .field { margin-bottom: 14px; }
  .field label, .field > span { font-size: 13px; }
  .checkbox-row { font-size: 14px; min-height: 44px; align-items: center; }
  .checkbox-row input[type="checkbox"], .checkbox-row input[type="radio"] { width: 22px; height: 22px; flex-shrink: 0; }
  .form-error { font-size: 14px; }
  .package-fields, .form-row { grid-template-columns: 1fr; }
  .toolbar { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .toolbar > * { min-width: 0; }
  .toolbar .input, .toolbar select.input { min-width: 0; width: 100%; }
  .toolbar .bk-search, .toolbar > .btn-primary, .toolbar > .toolbar-spacer + * { grid-column: 1 / -1; }
  .toolbar-spacer { display: none; }
  .toolbar .refresh-control { grid-column: 1 / -1; justify-content: space-between; }
  .section-title-row { flex-wrap: wrap; }
  .operations-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .operations-actions .btn { width: 100%; }
  .dashboard-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .settings-grid, .automation-grid { grid-template-columns: 1fr; }

  /* ── Bookings: cards, not a squeezed table ── */
  .booking-table-card { display: none; }
  .booking-cards { display: grid; gap: 10px; }
  .booking-cards-empty { color: var(--muted); text-align: center; padding: 24px 8px; }
  .booking-card {
    display: block; min-width: 0; padding: 14px 14px 12px; cursor: pointer; -webkit-tap-highlight-color: transparent;
    background: var(--panel); border: 1px solid var(--line-soft); border-left: 4px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-card);
  }
  .booking-card:active { background: var(--panel-2); }
  .booking-card:focus-visible { outline: 3px solid var(--trz-gold-bright); outline-offset: 2px; }
  .status-edge-pending { border-left-color: var(--status-pending); }
  .status-edge-confirmed { border-left-color: var(--status-confirmed); }
  .status-edge-checkedin { border-left-color: var(--status-checkedin); }
  .status-edge-checkedout { border-left-color: var(--status-checkedout); }
  .status-edge-cancelled { border-left-color: var(--status-cancelled); }
  .bc-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
  .bc-name { font-size: 16px; font-weight: 700; line-height: 1.3; min-width: 0; overflow-wrap: anywhere; }
  .bc-top .status-badge { flex-shrink: 0; }
  .bc-code { margin-top: 2px; font-size: 12px; color: var(--muted); overflow-wrap: anywhere; }
  .bc-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 12px; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--line-soft); }
  .bc-meta div { min-width: 0; }
  .bc-meta span { display: block; font-size: 10px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
  .bc-meta strong { display: block; font-size: 13px; font-weight: 600; overflow-wrap: anywhere; }

  /* ── Tables → stacked cards (labels come from the column headings) ── */
  .table-scroll, .card:has(> table.list-table) { overflow-x: visible !important; padding: 0 !important; background: none; border: 0; box-shadow: none; }
  .list-table, .list-table thead, .list-table tbody, .list-table tr, .list-table td { display: block; width: 100%; }
  .list-table, .table-scroll .list-table, .audit-table { min-width: 0 !important; }
  .list-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .list-table tbody tr {
    margin: 0 0 10px; padding: 10px 12px; background: var(--panel); border: 1px solid var(--line-soft); border-radius: var(--radius-sm); box-shadow: var(--shadow-card);
  }
  .list-table tbody tr:hover td { background: none; }
  .list-table td {
    display: flex; align-items: baseline; justify-content: space-between; gap: 14px; padding: 5px 0 !important; border: 0 !important;
    text-align: right; min-width: 0; overflow-wrap: anywhere; font-size: 14px;
  }
  .list-table td::before {
    content: attr(data-label); flex: 0 0 auto; max-width: 42%; text-align: left; font-size: 10px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted);
  }
  .list-table td[data-label=""]::before { content: none; }
  .list-table td[colspan], .list-table td.empty-cell { display: block; text-align: center; }
  .list-table td[colspan]::before { content: none; }
  .list-table td .btn { min-height: 44px; }
  .list-table td > :is(div, span, br + span) { min-width: 0; }
  .list-table tbody tr:only-child td[colspan] { padding: 16px 0 !important; }

  /* ── Dashboard ── */
  .dash-root { display: flex; flex-direction: column; }
  .dash-root > .dash-header { order: 0; }
  .dash-root > .dash-hero { order: 1; }
  .dash-root > .dash-main { order: 2; }
  .dash-root > .dash-summary { order: 3; margin-top: 14px; }
  .dash-header { flex-wrap: wrap; align-items: center; margin-bottom: 12px; gap: 8px 12px; }
  .dash-header h1 { font-size: 22px; }
  .dash-tools { flex: 1 1 auto; }
  .dash-tools .refresh-status { display: none; }
  .dash-header .eyebrow { margin-bottom: 2px; }

  /* ── Calendar controls ── */
  .cal-head { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; align-items: center; }
  .cal-title { grid-column: 1 / 3; grid-row: 1; }
  .cal-nav { display: contents; }
  .cal-nav > #cal-prev { grid-column: 1; grid-row: 2; }
  .cal-nav > #cal-today { grid-column: 2; grid-row: 2; }
  .cal-nav > #cal-next { grid-column: 3; grid-row: 2; }
  .cal-nav .btn { width: 100%; min-height: 46px; padding: 8px 6px; }
  .cal-nav .cal-refresh { grid-column: 3; grid-row: 1; justify-self: end; }
  .cal-nav .cal-refresh .btn { width: auto; min-height: 40px; padding: 8px 12px; }
  .cal-legend { grid-column: 1 / -1; grid-row: 3; }
  .calendar-embedded-host .cal-legend { flex-basis: auto; }

  /* ── Dialogs: bottom sheets; Booking Detail is full-screen ── */
  .modal-overlay { padding: 0; align-items: flex-end; }
  .modal-card {
    max-width: none; width: 100%; max-height: 92dvh; margin: 0; padding: 16px 16px 0;
    border-radius: 20px 20px 0 0; border-bottom: 0; overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
  }
  .modal-card::after { content: ""; display: block; height: env(safe-area-inset-bottom); }
  .modal-card.booking-sheet { height: 100dvh; max-height: 100dvh; border-radius: 0; border: 0; padding-top: calc(14px + env(safe-area-inset-top)); }
  .modal-header { position: sticky; top: calc(-14px - env(safe-area-inset-top)); z-index: 3; margin: 0 -16px 12px; padding: 4px 16px 10px; background: var(--panel); }
  .modal-card.booking-sheet .modal-header { padding-top: calc(4px + env(safe-area-inset-top)); top: calc(-14px - env(safe-area-inset-top)); }
  .modal-header h2 { font-size: 19px; overflow-wrap: anywhere; }
  .modal-close { min-width: 44px; min-height: 44px; font-size: 28px; margin: -6px -8px 0 0; }
  /* form buttons stay reachable: pinned to the bottom of the sheet */
  .modal-card > .modal-actions, .modal-card form > .modal-actions {
    position: sticky; bottom: 0; z-index: 3; margin: 16px -16px 0; padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: var(--panel); border-top: 1px solid var(--line-soft); width: auto;
  }
  /* a lone full-width submit button: keep its own colours, float it above the keyboard-safe bottom edge */
  .modal-card form > .btn-block:last-child {
    position: sticky; bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 3; margin-top: 16px; min-height: 52px; font-size: 16px;
    box-shadow: 0 0 0 12px var(--panel), 0 -18px 18px 12px var(--panel);
  }
  .modal-card > .modal-actions .btn, .modal-card form > .modal-actions .btn { flex: 1 1 calc(50% - 8px); min-height: 48px; }
  .modal-card::after { display: none; }

  /* ── Booking Detail ── */
  .detail-statusline { margin: 2px 0 10px; }
  .detail-section {
    margin: 0 0 12px; padding: 12px 14px; background: var(--panel-2); border: 1px solid var(--line-soft); border-radius: var(--radius-sm);
  }
  .detail-section-title { color: var(--accent); border-bottom-color: var(--line); font-size: 11px; letter-spacing: 0.1em; }
  .detail-grid { grid-template-columns: 1fr 1fr; gap: 12px 14px; }
  .detail-grid > div { min-width: 0; overflow-wrap: anywhere; }
  .detail-grid .detail-label { font-size: 10px; }
  .detail-grid .detail-value { font-size: 15px; }
  .detail-section .card { padding: 0 !important; background: none; border: 0; box-shadow: none; }
  .modal-card .list-table tbody tr { background: var(--panel); }
  .modal-actions.sticky-actions { flex-wrap: wrap; align-items: stretch; box-shadow: 0 -10px 22px rgba(0, 0, 0, 0.35); }
  .modal-actions.sticky-actions > .form-error { flex: 1 0 100%; min-height: 0; margin: 0; }
  .modal-actions.sticky-actions > .form-error:empty { display: none; }
  .modal-actions.sticky-actions.no-buttons { display: none; }
  .modal-actions.sticky-actions .btn { flex: 1 1 calc(50% - 8px); font-size: 15px; min-height: 52px; }
  .modal-actions.sticky-actions .btn:only-of-type { flex-basis: 100%; }
  .more-actions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .more-actions-grid .btn { min-height: 46px; font-size: 13px; }
  .guest-memory-section { padding: 12px; }
  .guest-memory-preview { max-height: 55dvh; }
  .guest-memory-actions { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .guest-memory-actions .btn { width: 100%; min-height: 54px; font-size: 16px; }
  .modal-card .guest-memory-actions { position: static; margin: 12px 0 0; padding: 0; border: 0; background: none; }

  /* ── Guests, settings, misc ── */
  .guest-layout { grid-template-columns: 1fr; }
  .guest-list { max-height: 44vh; }
  .guest-list-item { min-height: 52px; }
  .payment-method-qr, .qr-preview, .settings-qr img { max-width: 100%; height: auto; }
  .version-table { font-size: 13px; }
  .audit-filters { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .audit-filters .audit-search { grid-column: 1 / -1; }
  .automation-card, .settings-grid .card { padding: 14px; }
  img, video, canvas, svg { max-width: 100%; }
  pre { white-space: pre-wrap; overflow-wrap: anywhere; }
}

@media (max-width: 380px) {
  .more-grid { grid-template-columns: 1fr; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .bc-meta { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .dash-header .eyebrow { display: none; }
  .dash-header { flex-wrap: nowrap; justify-content: space-between; }
  .dash-tools { flex-wrap: nowrap; gap: 8px; flex: 0 1 auto; }
  .dash-date { padding: 6px 12px; font-size: 12px; }
  .dash-tools .refresh-btn { padding: 8px 12px; }
}

@media (max-width: 860px) {
  .toolbar .refresh-control { grid-column: auto; }
  .toolbar .refresh-control .refresh-status { display: none; }
  .toolbar .refresh-control .refresh-btn { width: 100%; min-height: 48px; }
  .toolbar > .btn-primary { grid-column: auto; min-height: 48px; }
  .toolbar .bk-search { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .detail-section .guest-memory-section { border: 0; background: none; padding: 0; }
}

@media (max-width: 860px) {
  .checkbox-row { align-items: flex-start; }
  .checkbox-row input[type="checkbox"], .checkbox-row input[type="radio"] { margin-top: 0; }
  input[type="file"] { width: 100%; min-height: 52px; padding: 8px; font-size: 15px; color: var(--ink-2); background: var(--bg-2); border: 1px dashed var(--line); border-radius: var(--radius-sm); }
  input[type="file"]::file-selector-button {
    min-height: 38px; margin-right: 12px; padding: 8px 16px; border-radius: 8px; border: 1px solid var(--line);
    background: var(--panel-2); color: var(--ink); font-weight: 700; font-size: 14px;
  }
}

/* Email Automation — safe preview / test tools */
.automation-test { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line, #e4ddc9); }
.automation-test-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 8px 0; }
.link-btn { background: none; border: 0; padding: 8px 0; color: var(--gold, #d6b764); font: inherit; font-weight: 600; text-decoration: underline; cursor: pointer; min-height: 44px; }
.automation-test .link-btn { display: inline-block; margin: 0 0 4px; }
.automation-test-result { min-height: 1.2em; font-size: 14px; margin-top: 6px; }
.automation-test-result.is-ok { color: #0d5c2d; font-weight: 600; }
.automation-test-result.is-error { color: #a12626; font-weight: 600; }

/* Guest Memory souvenir studio (works as a bottom sheet on phones, a centred dialog on desktop) */
.souvenir-studio .souvenir-body { display: grid; gap: 14px; }
.souvenir-studio .souvenir-pick { display: flex; align-items: center; justify-content: center; min-height: 52px; font-size: 16px; cursor: pointer; }
.souvenir-stage { display: flex; justify-content: center; }
.souvenir-canvas {
  display: block; width: min(100%, calc(56dvh * 0.8)); max-width: 460px; aspect-ratio: 4 / 5; height: auto;
  border-radius: 14px; background: #073f22; touch-action: none; cursor: grab;
  box-shadow: 0 6px 22px rgba(0, 20, 11, 0.28);
}
.souvenir-canvas:active { cursor: grabbing; }
.souvenir-controls { display: grid; gap: 10px; }
.souvenir-zoom { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.souvenir-zoom input[type="range"] { flex: 1; min-height: 44px; }
.souvenir-tools { display: flex; flex-wrap: wrap; gap: 10px; }
.souvenir-tools .btn { flex: 1 1 140px; min-height: 48px; }
.souvenir-studio .link-btn { text-align: left; }
@media (max-width: 860px) {
  .souvenir-studio .modal-actions { display: grid; grid-template-columns: 1fr 1.4fr; gap: 10px; }
  .souvenir-studio .modal-actions .btn { min-height: 52px; font-size: 16px; }
  .souvenir-studio .input { font-size: 16px; min-height: 48px; }
}
.automation-test-actions .btn { flex: 1 1 150px; min-height: 48px; }

/* Danger Zone / permanent delete */
.danger-zone { border: 1px solid rgba(248, 113, 113, 0.45); background: rgba(248, 113, 113, 0.07); border-radius: 12px; padding: 14px; }
.danger-zone p { margin: 0 0 12px; font-size: 14px; line-height: 1.5; }
.danger-zone .btn { width: 100%; min-height: 52px; font-size: 16px; font-weight: 700; }
.danger-eyebrow { color: var(--danger, #f87171); }
.danger-warning { border: 1px solid rgba(248, 113, 113, 0.55); background: rgba(248, 113, 113, 0.1); border-radius: 12px; padding: 12px 14px; margin-bottom: 12px; }
.danger-warning strong { color: var(--danger, #f87171); font-size: 17px; }
.danger-warning p { margin: 6px 0 0; font-size: 14px; line-height: 1.5; }
.delete-impact-title { margin: 0 0 4px; font-weight: 700; font-size: 14px; }
.delete-impact { margin: 0 0 8px; padding-left: 20px; font-size: 14px; line-height: 1.5; }
.danger-dialog .modal-actions .btn { min-height: 52px; font-size: 16px; }
.danger-dialog .input { min-height: 48px; font-size: 16px; }

/* Corrections (void / undo) */
.row-void td { opacity: .55; text-decoration: line-through; }
.row-void td:last-child, .row-void td:nth-last-child(2) { text-decoration: none; opacity: 1; }
.void-tag { display: inline-block; padding: 3px 9px; border-radius: 999px; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: #f87171; border: 1px solid rgba(248, 113, 113, .5); text-decoration: none; }
.corrections-zone { border: 1px solid var(--line, #2a3a30); border-radius: 12px; padding: 14px; }
.corrections-zone p { margin: 0 0 10px; }
.corrections-actions { display: grid; gap: 10px; }
.corrections-actions .btn, [data-void-entry] { min-height: 44px; }
.row-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.row-actions .btn { min-height: 44px; }
.reporting-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; padding: 12px 14px; margin-bottom: 14px; }
.reporting-bar .input { max-width: 190px; min-height: 44px; }
@media (min-width: 861px) { .corrections-actions { display: flex; flex-wrap: wrap; } }
.merge-results { display: grid; gap: 8px; margin-bottom: 12px; }
.merge-option { display: flex; align-items: center; gap: 10px; min-height: 52px; padding: 8px 12px; border: 1px solid var(--line, #2a3a30); border-radius: 10px; cursor: pointer; }
.merge-option small { display: block; color: var(--muted); }

.clickable-row { cursor: pointer; }
.clickable-row:hover, .clickable-row:focus-visible { background: rgba(214, 183, 100, 0.08); outline: none; }
