/* ============ Priority Matrix - themed (dark default) ============ */
:root, :root[data-theme="dark"] {
  --bg: #0d0e13;               /* canvas */
  --panel: #181a22;            /* surface: cards, sidebar */
  --panel2: #232631;           /* raised: hover, inputs */
  --border: rgba(255,255,255,.09);
  --text: #ececef;
  --muted: #9a9ba5;
  --accent: #e08ba3;           /* raspberry */
  --accent-h: #c9738c;
  --on-accent: #1a1a22;
  --q1: #e08ba3;               /* Q1 Do first  - lighter raspberry */
  --q2: #5ec7bd;               /* Q2 Schedule  - brighter teal */
  --q3: #e0b968;               /* Q3 Delegate  - warmer gold */
  --q4: #9e9fac;               /* Q4 Eliminate - slate */
  --on-q: #14151c;             /* text on quadrant chips */
  --radius: 10px; --sidebar-w: 232px; --sidebar-wc: 64px;
}
:root[data-theme="light"] {
  --bg: #fafaf8;               /* canvas */
  --panel: #ffffff;            /* surface */
  --panel2: #f5f4f0;           /* raised / sidebar tint */
  --border: rgba(26,26,26,.12);
  --text: #2b2d3a;             /* ink */
  --muted: #6e6f7a;
  --accent: #c56a85;           /* dusty raspberry */
  --accent-h: #b85574;
  --on-accent: #ffffff;
  --q1: #c56a85;
  --q2: #4ba8a0;
  --q3: #d0a054;
  --q4: #8f909c;
  --on-q: #ffffff;
  --radius: 10px; --sidebar-w: 232px; --sidebar-wc: 64px;
}
* { box-sizing: border-box; margin: 0; }
html, body { height: 100%; }
body { background: var(--bg); color: var(--text); font: 14px/1.45 'Segoe UI', system-ui, sans-serif; overflow: hidden; transition: background .2s, color .2s; }
#app { display: flex; height: 100vh; height: 100dvh; }
h1 { font-size: 20px; } h2 { font-size: 16px; } h3 { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
a { color: inherit; cursor: pointer; text-decoration: none; }
input, select, textarea { background: var(--panel2); border: 1px solid var(--border); color: var(--text); border-radius: 6px; padding: 7px 9px; font: inherit; width: 100%; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); }
label { display: flex; flex-direction: column; gap: 4px; font-size: 12px; color: var(--muted); }
.hint { color: var(--accent); }

/* ---- Sidebar ---- */
#sidebar { width: var(--sidebar-w); background: var(--panel); border-right: 1px solid var(--border); display: flex; flex-direction: column; transition: width .18s, background .2s; flex-shrink: 0; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; }
#sidebar #nav { flex-shrink: 0; }
:root[data-theme="light"] #sidebar { background: var(--panel2); }
#sidebar.collapsed { width: var(--sidebar-wc); }
#sidebar.collapsed .nl, #sidebar.collapsed .brand-text, #sidebar.collapsed .nl-block { display: none; }
.brand { display: flex; align-items: center; gap: 10px; padding: 16px 14px; border-bottom: 1px solid var(--border); }
.brand-icon { flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text span { font-size: 11px; color: var(--muted); }
#collapseBtn { margin-left: auto; background: none; border: 1px solid var(--border); color: var(--muted); border-radius: 6px; width: 22px; height: 22px; cursor: pointer; }
#nav { padding: 10px 8px; display: flex; flex-direction: column; gap: 2px; flex: 1; }
#nav a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 8px; color: var(--muted); font-weight: 500; }
#nav a:hover { background: var(--panel2); color: var(--text); }
#nav a.active { background: color-mix(in srgb, var(--accent) 15%, transparent); color: var(--accent); }
.ni { width: 18px; text-align: center; }
.protip { margin: 10px; padding: 12px; background: color-mix(in srgb, var(--q2) 10%, transparent); border: 1px solid color-mix(in srgb, var(--q2) 30%, transparent); border-radius: var(--radius); font-size: 12px; color: var(--muted); }
.protip-title { color: var(--text); font-weight: 600; margin-bottom: 4px; }
.q1c { color: var(--q1); } .q2c { color: var(--q2); }
.version-tag { padding: 6px 14px; font-size: 11px; color: var(--muted); text-align: center; }
.profile-link { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-top: 1px solid var(--border); }
.profile-link:hover { background: var(--panel2); }
.avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--accent); color: var(--on-accent); display: inline-flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; overflow: hidden; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Main ---- */
#main { flex: 1; display: flex; flex-direction: column; min-width: 0; }
#topbar { display: flex; align-items: center; justify-content: space-between; padding: 14px 22px; border-bottom: 1px solid var(--border); background: var(--panel); }
#view { flex: 1; overflow: auto; padding: 20px 22px; }

