/* Dashboard layout. Tokens and components come from nocturne.css; this file
   is only the arrangement. */

.app { display: grid; grid-template-columns: 224px 1fr; min-height: 100vh; }

/* ── sidebar ─────────────────────────────────────────────────────────── */

.sidebar {
  display: flex; flex-direction: column; gap: var(--space-6);
  padding: var(--space-6) var(--space-4);
  background: color-mix(in srgb, var(--surface) 55%, transparent);
  border-right: 1px solid var(--divider);
  position: sticky; top: 0; height: 100vh;
}

.sidebar-brand {
  display: flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-heading); font-weight: var(--heading-weight); font-size: 15px;
  padding-inline: var(--space-2);
}
.pip { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: none; }
.pip-rec { background: var(--rec); }

.record {
  display: flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: var(--space-3); text-decoration: none;
  font-family: var(--font-heading); font-weight: var(--heading-weight); font-size: 14px;
  color: var(--text);
  background: var(--accent-wash);
  border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
  border-radius: var(--radius-md);
  transition: background 120ms var(--ease), border-color 120ms var(--ease);
}
.record:hover { background: color-mix(in srgb, var(--accent) 22%, transparent); border-color: var(--accent); color: var(--text); }

.nav { display: flex; flex-direction: column; gap: 2px; }
.nav-item {
  text-align: left; padding: var(--space-2) var(--space-3);
  background: transparent; border: 0; border-radius: var(--radius-md);
  font-size: 14px; color: var(--text-soft);
  transition: background 120ms var(--ease), color 120ms var(--ease);
}
.nav-item:hover { background: color-mix(in srgb, var(--text) 6%, transparent); color: var(--text); }
.nav-item[aria-current="page"] { background: var(--accent-wash); color: var(--accent); font-weight: 600; }

.vault-status { margin-top: auto; padding: var(--space-3) var(--space-2) 0; font-size: 11.5px; line-height: 1.5; }
.vault-status h6 { margin-bottom: var(--space-1); }
.vault-path { color: var(--text-soft); word-break: break-all; font-family: var(--font-mono); font-size: 10.5px; }
.vault-state { display: flex; align-items: center; gap: 6px; margin-top: var(--space-2); color: var(--text-faint); }
.vault-state .pip { width: 6px; height: 6px; }
.vault-state[data-ok="false"] .pip { background: var(--rec); }

/* ── main ────────────────────────────────────────────────────────────── */

.main { padding: var(--space-8) var(--space-8) 25vh; max-width: 1000px; }
.screen { display: none; }
body[data-screen="record"]   .screen[data-screen="record"],
body[data-screen="browse"]   .screen[data-screen="browse"],
body[data-screen="note"]     .screen[data-screen="note"],
body[data-screen="today"]    .screen[data-screen="today"],
body[data-screen="meetings"] .screen[data-screen="meetings"],
body[data-screen="settings"] .screen[data-screen="settings"] { display: block; }

.page-head { margin-bottom: var(--space-6); }
.page-head h1 { font-size: clamp(30px, 4vw, 44px); letter-spacing: -0.025em; }
.page-sub { color: var(--text-faint); font-size: 14px; margin: 0; }

/* ── search ──────────────────────────────────────────────────────────── */

.search-wrap { position: relative; margin-bottom: var(--space-6); max-width: 560px; }
.search-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--text-faint); pointer-events: none; }
.input.search { min-height: 44px; padding-left: 36px; border-radius: var(--radius-lg); background: var(--surface); }

/* ── filters ─────────────────────────────────────────────────────────── */

.filters { display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-4); }
.filter-row { display: flex; align-items: baseline; gap: var(--space-3); flex-wrap: wrap; }
.filter-row > h6 { flex: none; width: 46px; margin: 0; text-align: right; }
.filter-row .chips { display: flex; gap: var(--space-2); flex-wrap: wrap; align-items: center; }

