/* ============================================================
   Calorie Tracker - mobile-first stylesheet
   Designed for iPhone in standalone (home screen) mode.
   ============================================================ */

:root{
  --bg:        #0e1116;
  --bg-2:      #161b23;
  --bg-3:      #1d232d;
  --line:      #2a323e;
  --text:      #e8edf4;
  --text-2:    #98a4b6;
  --text-3:    #6b7787;
  --accent:    #b8f24a;
  --accent-in: #16200a;
  --protein:   #7cc4ff;
  --carbs:     #ffc46b;
  --fat:       #ff8fa8;
  --fibre:     #9ee6c0;
  --water:     #5bc8f5;
  --danger:    #ff6b6b;
  --warn:      #ffc46b;

  --r-s: 10px;
  --r-m: 16px;
  --r-l: 22px;

  --safe-t: env(safe-area-inset-top, 0px);
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-l: env(safe-area-inset-left, 0px);
  --safe-r: env(safe-area-inset-right, 0px);

  --navh: 62px;
  color-scheme: dark;
}

*,*::before,*::after{ box-sizing:border-box; }

html,body{
  margin:0; padding:0; height:100%;
  background:var(--bg); color:var(--text);
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro Text","Segoe UI",Roboto,system-ui,sans-serif;
  font-size:16px; line-height:1.45;
  -webkit-font-smoothing:antialiased;
  overscroll-behavior-y:none;
}

/* Stop iOS double-tap zoom and the grey tap flash */
body{ touch-action:manipulation; -webkit-tap-highlight-color:transparent; }

h1,h2,h3,h4{ margin:0 0 .4em; line-height:1.2; letter-spacing:-.02em; font-weight:650; }
h1{ font-size:2rem; }
h2{ font-size:1.5rem; }
h3{ font-size:1.0625rem; }
h4{ font-size:.9375rem; }
p{ margin:0 0 1em; }

.muted{ color:var(--text-2); }
.small{ font-size:.8125rem; }
.hidden{ display:none !important; }
.mb-l{ margin-bottom:2rem; }
.warn{ color:var(--warn); font-size:.875rem; }
.warn.error{ color:var(--danger); }

/* ---------- screens ---------- */
.screen{ display:none; position:fixed; inset:0; flex-direction:column; }
.screen.active{ display:flex; }

.scroll{
  flex:1; overflow-y:auto; -webkit-overflow-scrolling:touch;
  overscroll-behavior:contain;
}

.pad{
  padding:20px calc(18px + var(--safe-r)) 20px calc(18px + var(--safe-l));
}

.center-col{
  flex:1; display:flex; flex-direction:column; justify-content:center;
  padding-top:calc(var(--safe-t) + 20px);
  padding-bottom:calc(var(--safe-b) + 20px);
}

.splash{ flex:1; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; }

.mark{
  font-size:44px; color:var(--accent); line-height:1;
  animation:spin 2.4s linear infinite;
}
.mark.big{ font-size:64px; margin-bottom:10px; animation:none; }
@keyframes spin{ to{ transform:rotate(360deg); } }
@media (prefers-reduced-motion:reduce){ .mark{ animation:none; } }

/* ---------- top bar ---------- */
.topbar{
  display:flex; align-items:center; gap:8px;
  padding:calc(var(--safe-t) + 10px) calc(14px + var(--safe-r)) 10px calc(14px + var(--safe-l));
  border-bottom:1px solid var(--line);
  background:rgba(14,17,22,.9);
  backdrop-filter:saturate(160%) blur(14px);
  -webkit-backdrop-filter:saturate(160%) blur(14px);
  position:relative; z-index:5;
}
.topbar h3{ margin:0; flex:1; text-align:center; }
.topbar h3:first-child{ text-align:left; padding-left:4px; }

.icon-btn{
  appearance:none; border:0; background:var(--bg-3); color:var(--text);
  width:38px; height:38px; border-radius:50%; font-size:22px; line-height:1;
  display:grid; place-items:center; cursor:pointer; flex:0 0 auto;
}
.icon-btn:active{ background:var(--line); }
.icon-btn:disabled{ opacity:.3; }