/* ---- Buttons ---- */
.btn { background: var(--panel2); border: 1px solid var(--border); color: var(--text); padding: 8px 14px; border-radius: 8px; cursor: pointer; font: inherit; font-weight: 500; }
.btn:hover { border-color: var(--muted); }
.btn-primary { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.btn-primary:hover { background: var(--accent-h); border-color: var(--accent-h); }
.btn-danger { background: color-mix(in srgb, var(--q1) 15%, transparent); border-color: var(--q1); color: var(--q1); }
.btn-sm { padding: 4px 10px; font-size: 12px; border-radius: 6px; }

/* ---- Cards / metric ---- */
.cards-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin-bottom: 18px; }
.metric { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; border-left: 4px solid var(--border); }
.metric[data-qf] { cursor: pointer; transition: border-color .12s; }
.metric[data-qf]:hover { border-color: var(--accent); }
.metric .num { font-size: 26px; font-weight: 700; }
.metric .lbl { font-size: 12px; color: var(--muted); }
.metric.q1 { border-left-color: var(--q1); } .metric.q2 { border-left-color: var(--q2); }
.metric.q3 { border-left-color: var(--q3); } .metric.q4 { border-left-color: var(--q4); }
.panel { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; margin-bottom: 16px; }
.panel h3 { margin-bottom: 10px; }
.dash-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; align-items: start; }
@media (max-width: 1100px) { .dash-grid { grid-template-columns: 1fr; } }

/* ---- Task cards ---- */
.task-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 12px; }
.task-card { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 14px; cursor: pointer; position: relative; transition: border-color .12s; }
.task-card:hover { border-color: var(--accent); }
.task-card .tt { font-weight: 600; margin: 2px 0 6px; padding-right: 40px; }
.task-card .meta { font-size: 12px; color: var(--muted); display: flex; flex-wrap: wrap; gap: 6px 12px; }
.qbadge { position: absolute; top: 10px; right: 10px; font-size: 11px; font-weight: 700; padding: 2px 7px; border-radius: 5px; color: var(--on-q); }
.qbadge.Q1 { background: var(--q1); } .qbadge.Q2 { background: var(--q2); }
.qbadge.Q3 { background: var(--q3); } .qbadge.Q4 { background: var(--q4); }
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 5px; }
.dot.active { background: var(--q2); animation: pulse 1.6s infinite; }
.dot.backlog { background: var(--q3); } .dot.done { background: var(--q4); }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--q2) 50%, transparent);} 50% { box-shadow: 0 0 0 5px transparent;} }
.score-pill { font-weight: 700; color: var(--accent); }
.progressbar { height: 5px; background: var(--panel2); border-radius: 3px; margin-top: 8px; overflow: hidden; }
.progressbar > div { height: 100%; background: var(--accent); border-radius: 3px; }

/* ---- Toolbars / tabs ---- */
.toolbar { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 14px; }
.toolbar input[type=search] { max-width: 240px; }
.toolbar select { width: auto; }
.tabs { display: inline-flex; background: var(--panel2); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.tabs button { background: none; border: none; color: var(--muted); padding: 7px 14px; cursor: pointer; font: inherit; }
.tabs button.active { background: var(--accent); color: var(--on-accent); }
.group-head { margin: 18px 0 8px; font-weight: 600; color: var(--text); display: flex; align-items: center; gap: 8px; }
.count-chip { background: var(--panel2); border-radius: 10px; padding: 1px 8px; font-size: 11px; color: var(--muted); }

/* ---- Matrix ---- */
.matrix-wrap { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 10px; }
.matrix-legend { display: flex; gap: 16px; flex-wrap: wrap; margin: 10px 6px; font-size: 12px; color: var(--muted); }
.lg { display: flex; align-items: center; gap: 6px; }
.lg i { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }

/* ---- Gantt ---- */
.gantt { overflow-x: auto; background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); }
.gantt table { border-collapse: collapse; min-width: 100%; }
.gantt th, .gantt td { border-bottom: 1px solid var(--border); padding: 0; font-size: 12px; }
.gantt .gname { position: sticky; left: 0; background: var(--panel); min-width: 200px; max-width: 240px; padding: 8px 10px; z-index: 2; border-right: 1px solid var(--border); }
.gantt .gresp { min-width: 90px; padding: 8px; color: var(--muted); border-right: 1px solid var(--border); }
.gantt .ghead { color: var(--muted); font-weight: 500; text-align: center; padding: 6px 4px; border-left: 1px solid var(--border); white-space: nowrap; }
.gantt .gcell { position: relative; height: 34px; border-left: 1px solid rgba(42,47,58,.5); }
.gbar { position: absolute; top: 8px; height: 18px; border-radius: 5px; opacity: .9; cursor: pointer; }
.gbar .gprog { height: 100%; border-radius: 5px 0 0 5px; background: rgba(255,255,255,.35); }
.today-line { position: absolute; top: 0; bottom: 0; width: 2px; background: var(--accent); z-index: 1; }