/* Tag chips are dashed so a topic reads differently from a hard facet. */
.chip.tag-chip { border-style: dashed; }
.chip .n { font-size: 10.5px; opacity: 0.55; margin-left: 2px; }
.chip-more { background: none; border: 0; color: var(--accent); font-size: 12.5px; padding: 3px 4px; }

.url-hint {
  display: flex; align-items: center; gap: var(--space-3); flex-wrap: wrap;
  padding: var(--space-2) var(--space-3); margin-bottom: var(--space-6);
  background: color-mix(in srgb, var(--text) 4%, transparent);
  border-radius: var(--radius-md); font-size: 11.5px;
}
.url-hint code { font-family: var(--font-mono); color: var(--text-soft); }

/* ── results ─────────────────────────────────────────────────────────── */

.result-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: var(--space-4); padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--divider); margin-bottom: var(--space-2);
}
.result-count { margin: 0; font-size: 13px; color: var(--text-faint); }
.result-count strong { font-family: var(--font-heading); font-size: 28px; font-weight: var(--heading-weight); color: var(--text); margin-right: 4px; }
.sort { background: none; border: 0; color: var(--text-faint); font-size: 12.5px; }
.sort:hover { color: var(--accent); }

.results { display: flex; flex-direction: column; }

/* Date in a left gutter: the eye scans one column for "when" and another
   for "what", instead of re-reading a date inside every meta line. */
.result {
  display: grid; grid-template-columns: 84px 1fr; gap: var(--space-6);
  width: 100%; text-align: left; padding: var(--space-4) var(--space-3);
  background: transparent; border: 0; border-bottom: 1px solid var(--divider);
  transition: background 120ms var(--ease);
}
.result:hover { background: color-mix(in srgb, var(--text) 4%, transparent); }
.result:hover .result-title { color: var(--accent); }

.result-when { font-size: 12px; color: var(--text-faint); line-height: 1.45; padding-top: 3px; }
.result-when b { display: block; font-weight: 600; color: var(--text-soft); }

.result-top { display: flex; align-items: center; gap: var(--space-2); margin-bottom: var(--space-1); flex-wrap: wrap; }
.result-title { font-family: var(--font-heading); font-weight: var(--heading-weight); font-size: 19px; line-height: 1.25; margin-bottom: var(--space-1); }
.result-summary { font-size: 13.5px; color: var(--text-soft); margin: 0 0 var(--space-2); max-width: 68ch; }
.result-meta { display: flex; align-items: center; gap: var(--space-2); flex-wrap: wrap; font-size: 11.5px; color: var(--text-faint); }
.result-meta .sep { opacity: 0.4; }

.open-count { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; color: var(--accent); }

.empty { text-align: center; padding: var(--space-12) var(--space-6); }
.skeleton { height: 78px; border-bottom: 1px solid var(--divider); }

/* ── note detail ─────────────────────────────────────────────────────── */

.back { padding-left: 0; margin-bottom: var(--space-3); }
.detail-meta { display: flex; gap: var(--space-2); flex-wrap: wrap; align-items: center; font-size: 12.5px; color: var(--text-faint); margin-top: var(--space-3); }
.detail-body { max-width: 68ch; margin-top: var(--space-6); }
.detail-body .prose p { margin: 0 0 var(--space-4); }
.summary { font-size: 16px; line-height: 1.6; color: var(--text-soft); padding-left: var(--space-4); border-left: 2px solid var(--accent); margin-bottom: var(--space-6); }

.seg { display: inline-flex; border: 1px solid var(--divider); border-radius: var(--radius-md); overflow: hidden; }
.seg button { padding: 6px 14px; font-size: 13px; background: transparent; border: 0; color: var(--text-soft); }
.seg button[aria-pressed="true"] { color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent); }
.seg button + button { border-left: 1px solid var(--divider); }

/* ── today ───────────────────────────────────────────────────────────── */

.stat-row { display: flex; gap: var(--space-6); flex-wrap: wrap; margin-bottom: var(--space-8); }
.stat { min-width: 96px; }
.stat b { display: block; font-family: var(--font-heading); font-size: 30px; font-weight: var(--heading-weight); line-height: 1.1; }
.stat span { font-size: 12px; color: var(--text-faint); }