.progress{ flex:1; height:4px; background:var(--bg-3); border-radius:2px; overflow:hidden; }
.progress-fill{ height:100%; background:var(--accent); width:0; transition:width .3s ease; }

/* ---------- controls ---------- */
.field{
  appearance:none; -webkit-appearance:none;
  width:100%; padding:14px 14px;
  /* 16px minimum stops iOS Safari zooming in when the field is focused */
  font-size:16px; font-family:inherit;
  background:var(--bg-2); color:var(--text);
  border:1px solid var(--line); border-radius:var(--r-m);
  margin-bottom:14px;
}
.field:focus{ outline:none; border-color:var(--accent); }
.field::placeholder{ color:var(--text-3); }

.lbl{ display:block; font-size:.8125rem; color:var(--text-2); margin:0 0 6px 2px; font-weight:500; }

.row{ display:flex; gap:10px; align-items:flex-start; }
.row .field{ flex:1; }
.row .unit{ padding-top:15px; color:var(--text-2); font-size:.875rem; }

/* Labelled number boxes, two to a row. */
.fieldgrid{ display:grid; grid-template-columns:1fr 1fr; gap:0 12px; }
.fieldgrid .field{ width:100%; }
.fieldgrid .lbl{ margin-bottom:5px; }

.btn{
  appearance:none; border:0; cursor:pointer; font-family:inherit;
  font-size:1rem; font-weight:600; padding:15px 20px; border-radius:var(--r-m);
  background:var(--bg-3); color:var(--text); transition:transform .08s ease;
}
.btn:active{ transform:scale(.98); }
.btn.primary{ background:var(--accent); color:var(--accent-in); }
.btn.ghost{ background:transparent; color:var(--text-2); border:1px solid var(--line); }
.btn.danger{ background:transparent; color:var(--danger); border:1px solid var(--danger); }
.btn.block{ display:block; width:100%; margin-bottom:10px; }
.btn:disabled{ opacity:.4; }

.linky{
  appearance:none; background:none; border:0; padding:6px 0;
  color:var(--accent); font-size:.875rem; font-family:inherit; cursor:pointer;
}

.seg{
  display:flex; background:var(--bg-2); border:1px solid var(--line);
  border-radius:var(--r-m); padding:4px; gap:4px; margin-bottom:14px;
}
.seg-btn{
  flex:1; appearance:none; border:0; background:transparent; color:var(--text-2);
  font-family:inherit; font-size:.9375rem; font-weight:550; padding:9px 6px;
  border-radius:12px; cursor:pointer;
}
.seg-btn.active{ background:var(--bg-3); color:var(--text); }
.seg.small{ flex:0 0 auto; margin-bottom:14px; }
.seg.small .seg-btn{ padding:9px 12px; font-size:.875rem; }

.stack{ display:flex; flex-direction:column; gap:8px; margin-bottom:16px; }
.opt{
  display:flex; align-items:center; gap:12px; text-align:left; width:100%;
  appearance:none; font-family:inherit; cursor:pointer;
  background:var(--bg-2); border:1px solid var(--line); color:var(--text);
  border-radius:var(--r-m); padding:13px 14px;
}
.opt.active{ border-color:var(--accent); background:var(--bg-3); }
.opt .dot{
  width:20px; height:20px; border-radius:50%; border:2px solid var(--line);
  flex:0 0 auto; display:grid; place-items:center;
}
.opt.active .dot{ border-color:var(--accent); }
.opt.active .dot::after{ content:""; width:10px; height:10px; border-radius:50%; background:var(--accent); }
.opt .t{ flex:1; }
.opt .t b{ display:block; font-weight:600; font-size:.9375rem; }
.opt .t small{ color:var(--text-2); font-size:.8125rem; }

.disc{ margin:16px 0; border-top:1px solid var(--line); padding-top:12px; }
.disc summary{ cursor:pointer; color:var(--accent); font-size:.875rem; list-style:none; }
.disc summary::-webkit-details-marker{ display:none; }
.disc summary::before{ content:"+ "; }
.disc[open] summary::before{ content:"- "; }

.hint{ color:var(--text-3); font-size:.8125rem; margin:-8px 0 14px 2px; }