/* ---- Calendar ---- */
.cal-layout { display: grid; grid-template-columns: 240px 1fr; gap: 16px; }
@media (max-width: 1000px) { .cal-layout { grid-template-columns: 1fr; } }
.mini-cal { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px; align-self: start; }
.mini-cal table { width: 100%; text-align: center; font-size: 12px; border-collapse: collapse; }
.mini-cal td { padding: 4px 0; cursor: pointer; border-radius: 5px; color: var(--muted); }
.mini-cal td:hover { background: var(--panel2); color: var(--text); }
.mini-cal td.today { background: var(--accent); color: var(--on-accent); }
.mini-cal td.sel { outline: 1px solid var(--accent); }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.big-cal { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.big-cal table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.big-cal th { padding: 8px; color: var(--muted); font-size: 12px; border-bottom: 1px solid var(--border); }
.big-cal td { vertical-align: top; height: 96px; border: 1px solid var(--border); padding: 4px; font-size: 11px; }
.big-cal .dnum { color: var(--muted); margin-bottom: 3px; }
.big-cal td.today .dnum { color: var(--accent); font-weight: 700; }
.cal-item { border-radius: 4px; padding: 2px 5px; margin-bottom: 2px; color: var(--on-q); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; cursor: pointer; }

/* ---- Kanban ---- */
.kanban { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.kcol { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px; min-height: 200px; }
.kcol h3 { display: flex; justify-content: space-between; }
.kcard { background: var(--panel2); border: 1px solid var(--border); border-radius: 8px; padding: 10px; margin-bottom: 8px; cursor: pointer; font-size: 13px; }
.kcard:hover { border-color: var(--accent); }
.kteam { margin: 20px 0 8px; font-weight: 600; }

/* ---- Settings / profile ---- */
.settings-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 16px; align-items: start; }
.row-line { display: flex; gap: 10px; align-items: center; margin-bottom: 8px; }
.row-line input, .row-line select { width: auto; flex: 1; }
.chip { display: inline-flex; align-items: center; gap: 6px; background: var(--panel2); border: 1px solid var(--border); border-radius: 20px; padding: 4px 10px; margin: 3px 4px 3px 0; font-size: 12px; }
.chip button { background: none; border: none; color: var(--muted); cursor: pointer; }
.check-line { flex-direction: row; align-items: center; gap: 8px; color: var(--text); font-size: 13px; }
.check-line input { width: auto; }

/* ---- Modal ---- */
.modal-wrap { position: fixed; inset: 0; background: rgba(0,0,0,.6); display: flex; align-items: center; justify-content: center; z-index: 50; }
.modal-wrap.hidden, .hidden { display: none !important; }
.modal { background: var(--panel); border: 1px solid var(--border); border-radius: 14px; width: 640px; max-width: 94vw; max-height: 92vh; overflow: auto; }
.modal-head { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.modal .x { background: none; border: none; color: var(--muted); font-size: 16px; cursor: pointer; }
#taskForm { padding: 16px 20px; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.grid2 .full { grid-column: 1 / -1; }
.autocalc { background: var(--panel2); border-radius: 8px; padding: 10px 12px; font-size: 12px; color: var(--muted); }
.autocalc b { color: var(--text); }
.modal-foot { display: flex; gap: 10px; margin-top: 16px; }
.spacer { flex: 1; }

/* ---- Toasts ---- */
#toasts { position: fixed; bottom: 18px; right: 18px; display: flex; flex-direction: column; gap: 8px; z-index: 99; }
.toast { background: var(--panel2); border: 1px solid var(--border); border-left: 4px solid var(--accent); border-radius: 8px; padding: 10px 14px; max-width: 340px; box-shadow: 0 6px 24px rgba(0,0,0,.4); animation: slidein .2s; }
.toast.warn { border-left-color: var(--q3); } .toast.danger { border-left-color: var(--q1); }
@keyframes slidein { from { transform: translateX(30px); opacity: 0; } }

.empty { color: var(--muted); text-align: center; padding: 30px; font-size: 13px; }
.mut { color: var(--muted); } .small { font-size: 12px; }
table.plain { width: 100%; border-collapse: collapse; }
table.plain th, table.plain td { text-align: left; padding: 7px 8px; border-bottom: 1px solid var(--border); font-size: 13px; }
table.plain th { color: var(--muted); font-weight: 500; font-size: 12px; }

/* ============ Responsive (phones + narrow windows) ============ */
#menuBtn { display: none; background: none; border: 1px solid var(--border); color: var(--text);
  border-radius: 8px; width: 36px; height: 36px; font-size: 16px; cursor: pointer; margin-right: 10px; }
#backdrop { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 55; }
#backdrop.show { display: block; }

@media (max-width: 820px), (max-height: 500px) {
  #sidebar { position: fixed; left: 0; top: 0; bottom: 0; z-index: 60; width: 250px;
    transform: translateX(-105%); transition: transform .2s ease; box-shadow: 4px 0 24px rgba(0,0,0,.5); }
  #sidebar.open { transform: none; }
  #sidebar.collapsed { width: 250px; }
  #sidebar.collapsed .nl, #sidebar.collapsed .brand-text, #sidebar.collapsed .nl-block { display: flex; }
  #sidebar.collapsed .nl { display: inline; }
  #collapseBtn { display: none; }
  #menuBtn { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }

  #topbar { padding: 10px 12px; }
  #topbar h1 { font-size: 16px; flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  #view { padding: 12px; }
  .btn { padding: 8px 12px; }

  .kanban { grid-template-columns: 1fr; }
  .grid2 { grid-template-columns: 1fr; }
  .settings-grid { grid-template-columns: 1fr; }
  .dash-grid { grid-template-columns: 1fr; }
  .cal-layout { grid-template-columns: 1fr; }

  .modal-wrap { align-items: stretch; justify-content: stretch; }
  .modal { width: 100vw; max-width: 100vw; max-height: 100vh; height: 100%; border-radius: 0; border: none; }

  .big-cal td { height: 64px; padding: 2px; font-size: 10px; }
  .cal-item { padding: 1px 3px; }
  .mini-cal { order: 2; }
  .big-cal { order: 1; }

  .gantt .gname { min-width: 130px; max-width: 150px; padding: 6px; }
  .gantt .gresp { display: none; }

  input, select, textarea { font-size: 16px; }
  .toolbar input[type=search] { max-width: none; flex: 1; }
  #toasts { left: 12px; right: 12px; bottom: 12px; }
  .toast { max-width: none; }
}