/* ── meetings / actions ──────────────────────────────────────────────── */

.actions-list { margin-top: var(--space-4); }
.actions-list .action { border-bottom: 1px solid var(--divider); border-radius: 0; padding: var(--space-3); }

/* ── settings ────────────────────────────────────────────────────────── */

.panel { margin-bottom: var(--space-8); max-width: 68ch; }
.panel .small { font-size: 13px; }
.chip-list { display: flex; gap: var(--space-2); flex-wrap: wrap; margin-top: var(--space-3); }
.corr-list { display: flex; flex-direction: column; gap: var(--space-2); margin-top: var(--space-3); }
.corr {
  display: flex; align-items: center; gap: var(--space-3); font-size: 13.5px;
  padding: var(--space-2) var(--space-3);
  background: color-mix(in srgb, var(--text) 4%, transparent); border-radius: var(--radius-md);
}
.corr .heard { font-family: var(--font-mono); color: var(--text-faint); text-decoration: line-through; }
.corr .meant { font-family: var(--font-mono); color: var(--accent); }
.kv { display: grid; grid-template-columns: max-content 1fr; gap: var(--space-2) var(--space-6); margin: var(--space-3) 0 0; font-size: 13.5px; }
.kv dt { color: var(--text-faint); }
.kv dd { margin: 0; font-family: var(--font-mono); font-size: 12.5px; }

/* ── phone ───────────────────────────────────────────────────────────── */

@media (max-width: 800px) {
  .app { grid-template-columns: 1fr; }
  .sidebar {
    position: sticky; top: 0; z-index: 10; height: auto;
    flex-direction: row; align-items: center; gap: var(--space-3);
    /* black-translucent status bar means the page starts behind the clock and
       battery, so the bar pays for its own clearance. */
    padding: calc(var(--space-2) + env(safe-area-inset-top)) var(--space-4) var(--space-2);
    border-right: 0; border-bottom: 1px solid var(--divider);
    background: color-mix(in srgb, var(--bg) 90%, transparent);
    backdrop-filter: saturate(1.6) blur(12px);
    overflow-x: auto;
  }
  .sidebar-brand { display: none; }
  .record { order: 3; margin-left: auto; padding: var(--space-2) var(--space-3); flex: none; }
  .nav { flex-direction: row; gap: 2px; }
  .nav-item { white-space: nowrap; padding: var(--space-2); }
  .vault-status { display: none; }

  .main { padding: var(--space-6) var(--space-4) 20vh; }
  .result { grid-template-columns: 1fr; gap: var(--space-1); }
  .result-when { display: flex; gap: var(--space-2); padding-top: 0; }
  .result-when b { display: inline; }
  .filter-row > h6 { width: auto; text-align: left; }
}

/* ── recipes ─────────────────────────────────────────────────────────── */