.sticky-bottom{
  border-top:1px solid var(--line); background:var(--bg);
  padding-bottom:calc(var(--safe-b) + 16px);
}
.sticky-bottom .btn{ margin-bottom:0; }

/* ---------- steps ---------- */
.steps .step{ display:none; }
.steps .step.active{ display:block; animation:slide .25s ease; }
@keyframes slide{ from{ opacity:0; transform:translateX(14px); } to{ opacity:1; transform:none; } }

/* ---------- PIN ---------- */
.pin-display{ display:flex; gap:16px; justify-content:center; margin:22px 0 6px; }
.pin-dot{
  width:16px; height:16px; border-radius:50%;
  border:2px solid var(--text-3); transition:all .15s ease;
}
.pin-dot.on{ background:var(--accent); border-color:var(--accent); }
.pin-display.shake{ animation:shake .4s; }
@keyframes shake{
  0%,100%{transform:translateX(0)} 20%{transform:translateX(-9px)}
  40%{transform:translateX(9px)} 60%{transform:translateX(-6px)} 80%{transform:translateX(6px)}
}

.keypad{
  display:grid; grid-template-columns:repeat(3,1fr); gap:12px;
  max-width:300px; margin:14px auto 0; width:100%;
}
.key{
  appearance:none; border:0; cursor:pointer; font-family:inherit;
  aspect-ratio:1/1; max-height:74px; border-radius:50%;
  background:var(--bg-2); color:var(--text); font-size:1.6rem; font-weight:500;
  display:grid; place-items:center;
}
.key:active{ background:var(--bg-3); }
.key.blank{ background:none; pointer-events:none; }
.key.act{ font-size:1.05rem; background:none; color:var(--text-2); }

/* ---------- ring ---------- */
.ring-wrap{ position:relative; width:min(240px,64vw); margin:6px auto 18px; }
.ring{ width:100%; display:block; transform:rotate(-90deg); }
.ring circle{ fill:none; stroke-width:15; stroke-linecap:round; }
.ring-bg{ stroke:var(--bg-3); }
.ring-fg{
  stroke:var(--accent); stroke-dasharray:540.35; stroke-dashoffset:540.35;
  transition:stroke-dashoffset .5s ease, stroke .3s ease;
}
/* Round linecap draws a visible dot even at zero path length (0% progress) -
   use a square cap until there is an actual arc to round off. */
.ring .ring-fg:not(.progress){ stroke-linecap:butt; }
.ring-fg.over{ stroke:var(--danger); }
.ring-center{
  position:absolute; inset:0; display:flex; flex-direction:column;
  align-items:center; justify-content:center; pointer-events:none;
}
.ring-num{ font-size:2.9rem; font-weight:700; letter-spacing:-.04em; line-height:1; font-variant-numeric:tabular-nums; }
.ring-num.over{ color:var(--danger); }
.ring-lbl{ color:var(--text-2); font-size:.8125rem; margin-top:4px; }

.budget-row{
  display:flex; justify-content:space-around; text-align:center;
  padding:14px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  margin-bottom:18px;
}
.budget-row span{ display:block; font-size:1.125rem; font-weight:650; font-variant-numeric:tabular-nums; }
.budget-row small{ color:var(--text-2); font-size:.75rem; }

/* ---------- macros ---------- */
/* Four across is too cramped on a phone, so two by two. */
.macros{ display:grid; grid-template-columns:1fr 1fr; gap:12px 14px; margin-bottom:20px; }
.macro{ flex:1; }
.macro .mt{ display:flex; justify-content:space-between; font-size:.75rem; margin-bottom:5px; }
.macro .mt b{ font-weight:600; }
.macro .mt span{ color:var(--text-2); font-variant-numeric:tabular-nums; }
.macro .bar{ height:6px; background:var(--bg-3); border-radius:3px; overflow:hidden; }
.macro .bar i{ display:block; height:100%; border-radius:3px; transition:width .4s ease; }
.macro.p .bar i{ background:var(--protein); } .macro.p b{ color:var(--protein); }
.macro.c .bar i{ background:var(--carbs); }   .macro.c b{ color:var(--carbs); }
.macro.f .bar i{ background:var(--fat); }     .macro.f b{ color:var(--fat); }
.macro.fb .bar i{ background:var(--fibre); }  .macro.fb b{ color:var(--fibre); }
.macro.w .bar i{ background:var(--water); }   .macro.w b{ color:var(--water); }