@media (max-width: 380px) {
  .cards-row { grid-template-columns: 1fr 1fr; }
  .task-grid { grid-template-columns: 1fr; }
}

/* short viewports (phone landscape): compact the drawer so navigation
   fits; secondary content yields to primary nav */
@media (max-height: 500px) {
  .brand { padding: 8px 14px; }
  #nav { padding: 6px 8px; }
  #nav a { padding: 6px 12px; }
  .protip { display: none; }
  .version-tag { display: none; }
  .lang-box { padding: 4px 14px 6px; }
  .profile-link { padding: 8px 14px; }
}

@media (display-mode: standalone) {
  #topbar { padding-top: calc(10px + env(safe-area-inset-top)); }
  #sidebar { padding-top: env(safe-area-inset-top); }
  #view { padding-bottom: calc(16px + env(safe-area-inset-bottom)); }
}

/* ---- Kanban drag & drop ---- */
.kcard { touch-action: pan-y; user-select: none; -webkit-user-select: none; }
.kcard.dragging { opacity: .35; }
.drag-ghost { position: fixed; z-index: 120; pointer-events: none; width: 240px;
  transform: rotate(2deg); box-shadow: 0 12px 32px rgba(0,0,0,.45); opacity: .95; }
.kcol.drop-hint { outline: 2px dashed var(--accent); outline-offset: -4px;
  background: color-mix(in srgb, var(--accent) 6%, var(--panel)); }

/* ---- Toast action button ---- */
.toast-action { margin-left: 12px; background: none; border: 1px solid var(--accent);
  color: var(--accent); border-radius: 6px; padding: 2px 10px; cursor: pointer;
  font: inherit; font-size: 12px; font-weight: 600; }