.recipes { display: flex; flex-wrap: wrap; gap: var(--space-2); align-items: center; margin-top: var(--space-8); padding-top: var(--space-4); border-top: 1px solid var(--divider); }
.recipes h6 { margin: 0 var(--space-2) 0 0; }
.recipe-out { margin-top: var(--space-4); padding: var(--space-4); background: var(--surface); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.recipe-text { white-space: pre-wrap; font-family: var(--font-body); font-size: 14px; line-height: 1.6; margin: var(--space-2) 0; }
.conf-note { margin-bottom: var(--space-4); }

/* ── heatmap ─────────────────────────────────────────────────────────── */

.heatmap-wrap { margin-bottom: var(--space-8); }
.heatmap { display: grid; grid-template-rows: repeat(7, 11px); grid-auto-flow: column; grid-auto-columns: 11px; gap: 3px; margin-top: var(--space-3); }
.hm-day { width: 11px; height: 11px; padding: 0; border: 0; border-radius: 2px; background: color-mix(in srgb, var(--text) 7%, transparent); cursor: default; }
.hm-day[data-level="1"] { background: color-mix(in srgb, var(--accent) 30%, transparent); cursor: pointer; }
.hm-day[data-level="2"] { background: color-mix(in srgb, var(--accent) 50%, transparent); cursor: pointer; }
.hm-day[data-level="3"] { background: color-mix(in srgb, var(--accent) 72%, transparent); cursor: pointer; }
.hm-day[data-level="4"] { background: var(--accent); cursor: pointer; }
.hm-day:hover[data-level]:not([data-level="0"]) { outline: 1px solid var(--text-soft); }

/* ── failed recordings ───────────────────────────────────────────────── */

.failed-list { margin-bottom: var(--space-8); }
.failed { display: flex; justify-content: space-between; align-items: flex-start; gap: var(--space-4); padding: var(--space-3); border-bottom: 1px solid var(--divider); }
.failed-name { font-family: var(--font-mono); font-size: 12px; }
.small { font-size: 12.5px; }

/* ── record ──────────────────────────────────────────────────────────── */

.capture { display: flex; align-items: center; gap: var(--space-8); margin-bottom: var(--space-4); }

.rec-btn {
  width: 88px; height: 88px; flex: none; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--divider);
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  transition: transform 140ms var(--ease), border-color 140ms var(--ease);
}
.rec-btn:hover { transform: scale(1.03); border-color: var(--accent); }
.rec-btn:active { transform: scale(0.98); }
.rec-dot {
  width: 30px; height: 30px; border-radius: 50%; background: var(--rec);
  transition: all 220ms var(--ease);
}
/* Recording: the dot becomes a stop square and the ring breathes. */
.rec-btn[data-recording="true"] { border-color: var(--rec); animation: breathe 2.4s ease-in-out infinite; }
.rec-btn[data-recording="true"] .rec-dot { width: 26px; height: 26px; border-radius: 5px; }
@keyframes breathe {
  0%, 100% { box-shadow: var(--shadow-md), 0 0 0 0 color-mix(in srgb, var(--rec) 40%, transparent); }
  50%      { box-shadow: var(--shadow-md), 0 0 0 14px color-mix(in srgb, var(--rec) 0%, transparent); }
}
@media (prefers-reduced-motion: reduce) { .rec-btn[data-recording="true"] { animation: none; } }

.capture-side { display: flex; flex-direction: column; gap: var(--space-2); min-width: 0; flex: 1; }
.timer { font-family: var(--font-heading); font-size: 34px; font-weight: var(--heading-weight); font-variant-numeric: tabular-nums; line-height: 1; }
.device { font-size: 11.5px; font-family: var(--font-mono); }

.meter { display: flex; align-items: flex-end; gap: 2px; height: 34px; }
.meter i { flex: 1; min-width: 2px; height: 3px; border-radius: 1px; background: color-mix(in srgb, var(--text) 14%, transparent); transition: height 90ms linear, background 90ms linear; }
.meter i.on { background: var(--accent); }

.hint { font-size: 13.5px; color: var(--text-faint); margin-bottom: var(--space-6); }
.hint.error { color: var(--rec); font-weight: 600; }
.hint .linklike { background: none; border: 0; font: inherit; color: var(--accent); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; cursor: pointer; margin-left: 4px; }

.dropzone {
  padding: var(--space-8); text-align: center; font-size: 13.5px; color: var(--text-faint);
  border: 1px dashed var(--divider); border-radius: var(--radius-lg); cursor: pointer;
  transition: border-color 120ms var(--ease), background 120ms var(--ease);
}
.dropzone:hover, .dropzone.over { border-color: var(--accent); color: var(--accent); background: var(--accent-wash); }

.jobs-wrap { margin-top: var(--space-8); }
.job { display: flex; align-items: center; gap: var(--space-3); padding: var(--space-3); border-bottom: 1px solid var(--divider); font-size: 13.5px; }
.job-status { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-faint); min-width: 82px; }
.job[data-state="done"] .job-status { color: var(--ok); }
.job[data-state="failed"] .job-status { color: var(--rec); }
.job-file { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-soft); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