/* ---------- meals ---------- */
.meal{ margin-bottom:18px; }
.meal-head{
  display:flex; align-items:baseline; gap:8px; margin-bottom:8px;
  padding-bottom:6px; border-bottom:1px solid var(--line);
}
.meal-head h4{ margin:0; flex:1; }
.meal-head .kc{ color:var(--text-2); font-size:.8125rem; font-variant-numeric:tabular-nums; }
.meal-head .add{
  appearance:none; border:0; background:var(--bg-3); color:var(--accent);
  width:26px; height:26px; border-radius:50%; font-size:17px; line-height:1; cursor:pointer;
}

.entry{
  display:flex; align-items:center; gap:10px; padding:10px 2px;
  border-bottom:1px solid rgba(42,50,62,.5);
}
.entry:last-child{ border-bottom:0; }
.entry .info{ flex:1; min-width:0; }
.entry .nm{ font-size:.9375rem; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.entry .sub{ color:var(--text-3); font-size:.75rem; }
.entry .kc{ font-variant-numeric:tabular-nums; font-weight:600; font-size:.9375rem; }

/* Editing an ingredient's grams in the meal builder. The 16px font is
   deliberate, same as .field - anything smaller and iOS Safari zooms
   the page in the moment the input is focused. */
.entry .g-edit{ display:flex; align-items:center; gap:5px; margin-top:3px; }
.entry .g-in{
  appearance:none; -webkit-appearance:none;
  width:74px; padding:5px 8px; margin:0;
  font-size:16px; font-family:inherit; font-variant-numeric:tabular-nums;
  background:var(--bg-2); color:var(--text);
  border:1px solid var(--line); border-radius:10px;
}
.entry .g-in:focus{ outline:none; border-color:var(--accent); }
.entry .g-in::-webkit-outer-spin-button,
.entry .g-in::-webkit-inner-spin-button{ -webkit-appearance:none; margin:0; }
.entry .g-unit{ color:var(--text-3); font-size:.75rem; }
.entry .g-unit-btn{
  appearance:none; border:1px solid var(--line); background:var(--bg-2); color:var(--text-2);
  border-radius:9px; padding:6px 11px; margin:0;
  font-size:.8125rem; font-family:inherit; cursor:pointer;
}
.entry .g-unit-btn:active{ background:var(--bg-3); color:var(--text); }
.entry .del{
  appearance:none; border:0; background:none; color:var(--text-3);
  font-size:19px; padding:4px 2px 4px 8px; cursor:pointer;
}
.entry .del:active{ color:var(--danger); }

.empty{ color:var(--text-3); font-size:.875rem; padding:10px 2px; }

.quickrow{ display:flex; gap:10px; margin-bottom:20px; flex-wrap:wrap; }
.chip{
  appearance:none; border:1px solid var(--line); background:var(--bg-2); color:var(--text-2);
  border-radius:999px; padding:9px 15px; font-size:.8125rem; font-family:inherit; cursor:pointer;
}
.chip:active{ background:var(--bg-3); }
.chip.on{ border-color:var(--accent); color:var(--accent); }

/* ---------- cards ---------- */
.card{
  background:var(--bg-2); border:1px solid var(--line);
  border-radius:var(--r-l); margin-bottom:16px; overflow:hidden;
}
.card-head{
  display:flex; align-items:center; gap:8px;
  padding:14px 16px 10px;
}
.card-head h4{ margin:0; flex:1; }
.card-body{ padding:0 16px 16px; }
.card.summary{ padding:16px; }

.stat-row{ display:flex; gap:14px; margin-bottom:12px; flex-wrap:wrap; }
.stat{ flex:1; min-width:78px; }
.stat b{ display:block; font-size:1.25rem; font-weight:650; font-variant-numeric:tabular-nums; letter-spacing:-.02em; }
.stat small{ color:var(--text-2); font-size:.75rem; }
.stat b.good{ color:var(--accent); }
.stat b.bad{ color:var(--danger); }

.kv{ display:flex; justify-content:space-between; padding:9px 0; border-bottom:1px solid var(--line); font-size:.9375rem; }
.kv:last-child{ border-bottom:0; }
.kv span{ color:var(--text-2); }
.kv b{ font-weight:600; font-variant-numeric:tabular-nums; }

.chart{ width:100%; margin:6px 0 12px; }
.chart svg{ width:100%; display:block; overflow:visible; }

/* ---------- lists ---------- */
.list-item{
  display:flex; align-items:center; gap:12px; width:100%; text-align:left;
  appearance:none; font-family:inherit; cursor:pointer;
  background:var(--bg-2); border:1px solid var(--line); color:var(--text);
  border-radius:var(--r-m); padding:12px 14px; margin-bottom:8px;
}
.list-item:active{ background:var(--bg-3); }
.list-item .info{ flex:1; min-width:0; }
.list-item .nm{ font-size:.9375rem; font-weight:550; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.list-item .sub{ color:var(--text-3); font-size:.75rem; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.list-item .kc{ font-variant-numeric:tabular-nums; font-size:.875rem; color:var(--text-2); text-align:right; flex:0 0 auto; }
.list-item .kc b{ display:block; color:var(--text); font-size:.9375rem; }

.src{
  display:inline-block; font-size:.625rem; text-transform:uppercase; letter-spacing:.05em;
  padding:2px 6px; border-radius:5px; background:var(--bg-3); color:var(--text-3); margin-left:6px;
  vertical-align:1px;
}
.src.mine{ background:rgba(184,242,74,.14); color:var(--accent); }

/* ---------- bottom nav ---------- */
.tabbar{
  display:flex; align-items:center; position:relative;
  border-top:1px solid var(--line);
  background:rgba(14,17,22,.92);
  backdrop-filter:saturate(160%) blur(14px);
  -webkit-backdrop-filter:saturate(160%) blur(14px);
  padding:6px calc(4px + var(--safe-r)) calc(var(--safe-b) + 4px) calc(4px + var(--safe-l));
  min-height:var(--navh);
}
.tab-btn{
  flex:1; appearance:none; border:0; background:none; cursor:pointer;
  color:var(--text-3); font-family:inherit; font-size:.625rem; font-weight:500;
  display:flex; flex-direction:column; align-items:center; gap:3px; padding:6px 2px;
}
.tab-btn .ti{
  width:22px; height:22px; display:block;
  fill:none; stroke:currentColor; stroke-width:1.8;
  stroke-linecap:round; stroke-linejoin:round;
}
.tab-btn.active{ color:var(--accent); }

.fab{
  flex:0 0 auto; appearance:none; border:0; cursor:pointer;
  width:54px; height:54px; border-radius:50%; margin:0 6px;
  background:var(--accent); color:var(--accent-in);
  font-size:30px; font-weight:300; line-height:1;
  display:grid; place-items:center;
  box-shadow:0 5px 18px rgba(184,242,74,.28);
  transform:translateY(-12px);
}
.fab:active{ transform:translateY(-12px) scale(.94); }

.tab{ display:none; flex-direction:column; flex:1; min-height:0; }
.tab.active{ display:flex; }
#screen-app{ flex-direction:column; }
#screen-app .tab .scroll > .pad{ padding-bottom:28px; }

/* ---------- sheets ---------- */
.sheet-host{ position:fixed; inset:0; z-index:50; }
.sheet-backdrop{ position:absolute; inset:0; background:rgba(0,0,0,.6); animation:fade .2s ease; }
@keyframes fade{ from{opacity:0} to{opacity:1} }
.sheet{
  position:absolute; left:0; right:0; bottom:0;
  max-height:92vh; display:flex; flex-direction:column;
  background:var(--bg-2); border-top:1px solid var(--line);
  border-radius:24px 24px 0 0;
  animation:up .28s cubic-bezier(.22,1,.36,1);
  padding-bottom:var(--safe-b);
}
@keyframes up{ from{ transform:translateY(100%); } to{ transform:none; } }
.sheet.tall{ height:86vh; }
.sheet-head{
  display:flex; align-items:center; gap:10px; padding:16px 18px 10px; flex:0 0 auto;
}
.sheet-head h3{ margin:0; flex:1; }
.sheet-body{ overflow-y:auto; -webkit-overflow-scrolling:touch; padding:0 18px 18px; flex:1; }
.sheet-foot{ padding:12px 18px calc(12px + var(--safe-b)); border-top:1px solid var(--line); flex:0 0 auto; }
.sheet-foot .btn{ margin-bottom:0; }
.grabber{ width:38px; height:4px; border-radius:2px; background:var(--line); margin:8px auto 0; }

/* ---------- search ---------- */
.searchbar{ display:flex; gap:10px; margin-bottom:12px; }
.searchbar .field{ margin-bottom:0; }
.scan-btn{
  appearance:none; border:1px solid var(--line); background:var(--bg-3); color:var(--text);
  border-radius:var(--r-m); width:52px; flex:0 0 auto; cursor:pointer;
  display:grid; place-items:center;
}
.scan-btn svg{ width:24px; height:24px; }
.entry .del{ font-size:19px; }
.list-item .del{ font-size:.8125rem; color:var(--text-2); padding:6px 4px; }
.spinner{ text-align:center; color:var(--text-3); font-size:.875rem; padding:22px 0; }

.qty-row{ display:flex; gap:10px; align-items:center; margin-bottom:14px; }
.qty-row .field{ margin-bottom:0; }
.portions{ display:flex; gap:8px; flex-wrap:wrap; margin-bottom:16px; }

/* auto-fit so the same grid holds four tiles or five without wrapping
   one lonely box onto its own row. */
.nutri-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(58px,1fr)); gap:10px; margin:14px 0 18px; text-align:center; }
.nutri-grid div{ background:var(--bg-3); border-radius:var(--r-s); padding:10px 4px; }
.nutri-grid b{ display:block; font-size:1.0625rem; font-variant-numeric:tabular-nums; }
.nutri-grid small{ color:var(--text-2); font-size:.6875rem; }

#video-wrap{ position:relative; background:#000; border-radius:var(--r-m); overflow:hidden; margin-bottom:14px; }
#video-wrap video{ width:100%; display:block; max-height:52vh; object-fit:cover; }
.scan-line{
  position:absolute; left:8%; right:8%; top:50%; height:2px; background:var(--danger);
  box-shadow:0 0 10px var(--danger); animation:scanmove 2s ease-in-out infinite;
}
@keyframes scanmove{ 0%,100%{ top:32%; } 50%{ top:68%; } }

/* ---------- toast / sync ---------- */
.toast-host{
  position:fixed; left:0; right:0; bottom:calc(var(--navh) + var(--safe-b) + 12px);
  display:flex; flex-direction:column; align-items:center; gap:8px;
  z-index:100; pointer-events:none;
}
.toast{
  background:var(--bg-3); color:var(--text); border:1px solid var(--line);
  border-radius:999px; padding:10px 18px; font-size:.875rem;
  box-shadow:0 6px 22px rgba(0,0,0,.45); animation:toastin .25s ease;
  max-width:88vw; text-align:center;
}
.toast.err{ border-color:var(--danger); color:var(--danger); }
@keyframes toastin{ from{ opacity:0; transform:translateY(10px); } to{ opacity:1; transform:none; } }

.sync-pill{
  position:fixed; top:calc(var(--safe-t) + 8px); right:calc(var(--safe-r) + 12px);
  background:var(--bg-3); border:1px solid var(--line); color:var(--text-2);
  font-size:.6875rem; padding:4px 10px; border-radius:999px; z-index:60;
}
.sync-pill.err{ color:var(--warn); border-color:var(--warn); }

/* ---------- desktop courtesy ---------- */
@media (min-width:720px){
  .screen{ max-width:480px; margin:0 auto; border-left:1px solid var(--line); border-right:1px solid var(--line); }
  .sheet{ max-width:480px; margin:0 auto; }
}

/* The share code itself. Big, spaced and monospaced, because it gets
   read out loud or copied off a screen. */
.sharecode{
  font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;
  font-size:1.75rem; font-weight:700; letter-spacing:.12em; text-align:center;
  color:var(--accent); background:var(--bg-3); border:1px solid var(--line);
  border-radius:var(--r-m); padding:18px 10px; margin:4px 0 14px;
  user-select:all; -webkit-user-select:all;
}