.toast-action:hover { background: color-mix(in srgb, var(--accent) 15%, transparent); }

/* ---- Mini confirm dialog ---- */
.mini-dialog-wrap { position: fixed; inset: 0; background: rgba(0,0,0,.55);
  display: flex; align-items: center; justify-content: center; z-index: 110; }
.mini-dialog { background: var(--panel); border: 1px solid var(--border); border-radius: 12px;
  padding: 18px 20px; width: 360px; max-width: 92vw; box-shadow: 0 16px 48px rgba(0,0,0,.5); }
.mini-dialog p { margin-bottom: 12px; }
.mini-dialog .check-line { margin: 10px 0 14px; color: var(--muted); font-size: 12px; }
.mini-dialog .row-line { justify-content: flex-end; margin: 0; }

/* ---- Rank-first importance UI ---- */
.drag-handle { cursor: grab; color: var(--muted); font-size: 16px; padding: 0 4px; user-select: none; touch-action: none; }
.drag-handle:active { cursor: grabbing; }
.rank-arrows { display: inline-flex; flex-direction: column; gap: 1px; }
.rank-arrows button { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 8px; line-height: 1; padding: 1px 3px; }
.rank-arrows button:hover:not(:disabled) { color: var(--accent); }
.rank-arrows button:disabled { opacity: .25; cursor: default; }
.chip .rank-arrows { margin-right: 2px; }
input.rank-val { width: 52px !important; flex: none !important; font-size: 11px; color: var(--muted);
  border: 1px solid transparent; background: none; padding: 1px 4px; border-radius: 4px; text-align: right; }
input.rank-val:hover, input.rank-val:focus { border-color: var(--border); background: var(--panel2); color: var(--text); }
.cat-block.dragging { opacity: .35; }
.cat-block.drop-above { box-shadow: 0 -3px 0 0 var(--accent); }

/* ---- Settings redesign: tabbed sections ---- */
.set-tabs { margin-bottom: 18px; display: inline-flex; max-width: 100%; overflow-x: auto; }
.set-tabs button { white-space: nowrap; padding: 9px 18px; font-weight: 500; }
.set-wrap { max-width: 820px; }
.set-sec { display: none; }
.set-sec.active { display: block; animation: secfade .18s ease; }
@keyframes secfade { from { opacity: 0; transform: translateY(5px); } }
.set-intro { color: var(--muted); font-size: 13px; margin: 2px 2px 14px; }
.set-sec .panel { padding: 18px 20px; }
.set-sec .panel h3 { margin-bottom: 12px; letter-spacing: .06em; }
.set-sec .check-line { padding: 4px 0; }
.set-sec .row-line { margin-bottom: 10px; }
@media (max-width: 820px) {
  .set-tabs { width: 100%; }
  .set-tabs button { flex: 1; padding: 9px 10px; font-size: 12px; }
}

/* ---------- language selector ---------- */
.lang-box { padding: 6px 14px 8px; }
.lang-box select { font-size: 12px; padding: 5px 8px; }

/* ---------- dashboard polish ---------- */
.dash-head { margin: 2px 2px 16px; }
.dash-greet { font-size: 20px; font-weight: 700; margin-bottom: 2px; }
.metric { position: relative; padding-right: 30px; transition: border-color .12s, transform .12s, box-shadow .12s; }
.metric[data-qf]:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.18); }
.metric-go { position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  color: var(--muted); font-size: 20px; line-height: 1; }
.overdue-panel { border-color: color-mix(in srgb, var(--q1) 45%, var(--border));
  background: color-mix(in srgb, var(--q1) 5%, var(--panel)); }
table.plain tr[data-goto] { cursor: pointer; }
table.plain tr[data-goto]:hover td { background: var(--panel2); }
.dash-welcome { text-align: center; padding: 48px 28px; max-width: 520px; margin: 10vh auto 0; }
.dash-welcome-ico { font-size: 40px; color: var(--accent); margin-bottom: 10px; }
.dash-welcome h2 { margin-bottom: 8px; }
.dash-welcome p { color: var(--muted); font-size: 13px; margin-bottom: 20px; }

/* ---------- sync status banner ---------- */
#syncBanner {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin: 12px 16px 0; padding: 9px 14px;
  background: var(--panel2); border: 1px solid var(--q1);
  border-radius: 10px; font-size: 13px;
}
#syncBanner .sb-ico { color: var(--q1); }