@media (max-width: 800px) {
  .capture { gap: var(--space-6); }
  .rec-btn { width: 72px; height: 72px; }
  .timer { font-size: 28px; }
}

/* ── editable settings ───────────────────────────────────────────────── */

.tag.removable { padding-right: 4px; gap: 4px; }
.tag .x, .corr .x {
  background: none; border: 0; color: inherit; opacity: 0.5;
  font-size: 14px; line-height: 1; padding: 0 3px; cursor: pointer;
}
.tag .x:hover, .corr .x:hover { opacity: 1; color: var(--rec); }
.add-inline { width: 140px; min-height: 26px; font-size: 12px; padding: 2px 8px; }
.corr-add .input { min-height: 28px; font-size: 13px; width: 150px; }
.corr .x { margin-left: auto; }

/* ── audio player ────────────────────────────────────────────────────── */

.player { height: 30px; max-width: 260px; }
.player::-webkit-media-controls-panel { background: var(--surface); }

/* ── login ───────────────────────────────────────────────────────────── */

.login-overlay {
  position: fixed; inset: 0; z-index: 100; display: grid; place-items: center;
  padding: var(--space-6); background: var(--bg);
}
.login {
  width: min(320px, 100%); display: flex; flex-direction: column; gap: var(--space-3);
  padding: var(--space-8); border-radius: var(--radius-lg);
  background: var(--surface); box-shadow: var(--shadow-lg);
}
.login h2 { margin: 0; }

/* Desktop shows the filters outright; the phone collapses them. Declared
   before the media query so the media query actually wins. */
.filter-toggle { display: none; }

/* ── phone: filters take too much of the screen ──────────────────────────
   On a 375px screen the filter rows pushed results below the fold, so you
   scrolled past controls you weren't using to reach what you came for.
   They collapse behind a summary that says what's currently on. */

@media (max-width: 800px) {
  .filter-toggle {
    display: flex; align-items: center; gap: var(--space-2);
    width: 100%; padding: var(--space-3);
    background: color-mix(in srgb, var(--text) 4%, transparent);
    border: 0; border-radius: var(--radius-md);
    font-size: 13px; color: var(--text-soft); margin-bottom: var(--space-3);
  }
  .filter-toggle .count-on {
    margin-left: auto; font-size: 11px; padding: 1px 7px; border-radius: 999px;
    background: var(--accent-wash); color: var(--accent);
  }
  .filter-toggle .chevron { transition: transform 160ms var(--ease); }
  .filter-toggle[aria-expanded="true"] .chevron { transform: rotate(180deg); }
  .filters[hidden] { display: none; }

  .url-hint { display: none; }             /* nothing to copy on a phone */
  .page-head { margin-bottom: var(--space-4); }
  .search-wrap { margin-bottom: var(--space-4); }
  .result-count strong { font-size: 22px; }
}



/* ── running from the Home Screen ─────────────────────────────────────────
   In standalone mode iOS hands the page the full screen, status bar
   included. env(safe-area-inset-top) is the right answer and is applied
   above; this is the floor for the case where the inset reports 0 but the
   status bar is still there, which is what was happening on the phone. */

@media (display-mode: standalone), (display-mode: fullscreen) {
  body { min-height: 100dvh; }
}

/* Set by dashboard.js from navigator.standalone, which iOS populates
   reliably where the inset sometimes does not. 52px clears the status bar on
   every current iPhone; the inset wins when it is larger (Dynamic Island). */
:root[data-standalone="true"] .sidebar {
  padding-top: max(calc(var(--space-2) + env(safe-area-inset-top)), 52px);
}
:root[data-standalone="true"] .main {
  padding-bottom: calc(20vh + max(env(safe-area-inset-bottom), 16px));
}

/* ── ask your notes ──────────────────────────────────────────────────── */

.ask-btn {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  padding: 5px 12px; font-size: 13px; font-weight: 600;
  color: var(--accent); background: var(--accent-wash);
  border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  border-radius: var(--radius-md);
}
.ask-btn:hover { background: color-mix(in srgb, var(--accent) 22%, transparent); }
.input.search { padding-right: 62px; }

.ask-result {
  padding: var(--space-4); margin-bottom: var(--space-6);
  background: var(--surface); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); border-left: 2px solid var(--accent);
}
.ask-answer { font-size: 15px; line-height: 1.6; margin: 0 0 var(--space-3); }
.ask-sources { display: flex; gap: var(--space-2); flex-wrap: wrap; }
.ask-sources button {
  font-size: 11.5px; padding: 3px 9px; border-radius: 999px;
  background: transparent; color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
}
.ask-sources button:hover { background: var(--accent-wash); }

/* ── destructive actions ─────────────────────────────────────────────── */

.btn-danger { color: var(--rec); }
.btn-danger:hover { background: color-mix(in srgb, var(--rec) 14%, transparent); }
.confirm {
  display: flex; align-items: center; gap: var(--space-2); flex-wrap: wrap;
  padding: var(--space-3); margin-top: var(--space-3);
  border-radius: var(--radius-md); font-size: 13.5px;
  background: color-mix(in srgb, var(--rec) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--rec) 30%, transparent);
}
.failed .btn { padding: 2px 8px; font-size: 12px; }
.failed-actions { display: flex; gap: var(--space-1); }

/* ── bottom tab bar (phones) ─────────────────────────────────────────── */

.tabbar { display: none; }

@media (max-width: 800px) {
  .tabbar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 20;
    /* Equal columns, mic in the middle one: with space-around and a
       fixed-width button the mic sat slightly off-centre. */
    display: grid; grid-template-columns: repeat(5, 1fr); align-items: start;
    padding: var(--space-2) var(--space-2) calc(var(--space-2) + env(safe-area-inset-bottom));
    background: color-mix(in srgb, var(--bg) 92%, transparent);
    backdrop-filter: saturate(1.6) blur(14px);
    border-top: 1px solid var(--divider);
  }
  .tab {
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    padding: var(--space-2) 0; background: none; border: 0;
    font-size: 10.5px; color: var(--text-faint);
  }
  .tab svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
  .tab[aria-current="page"] { color: var(--accent); }

  /* Capture is the centre of gravity, so it is the one raised control. */
  .tab-record {
    justify-self: center; width: 56px; height: 56px; margin-top: -20px;
    border-radius: 50%; background: var(--accent); color: #fff;
    box-shadow: 0 6px 18px color-mix(in srgb, var(--accent) 45%, transparent);
    /* It inherits .tab's column layout, which has a label to sit above and
       vertical padding to make room for it. This button has neither, so the
       glyph was pushed 9px off centre. Grid centring, no padding, no gap. */
    display: grid; place-items: center; padding: 0; gap: 0;
  }
  .tab-record svg { width: 26px; height: 26px; stroke-width: 2; }
  .tab-record[aria-current="page"] { color: #fff; background: var(--rec); }

  /* The top bar loses the nav; the tab bar has it. */
  .sidebar .nav, .sidebar .record { display: none; }
  .sidebar { justify-content: space-between; }
  .sidebar-brand { display: flex; }

  .main { padding-bottom: calc(96px + env(safe-area-inset-bottom)); }
}


/* No text selection or callout on chrome, and no double-tap zoom anywhere.
   touch-action is what actually removes the 300ms tap delay as well. */
html { -webkit-text-size-adjust: 100%; touch-action: manipulation; }
.tabbar, .sidebar, .tab, .btn, .chip, .result, .rec-btn, .seg button {
  -webkit-user-select: none; user-select: none;
  -webkit-touch-callout: none; touch-action: manipulation;
}
/* Content stays selectable - you should be able to copy a line of a note. */
.prose, .raw, .result-summary, .ask-answer, .detail-body { user-select: text; -webkit-user-select: text; }
