Diff -- /var/www/vhosts/3dshawn.com/admin.3dshawn.com/assets/css/meta.css

O Operator
Diff

/var/www/vhosts/3dshawn.com/admin.3dshawn.com/assets/css/meta.css

added on local at 2026-07-11 08:10:04

Added
+0
lines
Removed
-0
lines
Context
2839
unchanged
Blobs
from 4f925e03a778
to 4f925e03a778
Restore this content →
Unified diff
Naive LCS-based line diff. Additions in emerald, deletions in rose. Both sides decompressed live from BLOB_STORE.
11/* Meta-Admin -- ported from PTMatrix site.css with neon synthwave palette substituted. */
22/* =====================================================================
33 TaskForge -- site.css
44 Dark-first SaaS design system.
55 Brand: deep wine #2d1810 -> rose #991b1b (gradient, decorative).
66 Primary CTA: cool blue #450a0a (per UX rule). Accent violet #b300ff.
77 Success: #aaff00. Warn: #7c2d12. Danger: #b53048 (warnings only).
88 ===================================================================== */
99
1010:root {
1111 --col-bg-0: #020201;
1212 --col-bg-1: #080604;
1313 --col-bg-2: #0d0a07;
1414 --col-bg-3: #15100b;
1515 --col-bg-4: #1f160e;
1616 --col-surface: #0d0a07;
1717 --col-surface-2: #15100b;
1818 --col-surface-3: #1f160e;
1919
2020 --col-border: #1f160e;
2121 --col-border-2: #2a1d12;
2222
2323 --col-text: #e8e0d2;
2424 --col-text-muted: #a89978;
2525 --col-text-dim: #6e5f43;
2626
2727 --col-primary: #450a0a;
2828 --col-primary-2: #7c2d12;
2929 --col-primary-soft:#2d1810;
3030
3131 --col-accent: #b300ff;
3232 --col-accent-soft: #2c1e4c;
3333
3434 /* Brand palette — cool decorative gradient (logo, hero highlight,
3535 sidebar-active, tooltip glow). Never used for CTAs. */
3636 --col-brand-1: #2d1810;
3737 --col-brand-2: #991b1b;
3838 --col-brand-glow: rgba(69,10,10,.45);
3939 --col-brand-glow-2:rgba(69,10,10,.30);
4040 --grad-brand: linear-gradient(135deg, #2d1810 0%, #991b1b 100%);
4141 --grad-brand-h: linear-gradient(90deg, #2d1810 0%, #991b1b 100%);
4242
4343 --col-success: #aaff00;
4444 --col-success-soft:#1a2c0a;
4545 --col-warn: #7c2d12;
4646 --col-warn-soft: #3f2c0d;
4747 --col-danger: #b53048;
4848 --col-danger-soft: #401717;
4949
5050 --col-pri-low: #94a3b8;
5151 --col-pri-med: #450a0a;
5252 --col-pri-high: #7c2d12;
5353 --col-pri-urgent: #f97316;
5454 --col-pri-crit: #b53048;
5555
5656 --radius-sm: 6px;
5757 --radius: 10px;
5858 --radius-lg: 14px;
5959 --radius-xl: 20px;
6060
6161 --shadow-sm: 0 1px 2px rgba(0,0,0,.3), 0 0 0 1px rgba(255,255,255,.02);
6262 --shadow: 0 4px 16px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.03);
6363 --shadow-lg: 0 20px 50px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.04);
6464
6565 --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
6666 --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
6767 --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
6868
6969 --sidebar-width: 248px;
7070 --sidebar-collapsed-width: 60px;
7171 --topbar-height: 56px;
7272
7373 --t-fast: 120ms ease-out;
7474 --t: 200ms ease-out;
7575}
7676
7777* { box-sizing: border-box; }
7878html, body {
7979 margin: 0;
8080 padding: 0;
8181 background: var(--col-bg-0);
8282 color: var(--col-text);
8383 font-family: var(--font-body);
8484 font-size: 14px;
8585 line-height: 1.5;
8686 -webkit-font-smoothing: antialiased;
8787 -moz-osx-font-smoothing: grayscale;
8888}
8989body { min-height: 100vh; position: relative; }
9090
9191/* Ambient brand atmosphere — three overlapping radial washes per the
9292 warmth-recipe pattern, ported to cyan/lavender. Fixed-attachment so
9393 it stays put while content scrolls; sits behind everything. */
9494body::before {
9595 content: '';
9696 position: fixed;
9797 inset: 0;
9898 z-index: -1;
9999 pointer-events: none;
100100 background:
101101 radial-gradient(ellipse 90% 60% at 15% -10%, rgba(69,10,10,.18) 0%, transparent 55%),
102102 radial-gradient(ellipse 80% 50% at 100% 0%, rgba(69,10,10,.10) 0%, transparent 60%),
103103 radial-gradient(ellipse 60% 50% at 50% 100%, rgba(69,10,10,.06) 0%, transparent 60%);
104104}
105105/* Top accent strip — thin brand gradient line that runs across the
106106 very top of every page like a stage light. */
107107body::after {
108108 content: '';
109109 position: fixed;
110110 left: 0; right: 0; top: 0;
111111 height: 2px;
112112 background: linear-gradient(90deg,
113113 transparent 0%,
114114 var(--col-brand-1) 28%,
115115 var(--col-brand-2) 72%,
116116 transparent 100%);
117117 opacity: .55;
118118 z-index: 100;
119119 pointer-events: none;
120120}
121121
122122a { color: var(--col-primary); text-decoration: none; transition: color var(--t-fast); }
123123a:hover { color: var(--col-primary-2); }
124124
125125h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; letter-spacing: -.01em; margin: 0 0 .4em; color: var(--col-text); }
126126h1 { font-size: 28px; line-height: 1.2; }
127127h2 { font-size: 22px; line-height: 1.25; }
128128h3 { font-size: 18px; line-height: 1.3; }
129129h4 { font-size: 15px; line-height: 1.4; }
130130
131131p { margin: 0 0 .8em; color: var(--col-text-muted); }
132132code, kbd {
133133 font-family: var(--font-mono); font-size: .92em;
134134 background: linear-gradient(180deg, rgba(69,10,10,.06) 0%, transparent 100%), var(--col-bg-2);
135135 padding: 2px 6px;
136136 border-radius: 4px;
137137 border: 1px solid rgba(69,10,10,.22);
138138 color: #bae6fd;
139139}
140140
141141hr { border: 0; border-top: 1px solid var(--col-border); margin: 24px 0; }
142142
143143::-webkit-scrollbar { width: 10px; height: 10px; }
144144::-webkit-scrollbar-track { background: var(--col-bg-1); }
145145::-webkit-scrollbar-thumb { background: var(--col-bg-3); border-radius: 8px; border: 2px solid var(--col-bg-1); }
146146::-webkit-scrollbar-thumb:hover { background: var(--col-bg-4); }
147147
148148/* ====== buttons ====== */
149149.btn {
150150 display: inline-flex; align-items: center; gap: 8px;
151151 padding: 9px 16px;
152152 font-family: var(--font-display);
153153 font-size: 13.5px; font-weight: 500;
154154 border: 1px solid var(--col-border-2);
155155 background: var(--col-surface-3);
156156 color: var(--col-text);
157157 border-radius: var(--radius-sm);
158158 cursor: pointer;
159159 transition: all var(--t-fast);
160160 text-decoration: none;
161161 user-select: none;
162162 white-space: nowrap;
163163}
164164.btn:hover { background: var(--col-bg-4); border-color: var(--col-text-dim); color: var(--col-text); }
165165.btn:active { transform: translateY(1px); }
166166
167167/* PRIMARY = SOLID BRAND (changed 2026-06-08 from blue per
168168 feedback-brand-warmth-recipe). Workhorse CTA: Save/Submit/Update/Create. */
169169.btn-primary {
170170 background: var(--col-brand-1);
171171 border-color: var(--col-brand-2);
172172 color: #fff;
173173 font-weight: 700;
174174 box-shadow: 0 4px 14px var(--col-brand-glow);
175175}
176176.btn-primary:hover {
177177 background: var(--col-brand-2);
178178 border-color: var(--col-brand-2);
179179 color: #fff;
180180 box-shadow: 0 6px 18px rgba(69,10,10,.55);
181181}
182182
183183/* BRAND = GRADIENT — hero / brand-marketing moments only (Add, Start free,
184184 Upgrade). Heavier than .btn-primary; use sparingly (~1-2 per page). */
185185.btn-brand {
186186 background: var(--grad-brand);
187187 border-color: var(--col-brand-2);
188188 color: #fff;
189189 font-weight: 700;
190190 box-shadow: 0 4px 14px var(--col-brand-glow);
191191}
192192.btn-brand:hover {
193193 filter: brightness(1.10);
194194 color: #fff;
195195}
196196
197197/* SECONDARY = NEUTRAL DARK — paired with primary (Cancel, Back, Dismiss). */
198198.btn-secondary {
199199 background: var(--col-bg-3);
200200 color: var(--col-text);
201201 border-color: var(--col-border);
202202}
203203.btn-secondary:hover { background: var(--col-bg-4); }
204204
205205.btn-ghost {
206206 background: transparent;
207207 border-color: var(--col-border);
208208}
209209.btn-ghost:hover { background: var(--col-surface-3); }
210210
211211.btn-danger {
212212 background: var(--col-danger);
213213 border-color: var(--col-danger);
214214 color: #fff;
215215}
216216.btn-danger:hover { background: #dc3030; }
217217
218218.btn-success {
219219 background: var(--col-success);
220220 border-color: var(--col-success);
221221 color: #fff;
222222}
223223
224224.btn-sm { padding: 6px 12px; font-size: 12.5px; }
225225.btn-lg { padding: 12px 20px; font-size: 15px; }
226226.btn-xl { padding: 14px 26px; font-size: 16px; font-weight: 600; }
227227
228228.btn svg { width: 16px; height: 16px; }
229229
230230/* ====== forms ====== */
231231.field { margin-bottom: 16px; }
232232.field label { display: block; font-size: 12.5px; font-weight: 600; color: var(--col-brand-2); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .06em; }
233233.field .help { font-size: 12px; color: var(--col-text-dim); margin-top: 4px; }
234234.input, .textarea, .select {
235235 width: 100%;
236236 padding: 10px 12px;
237237 background: var(--col-bg-1);
238238 color: var(--col-text);
239239 border: 1px solid var(--col-border);
240240 border-radius: var(--radius-sm);
241241 font-family: var(--font-body);
242242 font-size: 14px;
243243 transition: border-color var(--t-fast), box-shadow var(--t-fast);
244244}
245245.input:focus, .textarea:focus, .select:focus {
246246 outline: none;
247247 border-color: var(--col-brand-1);
248248 box-shadow: 0 0 0 3px rgba(69,10,10,.18), 0 0 12px rgba(69,10,10,.18);
249249}
250250.textarea { min-height: 100px; resize: vertical; }
251251.select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2395a0b3' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>"); background-repeat: no-repeat; background-position: right 10px center; padding-right: 32px; }
252252
253253.checkbox, .radio { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-size: 13px; color: var(--col-text); }
254254.checkbox input, .radio input { accent-color: var(--col-brand-1); }
255255
256256.error-msg { background: var(--col-danger-soft); color: var(--col-danger); padding: 10px 14px; border-radius: var(--radius-sm); border: 1px solid rgba(77,14,21,.3); font-size: 13.5px; margin-bottom: 16px; }
257257.flash-msg { background: var(--col-success-soft); color: var(--col-success); padding: 10px 14px; border-radius: var(--radius-sm); border: 1px solid rgba(170,255,0,.3); font-size: 13.5px; margin-bottom: 16px; }
258258.info-msg { background: var(--col-primary-soft); color: var(--col-primary); padding: 10px 14px; border-radius: var(--radius-sm); border: 1px solid rgba(69,10,10,.3); font-size: 13.5px; margin-bottom: 16px; }
259259
260260/* ====== cards / panels ====== */
261261.card {
262262 background:
263263 linear-gradient(180deg, rgba(69,10,10,.05) 0%, transparent 40%),
264264 var(--col-surface);
265265 border: 1px solid rgba(69,10,10,.14);
266266 border-radius: var(--radius);
267267 padding: 18px;
268268 box-shadow: 0 1px 0 rgba(69,10,10,.06) inset, var(--shadow-sm);
269269 position: relative;
270270 transition: border-color var(--t-fast);
271271}
272272.card:hover { border-color: rgba(69,10,10,.28); }
273273.card-header {
274274 display: flex; align-items: center; justify-content: space-between;
275275 padding-bottom: 14px;
276276 border-bottom: 1px solid var(--col-border);
277277 margin-bottom: 14px;
278278}
279279.card-header h2, .card-header h3 { margin: 0; position: relative; padding-left: 12px; color: #fff; }
280280.card-header h2::before, .card-header h3::before {
281281 content: '';
282282 position: absolute;
283283 left: 0; top: 4px; bottom: 4px;
284284 width: 3px;
285285 border-radius: 3px;
286286 background: linear-gradient(180deg, var(--col-brand-1), var(--col-brand-2));
287287 box-shadow: 0 0 8px var(--col-brand-glow);
288288}
289289.panel {
290290 background:
291291 linear-gradient(180deg, rgba(69,10,10,.05) 0%, transparent 40%),
292292 var(--col-surface);
293293 border: 1px solid rgba(69,10,10,.14);
294294 border-radius: var(--radius);
295295 box-shadow: 0 1px 0 rgba(69,10,10,.06) inset;
296296}
297297
298298/* ====== badges & chips ====== */
299299.badge {
300300 display: inline-flex; align-items: center; gap: 4px;
301301 padding: 2px 8px;
302302 border-radius: 5px;
303303 font-size: 11.5px;
304304 font-weight: 500;
305305 background: var(--col-bg-3);
306306 color: var(--col-text-muted);
307307 border: 1px solid var(--col-border-2);
308308}
309309.badge.primary { background: var(--col-primary-soft); color: var(--col-primary); border-color: rgba(69,10,10,.3); }
310310.badge.success { background: var(--col-success-soft); color: var(--col-success); border-color: rgba(170,255,0,.3); }
311311.badge.warn { background: var(--col-warn-soft); color: var(--col-warn); border-color: rgba(69,10,10,.3); }
312312.badge.danger { background: var(--col-danger-soft); color: var(--col-danger); border-color: rgba(77,14,21,.3); }
313313.badge.accent { background: var(--col-accent-soft); color: var(--col-accent); border-color: rgba(179,0,255,.3); }
314314.badge.brand {
315315 background: linear-gradient(135deg, rgba(69,10,10,.18) 0%, rgba(69,10,10,.16) 100%);
316316 color: #bae6fd;
317317 border-color: rgba(69,10,10,.45);
318318 box-shadow: 0 0 0 1px rgba(69,10,10,.12) inset;
319319}
320320
321321.priority-pill { display: inline-flex; align-items: center; gap: 4px; padding: 2px 7px; border-radius: 4px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
322322.priority-low { background: rgba(148,163,184,.15); color: var(--col-pri-low); }
323323.priority-medium { background: rgba(69,10,10,.15); color: var(--col-pri-med); }
324324.priority-high { background: rgba(69,10,10,.15); color: var(--col-pri-high); }
325325.priority-urgent { background: rgba(249,115,22,.15); color: var(--col-pri-urgent); }
326326.priority-critical { background: rgba(77,14,21,.15); color: var(--col-pri-crit); }
327327
328328/* ====== sidebar (in-app) ====== */
329329.app-shell { display: grid; grid-template-columns: var(--sidebar-width) 1fr; min-height: 100vh; }
330330html.sidebar-collapsed .app-shell { grid-template-columns: var(--sidebar-collapsed-width) 1fr; }
331331
332332.sidebar {
333333 background:
334334 radial-gradient(ellipse 150% 50% at 0% 0%, rgba(69,10,10,.26) 0%, transparent 65%),
335335 radial-gradient(ellipse 130% 45% at 100% 30%, rgba(69,10,10,.12) 0%, transparent 60%),
336336 radial-gradient(ellipse 120% 45% at 20% 100%, rgba(69,10,10,.16) 0%, transparent 65%),
337337 linear-gradient(180deg, #1e0e10 0%, #160a0c 55%, #0e0a0c 100%);
338338 border-right: 1px solid rgba(69,10,10,.25);
339339 padding: 12px 12px 24px;
340340 overflow-y: auto;
341341 overflow-x: hidden;
342342 position: sticky;
343343 top: 0;
344344 height: 100vh;
345345 transition: width var(--t);
346346 box-shadow: 1px 0 26px rgba(69,10,10,.10);
347347 scrollbar-color: #991b1b transparent;
348348 scrollbar-width: thin;
349349}
350350.sidebar::-webkit-scrollbar { width: 10px; }
351351.sidebar::-webkit-scrollbar-track { background: rgba(72,12,15,.35); }
352352.sidebar::-webkit-scrollbar-thumb {
353353 background: linear-gradient(180deg, #991b1b 0%, #7a2730 100%);
354354 border-radius: 8px;
355355 border: 2px solid transparent;
356356 background-clip: padding-box;
357357}
358358.sidebar::-webkit-scrollbar-thumb:hover {
359359 background: linear-gradient(180deg, #d05f6b 0%, #9a3340 100%);
360360 background-clip: padding-box;
361361}
362362
363363/* Diagonal shimmer (sidebar-glisten) -- ambient brand-tinted band sweeps
364364 top-left -> bottom-right of the menu BG. Full recipe + bug list:
365365 [[feedback-sidebar-glisten-recipe]] in user auto-memory. */
366366.sidebar::before {
367367 content: '';
368368 position: absolute;
369369 inset: 0;
370370 pointer-events: none;
371371 background: linear-gradient(
372372 135deg,
373373 transparent 30%,
374374 rgba(255,170,180,0.07) 48%,
375375 rgba(255,200,210,0.11) 52%,
376376 transparent 70%
377377 );
378378 background-size: 250% 250%;
379379 background-repeat: no-repeat;
380380 background-position: 150% 150%;
381381 animation: sidebar-glisten 14s linear infinite;
382382 z-index: 0;
383383}
384384.sidebar > * { position: relative; z-index: 1; }
385385@keyframes sidebar-glisten {
386386 0% { background-position: 150% 150%; }
387387 55% { background-position: -150% -150%; }
388388 100% { background-position: -150% -150%; }
389389}
390390@media (prefers-reduced-motion: reduce) {
391391 .sidebar::before { animation: none; opacity: 0; }
392392}
393393
394394.sidebar-brand { display: flex; align-items: center; gap: 10px; padding: 10px 6px 18px; border-bottom: 1px solid var(--col-border); margin-bottom: 14px; }
395395.sidebar-brand .logo { width: 38px; height: 38px; border-radius: 10px; background: #2d1810; border: 1px solid #fff; display: grid; place-items: center; font-weight: 700; font-size: 18px; color: #fff; position: relative; box-shadow: 0 6px 20px rgba(77,14,21,0.40); }
396396.sidebar-brand .logo::after { content: ''; position: absolute; inset: -2px; border-radius: inherit; background: linear-gradient(135deg, #4d0e15 0%, #f87171 100%); filter: blur(12px); opacity: 0.32; z-index: -1; }
397397.sidebar-brand .brand-text { display: flex; flex-direction: column; min-width: 0; line-height: 1.05; }
398398.sidebar-brand .brand-name { font-family: var(--font-display); font-weight: 700; letter-spacing: -.02em; font-size: 17px; color: var(--col-text); line-height: 1.1; }
399399.sidebar-brand .brand-sub {
400400 font-family: var(--font-display);
401401 font-size: 9.5px;
402402 font-weight: 600;
403403 color: var(--col-text-dim);
404404 letter-spacing: .18em;
405405 text-transform: uppercase;
406406 margin-top: 6px;
407407}
408408html.sidebar-collapsed .sidebar-brand .brand-text { display: none; }
409409
410410.sidebar-section-label { font-size: 10.5px; text-transform: uppercase; color: var(--col-brand-2); opacity: .75; padding: 14px 10px 6px; letter-spacing: .12em; font-weight: 700; }
411411html.sidebar-collapsed .sidebar-section-label { display: none; }
412412
413413.sidebar-link {
414414 display: flex; align-items: center; gap: 12px;
415415 padding: 8px 10px;
416416 border-radius: var(--radius-sm);
417417 color: var(--col-text-muted);
418418 text-decoration: none;
419419 font-size: 13.5px;
420420 margin-bottom: 1px;
421421 transition: background var(--t-fast), color var(--t-fast);
422422 white-space: nowrap;
423423 overflow: hidden;
424424}
425425.sidebar-link svg { width: 18px; height: 18px; flex-shrink: 0; }
426426.sidebar-link:hover { background: var(--col-surface-3); color: var(--col-text); }
427427.sidebar-link.active {
428428 background: linear-gradient(90deg, rgba(69,10,10,.28) 0%, rgba(69,10,10,.10) 70%, transparent 100%);
429429 color: #fff;
430430 position: relative;
431431 box-shadow: inset 0 0 0 1px rgba(69,10,10,.25);
432432}
433433.sidebar-link.active::before {
434434 content: '';
435435 position: absolute;
436436 left: -12px;
437437 top: 7px; bottom: 7px;
438438 width: 3px;
439439 border-radius: 0 3px 3px 0;
440440 background: var(--col-brand-1);
441441}
442442.sidebar-link.active svg { color: currentColor; }
443443html.sidebar-collapsed .sidebar-link span { display: none; }
444444
445445/* When collapsed, tighten left/right padding so 18px icons aren't clipped
446446 inside the 60px rail. Center the icon and re-anchor the active stripe. */
447447html.sidebar-collapsed .sidebar { padding-left: 6px; padding-right: 6px; }
448448html.sidebar-collapsed .sidebar-link { padding-left: 0; padding-right: 0; justify-content: center; gap: 0; }
449449html.sidebar-collapsed .sidebar-link.active::before { left: -6px; }
450450html.sidebar-collapsed .sidebar-brand { padding-left: 0; padding-right: 0; justify-content: center; }
451451
452452/* ====== topbar ====== */
453453.topbar {
454454 background:
455455 linear-gradient(90deg, rgba(69,10,10,.10) 0%, rgba(69,10,10,.04) 40%, rgba(12,16,24,.72) 100%),
456456 rgba(12,16,24,.72);
457457 border-bottom: 1px solid rgba(69,10,10,.22);
458458 height: var(--topbar-height);
459459 display: flex; align-items: center;
460460 padding: 0 20px;
461461 gap: 14px;
462462 position: sticky;
463463 top: 0;
464464 z-index: 50;
465465 box-shadow: 0 8px 24px rgba(69,10,10,.04);
466466}
467467.topbar-search:focus-within {
468468 border-color: var(--col-brand-1);
469469 box-shadow: 0 0 0 3px rgba(69,10,10,.16), 0 0 14px rgba(69,10,10,.18);
470470}
471471/* (topbar-title gradient defined below near .page-header) */
472472.topbar-spacer { flex: 1; }
473473.topbar-search { display: flex; align-items: center; gap: 8px; background: var(--col-bg-2); border: 1px solid var(--col-border); padding: 6px 12px; border-radius: var(--radius-sm); width: 320px; max-width: 100%; transition: border-color var(--t-fast), box-shadow var(--t-fast); }
474474.topbar-search input { flex: 1; background: transparent; border: 0; outline: none; color: var(--col-text); font-size: 13px; }
475475.topbar-search svg { width: 14px; height: 14px; color: var(--col-text-dim); }
476476.topbar-actions { display: flex; align-items: center; gap: 8px; }
477477.topbar-iconbtn { width: 34px; height: 34px; display: grid; place-items: center; border-radius: var(--radius-sm); color: var(--col-text-muted); background: transparent; border: 1px solid transparent; cursor: pointer; position: relative; transition: border-color var(--t-fast), color var(--t-fast), box-shadow var(--t-fast); }
478478.topbar-iconbtn:hover { background: transparent; color: var(--col-text); border-color: var(--col-brand-2); box-shadow: 0 0 8px rgba(69,10,10,.35); }
479479.topbar-iconbtn svg { width: 18px; height: 18px; }
480480.topbar-iconbtn .dot { position: absolute; top: 6px; right: 6px; width: 8px; height: 8px; border-radius: 50%; background: var(--col-danger); border: 2px solid var(--col-bg-1); }
481481
482482/* ====== topbar pills (Chat / Messages / Help) ====== */
483483.topbar-pill { display: inline-flex; align-items: center; gap: 7px; padding: 6px 12px; height: 34px; border-radius: var(--radius-sm); background: linear-gradient(180deg, rgba(69,10,10,0.10), rgba(69,10,10,0.04)); border: 1px solid rgba(69,10,10,0.25); color: var(--col-text); font-size: 12.5px; font-weight: 600; text-decoration: none; cursor: pointer; transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast); position: relative; }
484484.topbar-pill:hover { color: #fff; border-color: rgba(69,10,10,0.65); background: linear-gradient(180deg, rgba(69,10,10,0.18), rgba(69,10,10,0.08)); box-shadow: 0 0 0 3px rgba(69,10,10,0.10); }
485485.topbar-pill svg { width: 14px; height: 14px; color: #450a0a; }
486486.topbar-pill.tp-active { color: #fff; border-color: rgba(69,10,10,0.6); background: rgba(69,10,10,0.10); }
487487.topbar-pill .tp-badge { background: var(--col-danger, #991b1b); color: #fff; font-size: 10.5px; font-weight: 700; padding: 1px 6px; border-radius: 999px; min-width: 16px; text-align: center; line-height: 1.35; }
488488.topbar-pill .tp-chev { opacity: 0.7; margin-left: 1px; }
489489button.topbar-pill { font-family: inherit; }
490490
491491/* Attention-grabbing pulse for the admin Support-queue pill when there are
492492 unread admin threads. Border + glow ripple so the admin sees it the moment
493493 they hit any page. Stays subtle when nothing's pending (no class applied). */
494494.topbar-pill.tp-attention {
495495 color: #fff;
496496 border-color: rgba(124, 45, 18, 0.7);
497497 background: rgba(124, 45, 18, 0.18);
498498 animation: tp-attention-pulse 1.6s ease-in-out infinite;
499499 position: relative;
500500}
501501.topbar-pill.tp-attention:hover {
502502 border-color: rgba(124, 45, 18, 0.95);
503503 background: rgba(124, 45, 18, 0.28);
504504}
505505.topbar-pill.tp-attention .tp-badge {
506506 background: #b53048;
507507 box-shadow: 0 0 0 0 rgba(77, 14, 21, 0.55);
508508 animation: tp-attention-dot 1.6s ease-in-out infinite;
509509}
510510.topbar-pill .tp-pulse-dot {
511511 position: absolute;
512512 top: 6px; right: 6px;
513513 width: 8px; height: 8px;
514514 border-radius: 50%;
515515 background: #b53048;
516516 box-shadow: 0 0 0 0 rgba(77, 14, 21, 0.75);
517517 animation: tp-attention-dot 1.6s ease-in-out infinite;
518518}
519519@keyframes tp-attention-pulse {
520520 0%, 100% { box-shadow: 0 0 0 0 rgba(77, 14, 21, 0.0); }
521521 50% { box-shadow: 0 0 0 4px rgba(77, 14, 21, 0.18); }
522522}
523523@keyframes tp-attention-dot {
524524 0%, 100% { box-shadow: 0 0 0 0 rgba(77, 14, 21, 0.60); }
525525 50% { box-shadow: 0 0 0 6px rgba(77, 14, 21, 0.00); }
526526}
527527
528528/* Help dropdown */
529529.topbar-help-menu { position: relative; }
530530.topbar-help-menu .topbar-help-dropdown {
531531 display: none; position: absolute; right: 0; top: calc(100% + 6px);
532532 min-width: 260px; background: var(--col-bg-2, #080604);
533533 border: 1px solid var(--col-border); border-radius: var(--radius-md, 8px);
534534 box-shadow: 0 12px 28px rgba(0,0,0,0.45); padding: 4px 0; z-index: 1000;
535535}
536536/* Invisible bridge — covers the 6px gap between the trigger button and the
537537 dropdown so mouse-out doesn't fire before the cursor reaches the menu.
538538 Hovering the bridge still hovers the dropdown's parent, so the menu
539539 stays open while the cursor crosses. */
540540.topbar-help-menu .topbar-help-dropdown::before {
541541 content: ''; position: absolute;
542542 top: -10px; left: 0; right: 0; height: 10px;
543543}
544544.topbar-help-menu:hover .topbar-help-dropdown,
545545.topbar-help-menu:focus-within .topbar-help-dropdown { display: block; }
546546.topbar-help-dropdown .thd-section { font-size: 10px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: var(--col-text-dim); padding: 12px 16px 6px; }
547547.topbar-help-dropdown a {
548548 display: flex; align-items: center; gap: 9px;
549549 padding: 9px 16px; font-size: 13px; font-weight: 500;
550550 color: var(--col-text); text-decoration: none;
551551 transition: background var(--t-fast), color var(--t-fast);
552552}
553553.topbar-help-dropdown a svg { opacity: 0.8; }
554554.topbar-help-dropdown a:hover { background: rgba(69,10,10,0.08); color: var(--col-accent, #450a0a); }
555555.topbar-help-dropdown a.thd-primary { color: var(--col-accent, #450a0a); }
556556.topbar-help-dropdown a .thd-badge { margin-left: auto; background: var(--col-danger); color: #fff; font-size: 10px; font-weight: 700; padding: 1px 6px; border-radius: 999px; }
557557
558558/* ====== avatar / profile dropdown ====== */
559559.avatar {
560560 width: 32px; height: 32px;
561561 border-radius: 50%;
562562 background: var(--col-primary);
563563 display: grid; place-items: center;
564564 font-size: 12px; font-weight: 600; color: #fff;
565565 text-transform: uppercase;
566566}
567567.avatar-sm { width: 24px; height: 24px; font-size: 10px; }
568568.avatar-lg { width: 44px; height: 44px; font-size: 16px; }
569569.avatar-xl { width: 64px; height: 64px; font-size: 22px; }
570570
571571.profile-btn { display: flex; align-items: center; gap: 8px; background: transparent; border: 0; padding: 4px 6px; border-radius: var(--radius-sm); cursor: pointer; color: var(--col-text); }
572572.profile-btn:hover { background: var(--col-surface-3); }
573573
574574.profile-dropdown { position: relative; }
575575.profile-dropdown-menu {
576576 position: absolute; right: 0; top: calc(100% + 6px);
577577 background:
578578 radial-gradient(220px 140px at 100% 0%, rgba(69,10,10,.10) 0%, transparent 70%),
579579 radial-gradient(220px 160px at 0% 100%, rgba(69,10,10,.08) 0%, transparent 70%),
580580 var(--col-surface);
581581 border: 1px solid var(--col-border);
582582 border-top: 1px solid transparent;
583583 border-radius: var(--radius);
584584 min-width: 240px;
585585 box-shadow: var(--shadow-lg), 0 0 0 1px rgba(69,10,10,.10);
586586 padding: 6px;
587587 display: none;
588588 z-index: 100;
589589 position: absolute;
590590 background-clip: padding-box;
591591 max-height: calc(100vh - 90px);
592592 overflow-y: auto;
593593}
594594.profile-dropdown-menu::before {
595595 content: '';
596596 position: absolute;
597597 left: 10px; right: 10px; top: -1px;
598598 height: 2px;
599599 border-radius: 2px;
600600 background: var(--grad-brand-h);
601601 opacity: .7;
602602}
603603.profile-dropdown-menu.open { display: block; }
604604.profile-dropdown-menu a {
605605 display: flex; align-items: center; gap: 10px;
606606 padding: 8px 10px;
607607 color: var(--col-text);
608608 text-decoration: none;
609609 border-radius: 5px;
610610 font-size: 13px;
611611}
612612.profile-dropdown-menu a:hover { background: var(--col-surface-3); }
613613.profile-dropdown-menu a.profile-admin { color: #f97316; }
614614.profile-dropdown-section { padding: 8px 10px 4px; font-size: 10.5px; text-transform: uppercase; color: var(--col-text-dim); letter-spacing: .08em; font-weight: 600; }
615615.profile-dropdown-divider { height: 1px; background: var(--col-border); margin: 4px 0; }
616616.profile-dropdown-icon { width: 16px; height: 16px; color: var(--col-text-muted); }
617617
618618/* ====== main area ====== */
619619.app-main { display: flex; flex-direction: column; min-width: 0; }
620620.app-content { padding: 24px; flex: 1; min-width: 0; }
621621
622622.page-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
623623.page-header h1 {
624624 margin: 0;
625625 background: linear-gradient(135deg, #fff 0%, #fff 35%, var(--col-brand-2) 75%, var(--col-brand-1) 100%);
626626 -webkit-background-clip: text;
627627 background-clip: text;
628628 -webkit-text-fill-color: transparent;
629629 letter-spacing: -.01em;
630630}
631631.page-header .subtitle { color: var(--col-text-muted); font-size: 13.5px; margin: 4px 0 0; }
632632.topbar-title {
633633 font-family: var(--font-display); font-weight: 700; font-size: 16px;
634634 background: linear-gradient(135deg, #fff 0%, var(--col-brand-2) 100%);
635635 -webkit-background-clip: text;
636636 background-clip: text;
637637 -webkit-text-fill-color: transparent;
638638}
639639
640640.crumbs { font-size: 12.5px; color: var(--col-text-dim); margin-bottom: 4px; }
641641.crumbs a { color: var(--col-text-dim); }
642642.crumbs a:hover { color: var(--col-text); }
643643.crumbs .sep { margin: 0 6px; }
644644
645645/* ====== KPI tiles ====== */
646646.kpi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-bottom: 24px; }
647647.kpi {
648648 background:
649649 linear-gradient(140deg, rgba(69,10,10,.10) 0%, transparent 55%),
650650 var(--col-surface);
651651 border: 1px solid rgba(69,10,10,.22);
652652 border-radius: var(--radius);
653653 padding: 16px 18px;
654654 position: relative;
655655 overflow: hidden;
656656 box-shadow: 0 8px 24px rgba(69,10,10,.06);
657657 transition: border-color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
658658}
659659.kpi:hover {
660660 border-color: rgba(69,10,10,.45);
661661 box-shadow: 0 10px 30px rgba(69,10,10,.12);
662662 transform: translateY(-1px);
663663}
664664.kpi::before {
665665 content: '';
666666 position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
667667 background: var(--grad-brand);
668668}
669669.kpi.success::before { background: var(--col-success); }
670670.kpi.warn::before { background: var(--col-warn); }
671671.kpi.danger::before { background: var(--col-danger); }
672672.kpi.accent::before { background: var(--grad-brand); }
673673.kpi.brand::before { background: var(--grad-brand); }
674674.kpi-label { font-size: 11.5px; text-transform: uppercase; color: var(--col-text-muted); letter-spacing: .06em; font-weight: 500; }
675675.kpi-value {
676676 font-size: 26px; font-weight: 700; margin: 6px 0 4px; font-family: var(--font-display);
677677 background: linear-gradient(135deg, #fff 0%, var(--col-brand-2) 130%);
678678 -webkit-background-clip: text;
679679 background-clip: text;
680680 -webkit-text-fill-color: transparent;
681681}
682682.kpi-delta { font-size: 12px; color: var(--col-text-dim); display: flex; align-items: center; gap: 4px; }
683683.kpi-delta.up { color: var(--col-success); }
684684.kpi-delta.down { color: var(--col-danger); }
685685
686686/* ====== tables ====== */
687687.table { width: 100%; border-collapse: collapse; }
688688.table th, .table td {
689689 padding: 10px 14px;
690690 text-align: left;
691691 border-bottom: 1px solid var(--col-border);
692692 font-size: 13.5px;
693693}
694694.table th {
695695 color: var(--col-brand-2);
696696 font-weight: 600;
697697 font-size: 12px;
698698 text-transform: uppercase;
699699 letter-spacing: .06em;
700700 background: linear-gradient(180deg, rgba(69,10,10,.06) 0%, rgba(69,10,10,.04) 100%), var(--col-bg-1);
701701 border-bottom-color: rgba(69,10,10,.22);
702702}
703703.table tbody tr:hover { background: rgba(69,10,10,.05); }
704704.table tbody tr.clickable { cursor: pointer; }
705705
706706/* ====== sectioned layouts (auth + simple panels) ====== */
707707.auth-shell { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; background: var(--col-bg-0); }
708708.auth-side {
709709 background: linear-gradient(135deg, var(--col-bg-1) 0%, var(--col-surface) 50%, var(--col-bg-2) 100%);
710710 padding: 56px 48px;
711711 display: flex; flex-direction: column; justify-content: flex-start; gap: 32px;
712712 border-right: 1px solid var(--col-border);
713713 position: relative; overflow: hidden;
714714}
715715.auth-side::after {
716716 content: '';
717717 position: absolute; right: -120px; bottom: -120px;
718718 width: 400px; height: 400px;
719719 background:
720720 radial-gradient(circle at 35% 40%, rgba(69,10,10,.22) 0%, transparent 55%),
721721 radial-gradient(circle at 65% 60%, rgba(69,10,10,.18) 0%, transparent 60%);
722722 pointer-events: none;
723723}
724724.auth-side .brand { display: flex; align-items: center; gap: 12px; }
725725.auth-side .brand .logo { width: 38px; height: 38px; border-radius: 10px; background: #2d1810; border: 1px solid #fff; display: grid; place-items: center; font-weight: 700; color: #fff; font-size: 18px; box-shadow: 0 8px 26px var(--col-brand-glow); }
726726.auth-side .brand-name { font-family: var(--font-display); font-weight: 700; font-size: 20px; }
727727.auth-headline { max-width: 480px; }
728728.auth-headline h1 { font-size: 38px; line-height: 1.15; margin-bottom: 12px; }
729729.auth-headline p { font-size: 16px; color: var(--col-text-muted); line-height: 1.55; }
730730.auth-quote { font-size: 13.5px; color: var(--col-text-muted); border-left: 2px solid var(--col-brand-1); padding-left: 14px; }
731731
732732.auth-form-wrap { padding: 56px 48px; display: flex; align-items: center; justify-content: center; }
733733.auth-form-inner { width: 100%; max-width: 380px; }
734734.auth-form-inner h2 { font-size: 22px; margin-bottom: 6px; }
735735.auth-form-inner > p { color: var(--col-text-muted); margin-bottom: 28px; }
736736.auth-form-inner .form-footer { margin-top: 18px; text-align: center; font-size: 13px; color: var(--col-text-muted); }
737737
738738@media (max-width: 880px) {
739739 .auth-shell { grid-template-columns: 1fr; }
740740 .auth-side { display: none; }
741741}
742742
743743/* ====== marketing pages ====== */
744744.marketing-nav { display: flex; align-items: center; padding: 18px 32px; gap: 24px; max-width: 1200px; margin: 0; }
745745.marketing-nav .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
746746.marketing-nav .brand .logo { width: 38px; height: 38px; border-radius: 10px; background: #2d1810; border: 1px solid #fff; display: grid; place-items: center; font-weight: 700; color: #fff; font-size: 18px; position: relative; box-shadow: 0 6px 20px rgba(77,14,21,0.40); }
747747.marketing-nav .brand .logo::after { content: ''; position: absolute; inset: -2px; border-radius: inherit; background: linear-gradient(135deg, #4d0e15 0%, #f87171 100%); filter: blur(12px); opacity: 0.32; z-index: -1; }
748748.marketing-nav .brand .brand-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--col-text); }
749749.marketing-nav .nav-links { display: flex; gap: 18px; margin-left: 30px; }
750750.marketing-nav .nav-links a { color: var(--col-text-muted); font-size: 14px; }
751751.marketing-nav .nav-links a:hover { color: var(--col-text); }
752752.marketing-nav .spacer { flex: 1; }
753753.marketing-nav .actions { display: flex; gap: 10px; align-items: center; }
754754
755755.hero {
756756 position: relative;
757757 padding: 80px 32px 100px;
758758 text-align: center;
759759 overflow: hidden;
760760}
761761.hero::before {
762762 content: '';
763763 position: absolute; inset: 0;
764764 background:
765765 radial-gradient(circle at 22% 18%, rgba(69,10,10,.22) 0%, transparent 42%),
766766 radial-gradient(circle at 78% 78%, rgba(69,10,10,.20) 0%, transparent 48%),
767767 radial-gradient(circle at 50% 50%, rgba(69,10,10,.08) 0%, transparent 60%);
768768 pointer-events: none;
769769}
770770.hero-inner { max-width: 880px; margin: 0 auto; position: relative; }
771771.hero h1 { font-size: 56px; line-height: 1.05; letter-spacing: -.02em; margin-bottom: 18px; }
772772.hero h1 .grad { background: linear-gradient(90deg, #c95560 0%, #5e1c25 50%, #c95560 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
773773.hero p.lead { font-size: 19px; color: var(--col-text-muted); max-width: 640px; margin: 0 auto 28px; }
774774.hero .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
775775.hero .trust-bar { margin-top: 56px; color: var(--col-text-dim); font-size: 12.5px; text-transform: uppercase; letter-spacing: .12em; }
776776
777777.section { padding: 56px 32px; max-width: 1720px; margin: 0 auto; }
778778.section h2 { font-size: 36px; text-align: center; margin-bottom: 12px; }
779779.section .section-lead { text-align: center; font-size: 17px; color: var(--col-text-muted); margin-bottom: 36px; max-width: 660px; margin-left: auto; margin-right: auto; }
780780
781781.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
782782.feature {
783783 background: var(--col-surface);
784784 border: 1px solid var(--col-border);
785785 border-radius: var(--radius-lg);
786786 padding: 28px;
787787 transition: transform var(--t), border-color var(--t);
788788}
789789.feature:hover { transform: translateY(-2px); border-color: rgba(69,10,10,.45); box-shadow: 0 10px 30px rgba(69,10,10,.12); }
790790.feature .icon { width: 44px; height: 44px; border-radius: 11px; background: linear-gradient(135deg, rgba(69,10,10,.32), rgba(69,10,10,.20)); color: #ffb8c0; display: grid; place-items: center; margin-bottom: 16px; box-shadow: 0 0 16px rgba(69,10,10,.35); }
791791.feature .icon svg { width: 22px; height: 22px; }
792792.feature h3 { font-size: 17px; margin-bottom: 8px; }
793793.feature p { font-size: 14px; color: var(--col-text-muted); }
794794
795795/* pricing cards */
796796.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(295px, 1fr)); gap: 18px; max-width: 1720px; margin: 0 auto; }
797797.pricing-card {
798798 background: var(--col-surface);
799799 border: 1px solid var(--col-border);
800800 border-radius: var(--radius-lg);
801801 padding: 28px 24px;
802802 position: relative;
803803 display: flex; flex-direction: column;
804804}
805805.pricing-card.featured { border-color: rgba(69,10,10,.55); box-shadow: 0 12px 40px rgba(69,10,10,.20), 0 0 0 1px rgba(69,10,10,.20); transform: translateY(-4px); }
806806.pricing-card .featured-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--grad-brand); color: #fff; padding: 4px 12px; border-radius: 999px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; box-shadow: 0 4px 14px var(--col-brand-glow); }
807807.pricing-card .discount-badge { position: absolute; top: 12px; right: 12px; background: linear-gradient(135deg, #16a34a, #aaff00); color: #fff; padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 800; letter-spacing: .04em; box-shadow: 0 4px 14px rgba(170,255,0,.35); }
808808.pricing-card .price-original { text-decoration: line-through; color: var(--col-text-dim); font-size: 18px; font-weight: 600; margin-bottom: 2px; }
809809.pricing-card .discount-label { font-size: 12px; color: #aaff00; font-weight: 600; margin-top: 4px; margin-bottom: 6px; }
810810.pricing-card .feature-extras { margin-top: -8px; margin-bottom: 12px; }
811811.pricing-card .feature-extras > summary { cursor: pointer; list-style: none; color: var(--col-text-muted); font-size: 12.5px; padding: 6px 0; user-select: none; display: inline-flex; align-items: center; gap: 4px; }
812812.pricing-card .feature-extras > summary::-webkit-details-marker { display: none; }
813813.pricing-card .feature-extras > summary::before { content: '\25B8'; display: inline-block; transition: transform .15s ease; font-size: 10px; }
814814.pricing-card .feature-extras[open] > summary::before { transform: rotate(90deg); }
815815.pricing-card .feature-extras > summary:hover { color: var(--col-text); }
816816.pricing-card .feature-extras > ul { margin-top: 4px; }
817817.pricing-card h3 { font-size: 17px; }
818818.pricing-card .price { font-size: 38px; font-weight: 700; margin: 14px 0 2px; font-family: var(--font-display); }
819819.pricing-card .price small { font-size: 14px; font-weight: 400; color: var(--col-text-muted); }
820820.pricing-card .tagline { color: var(--col-text-muted); font-size: 13px; margin-bottom: 18px; min-height: 2.4em; }
821821.pricing-card ul { list-style: none; padding: 0; margin: 0 0 22px; flex: 1; }
822822.pricing-card li { font-size: 13.5px; padding: 6px 0; display: flex; align-items: start; gap: 8px; color: var(--col-text-muted); }
823823.pricing-card li.included { color: var(--col-text); }
824824.pricing-card li::before {
825825 content: '';
826826 width: 14px; height: 14px;
827827 background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='3'><polyline points='20 6 9 17 4 12'/></svg>");
828828 background-repeat: no-repeat;
829829 background-position: center;
830830 background-size: contain;
831831 flex-shrink: 0;
832832 margin-top: 3px;
833833}
834834.pricing-card li:not(.included)::before {
835835 background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2395a0b3' stroke-width='2'><line x1='18' y1='6' x2='6' y2='18'/><line x1='6' y1='6' x2='18' y2='18'/></svg>");
836836 opacity: .5;
837837}
838838
839839footer.site-footer {
840840 padding: 40px 32px;
841841 border-top: 1px solid var(--col-border);
842842 color: var(--col-text-dim);
843843 font-size: 13px;
844844 text-align: center;
845845}
846846footer.site-footer a { color: var(--col-text-muted); }
847847
848848/* ====== impersonation banner ====== */
849849.impersonation-banner { display: flex; align-items: center; justify-content: space-between; padding: 8px 20px; background: var(--col-warn); color: #1a1303; font-size: 13px; font-weight: 600; }
850850.impersonation-banner-msg { display: flex; align-items: center; gap: 8px; }
851851.impersonation-banner-stop { background: rgba(0,0,0,.2); color: #1a1303; border: 1px solid rgba(0,0,0,.25); border-radius: 4px; padding: 5px 10px; font-size: 12.5px; font-weight: 600; cursor: pointer; }
852852.impersonation-banner-stop:hover { background: rgba(0,0,0,.3); }
853853
854854/* ====== trial banner ====== */
855855.trial-banner { display: flex; align-items: center; gap: 12px; padding: 10px 16px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: 13px; }
856856.trial-banner a { font-weight: 600; text-decoration: underline; }
857857.trial-banner-gentle { background: linear-gradient(135deg, rgba(69,10,10,.14), rgba(69,10,10,.06)); border: 1px solid rgba(69,10,10,.30); color: #c7dbf0; }
858858.trial-banner-gentle a { color: #450a0a; }
859859.trial-banner-amber { background: linear-gradient(135deg, rgba(69,10,10,.16), rgba(69,10,10,.06)); border: 1px solid rgba(69,10,10,.40); color: #fbd38d; }
860860.trial-banner-amber a { color: #991b1b; }
861861.trial-banner-red { background: linear-gradient(135deg, rgba(77,14,21,.18), rgba(77,14,21,.07)); border: 1px solid rgba(77,14,21,.45); color: #fca5a5; }
862862.trial-banner-red a { color: #f87171; }
863863
864864/* ====== kanban board ====== */
865865.kanban-board { display: flex; gap: 14px; padding: 8px; overflow-x: auto; min-height: calc(100vh - 200px); }
866866.kanban-column {
867867 flex: 0 0 300px;
868868 background: var(--col-bg-1);
869869 border: 1px solid var(--col-border);
870870 border-radius: var(--radius);
871871 display: flex; flex-direction: column;
872872 max-height: calc(100vh - 200px);
873873}
874874.kanban-column-header { padding: 12px 14px; border-bottom: 1px solid var(--col-border); display: flex; align-items: center; gap: 8px; }
875875.kanban-column-header .dot { width: 9px; height: 9px; border-radius: 50%; }
876876.kanban-column-header .title { font-weight: 600; font-size: 13.5px; flex: 1; }
877877.kanban-column-header .count { font-size: 11.5px; color: var(--col-text-dim); background: var(--col-bg-3); padding: 2px 7px; border-radius: 999px; }
878878.kanban-column-body { padding: 10px; overflow-y: auto; flex: 1; min-height: 60px; }
879879.kanban-column.drag-over { background: var(--col-surface-3); border-color: var(--col-brand-1); box-shadow: 0 0 0 3px rgba(69,10,10,.18); }
880880
881881.kanban-card {
882882 background: var(--col-surface);
883883 border: 1px solid var(--col-border);
884884 border-left: 3px solid var(--col-primary);
885885 border-radius: 8px;
886886 padding: 10px 12px;
887887 margin-bottom: 8px;
888888 cursor: grab;
889889 transition: transform var(--t-fast), box-shadow var(--t-fast);
890890 user-select: none;
891891 -webkit-user-select: none;
892892 /* Kill the iOS long-press callout (Copy / Share / Save) AND the Android
893893 text-selection menu. Without this, a long-press on a kanban card pops
894894 the native context menu instead of arming our drag. */
895895 -webkit-touch-callout: none;
896896 /* Prevent iOS Safari from activating its system drag-and-drop on
897897 long-press (which shows its own Download/Share/Print context menu).
898898 Belt-and-suspenders: also remove `draggable` from the template HTML. */
899899 -webkit-user-drag: none;
900900}
901901.kanban-card:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
902902.kanban-card.dragging { opacity: .5; cursor: grabbing; }
903903/* Long-press pickup cue on touch -- card lifts slightly + glows before the
904904 user starts moving, so they know the drag is "armed". */
905905.kanban-card.kanban-card-armed {
906906 transform: scale(1.04);
907907 box-shadow: 0 8px 24px rgba(69,10,10,.45), 0 0 0 1px rgba(69,10,10,.55);
908908}
909909.kanban-card .ticket { font-size: 10.5px; color: var(--col-text-dim); font-family: var(--font-mono); font-weight: 600; letter-spacing: .03em; }
910910.kanban-card .title { font-size: 13.5px; margin: 4px 0 8px; line-height: 1.35; color: var(--col-text); }
911911.kanban-card .meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: 11.5px; color: var(--col-text-dim); }
912912.kanban-card .labels { display: flex; gap: 4px; }
913913.kanban-card .label-pill { font-size: 10px; padding: 1px 6px; border-radius: 4px; }
914914.kanban-add-task { display: flex; align-items: center; gap: 6px; padding: 8px 10px; color: var(--col-text-dim); cursor: pointer; border-radius: 6px; font-size: 13px; }
915915.kanban-add-task:hover { background: var(--col-surface-3); color: var(--col-text); }
916916
917917/* ====== gantt chart ====== */
918918.gantt-wrap { background: var(--col-surface); border: 1px solid var(--col-border); border-radius: var(--radius); overflow: hidden; }
919919.gantt-toolbar { display: flex; align-items: center; gap: 12px; padding: 10px 16px; border-bottom: 1px solid var(--col-border); background: var(--col-bg-1); }
920920.gantt-scroll { overflow: auto; max-height: calc(100vh - 240px); }
921921.gantt-table { display: grid; min-width: 100%; }
922922.gantt-row { display: contents; }
923923.gantt-cell { border-bottom: 1px solid var(--col-border); padding: 6px 10px; font-size: 13px; min-height: 32px; box-sizing: border-box; }
924924.gantt-cell.head { background: var(--col-bg-1); position: sticky; top: 0; z-index: 2; font-size: 11px; text-transform: uppercase; color: var(--col-text-muted); }
925925.gantt-task-label { font-weight: 500; }
926926.gantt-bar-area { position: relative; overflow: hidden; padding: 0 !important; min-height: 32px; }
927927.gantt-bar {
928928 position: absolute; top: 6px; height: 20px;
929929 background: linear-gradient(90deg, var(--col-primary) 0%, var(--col-primary-2) 100%);
930930 border-radius: 5px;
931931 color: #fff;
932932 font-size: 11px;
933933 padding: 2px 7px;
934934 cursor: pointer;
935935 box-shadow: 0 1px 3px rgba(0,0,0,.3);
936936 white-space: nowrap;
937937 overflow: hidden;
938938 text-overflow: ellipsis;
939939}
940940.gantt-bar:hover { transform: translateY(-1px); }
941941.gantt-bar-overdue {
942942 position: absolute; top: 6px; height: 20px;
943943 border-radius: 5px;
944944 pointer-events: none;
945945 background: repeating-linear-gradient(45deg,
946946 rgba(77,14,21, 0.28) 0,
947947 rgba(77,14,21, 0.28) 6px,
948948 rgba(77, 14, 21, 0.45) 6px,
949949 rgba(77, 14, 21, 0.45) 12px);
950950 border: 1px solid rgba(77, 14, 21, 0.55);
951951 box-shadow: 0 0 0 1px rgba(0,0,0,.2) inset;
952952}
953953.gantt-bar-overdue::after {
954954 content: '';
955955 position: absolute;
956956 top: 50%; left: 6px; transform: translateY(-50%);
957957 width: 6px; height: 6px;
958958 border-radius: 50%;
959959 background: var(--col-danger);
960960 box-shadow: 0 0 6px rgba(77,14,21,.7);
961961 animation: tf-overdue-pulse 1.8s ease-in-out infinite;
962962}
963963@keyframes tf-overdue-pulse {
964964 0%, 100% { opacity: .55; transform: translateY(-50%) scale(.85); }
965965 50% { opacity: 1; transform: translateY(-50%) scale(1.15); }
966966}
967967
968968/* Same style for the company-level Gantt overview project bars */
969969.gantt-ov-overdue {
970970 position: absolute; top: 9px; height: 26px;
971971 border-radius: 6px;
972972 pointer-events: none;
973973 background: repeating-linear-gradient(45deg,
974974 rgba(77,14,21, 0.28) 0,
975975 rgba(77,14,21, 0.28) 6px,
976976 rgba(77, 14, 21, 0.45) 6px,
977977 rgba(77, 14, 21, 0.45) 12px);
978978 border: 1px solid rgba(77, 14, 21, 0.55);
979979}
980980.gantt-ov-overdue::after {
981981 content: '';
982982 position: absolute;
983983 top: 50%; left: 7px; transform: translateY(-50%);
984984 width: 7px; height: 7px;
985985 border-radius: 50%;
986986 background: var(--col-danger);
987987 box-shadow: 0 0 7px rgba(77,14,21,.7);
988988 animation: tf-overdue-pulse 1.8s ease-in-out infinite;
989989}
990990.gantt-grid-vline { position: absolute; top: 0; bottom: 0; width: 1px; background: var(--col-border); }
991991.gantt-today-line { position: absolute; top: 0; bottom: 0; width: 2px; background: var(--col-warn); z-index: 1; }
992992.gantt-dep-line { position: absolute; pointer-events: none; }
993993
994994/* ====== modal ====== */
995995.modal-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(4px); z-index: 1000; display: none; align-items: center; justify-content: center; }
996996.modal-backdrop.open { display: flex; }
997997.modal {
998998 background:
999999 radial-gradient(420px 280px at 100% 0%, rgba(69,10,10,.10) 0%, transparent 60%),
10001000 radial-gradient(420px 280px at 0% 100%, rgba(69,10,10,.08) 0%, transparent 60%),
10011001 var(--col-surface);
10021002 border: 1px solid var(--col-border);
10031003 border-radius: var(--radius-lg);
10041004 width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto;
10051005 box-shadow: var(--shadow-lg), 0 0 0 1px rgba(69,10,10,.10), 0 0 40px rgba(69,10,10,.10);
10061006 position: relative;
10071007 background-clip: padding-box;
10081008}
10091009.modal::before {
10101010 content: '';
10111011 position: absolute;
10121012 left: 0; right: 0; top: 0;
10131013 height: 2px;
10141014 border-radius: var(--radius-lg) var(--radius-lg) 0 0;
10151015 background: var(--grad-brand-h);
10161016 opacity: .75;
10171017 pointer-events: none;
10181018}
10191019.modal.modal-lg { max-width: 880px; }
10201020.modal-header { padding: 18px 22px; border-bottom: 1px solid var(--col-border); display: flex; align-items: center; justify-content: space-between; }
10211021.modal-header h2 { margin: 0; font-size: 18px; }
10221022.modal-close { background: transparent; border: 0; color: var(--col-text-muted); cursor: pointer; padding: 4px; }
10231023.modal-body { padding: 22px; }
10241024.modal-footer { padding: 16px 22px; border-top: 1px solid var(--col-border); display: flex; justify-content: flex-end; gap: 10px; }
10251025
10261026/* ====== task detail ====== */
10271027.task-detail-grid { display: grid; grid-template-columns: 1fr 280px; gap: 24px; }
10281028@media (max-width: 920px) { .task-detail-grid { grid-template-columns: 1fr; } }
10291029.task-meta-table { width: 100%; font-size: 13px; }
10301030.task-meta-table td { padding: 6px 8px; vertical-align: top; }
10311031.task-meta-table td.lbl { color: var(--col-text-muted); width: 40%; }
10321032.comment { background: var(--col-bg-1); border: 1px solid var(--col-border); border-radius: var(--radius-sm); padding: 12px 14px; margin-bottom: 10px; }
10331033.comment-head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; font-size: 12px; color: var(--col-text-muted); }
10341034.comment-body { font-size: 13.5px; white-space: pre-wrap; }
10351035
10361036/* ====== custom color picker ====== */
10371037.tf-picker-swatch {
10381038 display: inline-flex; align-items: center; gap: 8px;
10391039 height: 38px; padding: 0 12px;
10401040 border-radius: var(--radius-sm);
10411041 border: 1px solid var(--col-border-2);
10421042 background: var(--col-primary);
10431043 color: #fff;
10441044 font-family: var(--font-mono);
10451045 font-size: 12px;
10461046 cursor: pointer;
10471047 box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
10481048 transition: transform var(--t-fast);
10491049}
10501050.tf-picker-swatch:hover { transform: translateY(-1px); }
10511051.tf-picker-swatch .tf-picker-hex-label {
10521052 padding: 2px 6px;
10531053 background: rgba(0,0,0,.45);
10541054 border-radius: 4px;
10551055 text-shadow: 0 1px 1px rgba(0,0,0,.4);
10561056}
10571057.tf-picker-panel {
10581058 position: absolute; z-index: 10000;
10591059 min-width: 280px; max-width: 320px;
10601060 padding: 12px;
10611061 background: linear-gradient(135deg, rgba(20,27,45,.98) 0%, rgba(28,22,52,.98) 100%);
10621062 border: 1px solid var(--col-border-2);
10631063 border-radius: var(--radius);
10641064 box-shadow: 0 24px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(69,10,10,.25), 0 0 28px rgba(179,0,255,.2);
10651065 backdrop-filter: blur(10px);
10661066 opacity: 0;
10671067 transform: translateY(6px) scale(.98);
10681068 pointer-events: none;
10691069 transition: opacity 150ms ease-out, transform 150ms ease-out;
10701070}
10711071.tf-picker-panel.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
10721072.tf-picker-sv {
10731073 position: relative;
10741074 width: 200px; height: 140px;
10751075 border-radius: 6px;
10761076 cursor: crosshair;
10771077 background:
10781078 linear-gradient(to top, #000, transparent),
10791079 linear-gradient(to right, #fff, hsl(210,100%,50%));
10801080 overflow: hidden;
10811081}
10821082.tf-picker-sv-handle {
10831083 position: absolute;
10841084 width: 14px; height: 14px;
10851085 border: 2px solid #fff;
10861086 border-radius: 50%;
10871087 margin: -7px 0 0 -7px;
10881088 box-shadow: 0 0 0 1px rgba(0,0,0,.5), 0 1px 4px rgba(0,0,0,.5);
10891089 pointer-events: none;
10901090}
10911091.tf-picker-hue-wrap { display: flex; align-items: stretch; }
10921092.tf-picker-hue {
10931093 position: relative;
10941094 width: 18px; height: 140px;
10951095 border-radius: 4px;
10961096 cursor: ns-resize;
10971097 background: linear-gradient(to bottom,
10981098 #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%,
10991099 #0000ff 67%, #ff00ff 83%, #ff0000 100%);
11001100}
11011101.tf-picker-hue-handle {
11021102 position: absolute; left: -3px; width: 24px; height: 6px;
11031103 border-radius: 3px; background: #fff; border: 1px solid rgba(0,0,0,.4);
11041104 margin-top: -3px;
11051105 box-shadow: 0 1px 3px rgba(0,0,0,.5);
11061106 pointer-events: none;
11071107}
11081108.tf-picker-out {
11091109 display: flex; align-items: center; gap: 8px; margin-top: 10px;
11101110}
11111111.tf-picker-preview {
11121112 width: 36px; height: 28px;
11131113 border-radius: 5px;
11141114 border: 1px solid rgba(255,255,255,.1);
11151115 box-shadow: inset 0 0 0 1px rgba(0,0,0,.3);
11161116 background: var(--col-primary);
11171117}
11181118.tf-picker-hex {
11191119 flex: 1;
11201120 height: 28px;
11211121 background: var(--col-bg-1);
11221122 border: 1px solid var(--col-border);
11231123 color: var(--col-text);
11241124 padding: 0 8px;
11251125 font-family: var(--font-mono);
11261126 font-size: 12px;
11271127 border-radius: 5px;
11281128 text-transform: lowercase;
11291129}
11301130.tf-picker-hex:focus { outline: none; border-color: var(--col-brand-1); box-shadow: 0 0 0 2px rgba(69,10,10,.22); }
11311131.tf-picker-label {
11321132 font-size: 10.5px; text-transform: uppercase; letter-spacing: .07em;
11331133 color: var(--col-text-dim); margin: 12px 0 6px; font-weight: 600;
11341134}
11351135.tf-picker-grid {
11361136 display: grid;
11371137 grid-template-columns: repeat(12, 1fr);
11381138 gap: 4px;
11391139}
11401140.tf-picker-cell {
11411141 width: 100%; aspect-ratio: 1/1; min-height: 18px;
11421142 border-radius: 4px;
11431143 border: 1px solid rgba(255,255,255,.06);
11441144 cursor: pointer;
11451145 box-shadow: inset 0 0 0 1px rgba(0,0,0,.4);
11461146 transition: transform 80ms ease-out;
11471147 padding: 0;
11481148}
11491149.tf-picker-cell:hover { transform: scale(1.15); border-color: rgba(255,255,255,.4); z-index: 1; }
11501150
11511151/* Compact swatch variant for inline use in forms */
11521152.tf-picker-compact .tf-picker-swatch { height: 32px; padding: 0 8px; font-size: 11px; }
11531153.tf-picker-compact .tf-picker-swatch .tf-picker-hex-label { font-size: 10.5px; }
11541154
11551155/* ====== kanban quick-edit drawer ====== */
11561156.tf-drawer-backdrop {
11571157 position: fixed; inset: 0;
11581158 background: rgba(0,0,0,.45);
11591159 backdrop-filter: blur(3px);
11601160 z-index: 950;
11611161 opacity: 0;
11621162 transition: opacity 200ms ease-out;
11631163 pointer-events: none;
11641164}
11651165.tf-drawer-backdrop.open { opacity: 1; pointer-events: auto; }
11661166
11671167.tf-drawer {
11681168 position: fixed; top: 0; right: 0; bottom: 0;
11691169 width: 560px; max-width: 92vw;
11701170 background: var(--col-surface);
11711171 border-left: 1px solid var(--col-border-2);
11721172 box-shadow: -24px 0 60px rgba(0,0,0,.5);
11731173 transform: translateX(100%);
11741174 transition: transform 240ms cubic-bezier(.4,0,.2,1);
11751175 z-index: 960;
11761176 display: flex; flex-direction: column;
11771177 overflow: hidden;
11781178}
11791179.tf-drawer.open { transform: translateX(0); }
11801180.tf-drawer-header {
11811181 display: flex; align-items: center; gap: 12px;
11821182 padding: 14px 18px;
11831183 border-bottom: 1px solid var(--col-border);
11841184 background: var(--col-bg-1);
11851185 flex-shrink: 0;
11861186}
11871187.tf-drawer-header .ticket {
11881188 font-family: var(--font-mono);
11891189 font-size: 11.5px;
11901190 color: var(--col-text-dim);
11911191 padding: 2px 6px;
11921192 background: var(--col-bg-3);
11931193 border-radius: 4px;
11941194}
11951195.tf-drawer-header h2 { margin: 0; font-size: 16px; flex: 1; min-width: 0; }
11961196.tf-drawer-close {
11971197 width: 32px; height: 32px;
11981198 background: transparent;
11991199 border: 1px solid transparent;
12001200 color: var(--col-text-muted);
12011201 border-radius: 6px;
12021202 cursor: pointer;
12031203}
12041204.tf-drawer-close:hover { background: var(--col-surface-3); color: var(--col-text); }
12051205.tf-drawer-body { flex: 1; overflow-y: auto; padding: 18px; }
12061206.tf-drawer-footer {
12071207 padding: 12px 18px;
12081208 border-top: 1px solid var(--col-border);
12091209 display: flex; justify-content: space-between; align-items: center; gap: 10px;
12101210 background: var(--col-bg-1);
12111211 flex-shrink: 0;
12121212}
12131213.tf-drawer.loading .tf-drawer-body { opacity: .5; pointer-events: none; }
12141214
12151215/* ====== kanban card visual rules ====== */
12161216.kanban-card { position: relative; transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast); }
12171217.kanban-card[data-bg-tint] {
12181218 background: linear-gradient(to right, var(--card-tint-color, var(--col-surface)) 0%, var(--col-surface) 100%);
12191219}
12201220
12211221/* ====== tooltips (the POP ones) ====== */
12221222@keyframes tf-tip-in {
12231223 0% { opacity: 0; transform: translateY(6px) scale(.92); filter: blur(2px); }
12241224 60% { opacity: 1; transform: translateY(-1px) scale(1.02); filter: blur(0); }
12251225 100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
12261226}
12271227@keyframes tf-tip-glow {
12281228 0%, 100% { box-shadow: 0 16px 40px rgba(0,0,0,.55), 0 0 0 1px rgba(69,10,10,.4), 0 0 24px rgba(69,10,10,.25), 0 0 60px rgba(179,0,255,.18); }
12291229 50% { box-shadow: 0 16px 40px rgba(0,0,0,.55), 0 0 0 1px rgba(179,0,255,.55), 0 0 28px rgba(179,0,255,.32), 0 0 70px rgba(69,10,10,.22); }
12301230}
12311231
12321232.tf-tip {
12331233 position: absolute;
12341234 z-index: 9999;
12351235 pointer-events: none;
12361236 max-width: 320px;
12371237 padding: 11px 14px 11px 18px;
12381238 background: linear-gradient(135deg, rgba(20,27,45,.96) 0%, rgba(28,22,52,.96) 50%, rgba(18,25,42,.96) 100%);
12391239 backdrop-filter: blur(10px) saturate(140%);
12401240 -webkit-backdrop-filter: blur(10px) saturate(140%);
12411241 color: #f1f6ff;
12421242 font-family: var(--font-display);
12431243 font-size: 12.5px;
12441244 font-weight: 500;
12451245 line-height: 1.5;
12461246 letter-spacing: .005em;
12471247 border-radius: 10px;
12481248 border: 1px solid transparent;
12491249 background-clip: padding-box;
12501250 opacity: 0;
12511251 transform: translateY(6px) scale(.92);
12521252 transition: opacity 80ms ease-out;
12531253 text-shadow: 0 1px 2px rgba(0,0,0,.5);
12541254}
12551255.tf-tip.open {
12561256 opacity: 1;
12571257 animation: tf-tip-in 240ms cubic-bezier(.22,.61,.36,1) both,
12581258 tf-tip-glow 3.6s ease-in-out 240ms infinite;
12591259}
12601260.tf-tip strong { color: #fff; font-weight: 600; }
12611261.tf-tip code {
12621262 font-family: var(--font-mono);
12631263 background: rgba(69,10,10,.18);
12641264 color: #cee3ff;
12651265 padding: 1px 5px;
12661266 border-radius: 4px;
12671267 font-size: 11.5px;
12681268 border: 1px solid rgba(69,10,10,.3);
12691269}
12701270
12711271/* Animated gradient left bar */
12721272.tf-tip::before {
12731273 content: '';
12741274 position: absolute;
12751275 left: 0; top: 0; bottom: 0;
12761276 width: 3px;
12771277 border-radius: 10px 0 0 10px;
12781278 background: linear-gradient(180deg, var(--col-brand-1) 0%, var(--col-brand-2) 50%, var(--col-brand-1) 100%);
12791279 background-size: 100% 200%;
12801280 animation: tf-bar-flow 2.4s linear infinite;
12811281}
12821282@keyframes tf-bar-flow {
12831283 0% { background-position: 0 0; }
12841284 100% { background-position: 0 -200%; }
12851285}
12861286
12871287/* Pointing arrow — anchored at --tf-tip-arrow (set by JS to the trigger's horiz center) */
12881288.tf-tip::after {
12891289 content: '';
12901290 position: absolute;
12911291 left: var(--tf-tip-arrow, 50%);
12921292 transform: translateX(-50%) rotate(45deg);
12931293 width: 10px;
12941294 height: 10px;
12951295 background: linear-gradient(135deg, rgba(20,27,45,.96), rgba(28,22,52,.96));
12961296 border-left: 1px solid rgba(69,10,10,.35);
12971297 border-top: 1px solid rgba(69,10,10,.35);
12981298 backdrop-filter: blur(10px);
12991299}
13001300.tf-tip[data-placement="below"]::after {
13011301 top: -6px;
13021302}
13031303.tf-tip[data-placement="above"]::after {
13041304 bottom: -6px;
13051305 border-left: none; border-top: none;
13061306 border-right: 1px solid rgba(179,0,255,.35);
13071307 border-bottom: 1px solid rgba(179,0,255,.35);
13081308}
13091309
13101310/* The 'i' icon prefix — auto-prepended via a span when content has no <strong> already */
13111311.tf-tip-icon {
13121312 display: inline-block;
13131313 width: 14px; height: 14px;
13141314 border-radius: 50%;
13151315 background: var(--grad-brand);
13161316 color: #fff;
13171317 text-align: center;
13181318 line-height: 14px;
13191319 font-size: 10px;
13201320 font-weight: 700;
13211321 font-style: normal;
13221322 margin-right: 6px;
13231323 vertical-align: -1px;
13241324 box-shadow: 0 0 10px var(--col-brand-glow);
13251325}
13261326
13271327/* Subtle "has helper" indicator on focusable form fields */
13281328.field [data-tip]:not(input):not(textarea):not(select),
13291329label[data-tip] {
13301330 cursor: help;
13311331}
13321332label[data-tip]::after {
13331333 content: '?';
13341334 display: inline-block;
13351335 width: 13px; height: 13px;
13361336 border-radius: 50%;
13371337 background: var(--col-bg-3);
13381338 color: var(--col-text-muted);
13391339 font-size: 9.5px;
13401340 font-weight: 700;
13411341 line-height: 13px;
13421342 text-align: center;
13431343 margin-left: 5px;
13441344 vertical-align: 1px;
13451345 transition: background var(--t-fast), color var(--t-fast);
13461346}
13471347label[data-tip]:hover::after {
13481348 background: var(--col-primary);
13491349 color: #fff;
13501350}
13511351html.tips-off label[data-tip]::after { display: none; }
13521352
13531353/* When tips are off, suppress entirely */
13541354html.tips-off .tf-tip { display: none !important; }
13551355
13561356/* ====== misc utility ====== */
13571357.row { display: flex; gap: 16px; }
13581358.col { flex: 1; min-width: 0; }
13591359.mt-0 { margin-top: 0; } .mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
13601360.mb-0 { margin-bottom: 0; } .mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; }
13611361.text-muted { color: var(--col-text-muted); }
13621362.text-dim { color: var(--col-text-dim); }
13631363.flex { display: flex; gap: 10px; align-items: center; }
13641364.flex-between { display: flex; justify-content: space-between; align-items: center; }
13651365.flex-end { display: flex; justify-content: flex-end; align-items: center; gap: 10px; }
13661366.hidden { display: none !important; }
13671367.muted-empty { text-align: center; padding: 60px 24px; color: var(--col-text-dim); }
13681368.muted-empty h3 {
13691369 margin-bottom: 6px;
13701370 background: var(--grad-brand-h);
13711371 -webkit-background-clip: text;
13721372 background-clip: text;
13731373 color: transparent;
13741374 display: inline-block;
13751375}
13761376
13771377/* ====== Round 4 — board toolbar + filter chips + per-card gradient ====== */
13781378
13791379.board-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 6px 8px 12px; flex-wrap: wrap; }
13801380.filter-chips { display: flex; gap: 6px; flex-wrap: wrap; }
13811381.chip {
13821382 display: inline-flex; align-items: center; gap: 6px;
13831383 padding: 5px 11px;
13841384 background: var(--col-surface-2);
13851385 border: 1px solid var(--col-border);
13861386 color: var(--col-text-muted);
13871387 font-size: 12.5px;
13881388 border-radius: 999px;
13891389 text-decoration: none;
13901390 transition: background .15s, border-color .15s, color .15s, transform .15s;
13911391 cursor: pointer;
13921392 line-height: 1.4;
13931393}
13941394.chip:hover { background: var(--col-surface-3); color: var(--col-text); border-color: var(--col-border-2); transform: translateY(-1px); }
13951395.chip.chip-on {
13961396 background: linear-gradient(135deg, rgba(69,10,10,.24), rgba(69,10,10,.10));
13971397 color: var(--col-text);
13981398 border-color: rgba(69,10,10,.55);
13991399 box-shadow: 0 0 0 1px rgba(69,10,10,.18) inset;
14001400}
14011401.chip.chip-warn { color: var(--col-warn); border-color: rgba(69,10,10,.4); background: rgba(69,10,10,.07); }
14021402.chip.chip-warn.chip-on { background: linear-gradient(135deg, rgba(69,10,10,.25), rgba(69,10,10,.08)); }
14031403
14041404/* Top "+" on each kanban column header */
14051405.kanban-column-header { position: relative; }
14061406.col-add-top {
14071407 width: 24px; height: 24px;
14081408 display: inline-grid; place-items: center;
14091409 background: var(--col-surface-3);
14101410 border: 1px solid var(--col-border-2);
14111411 color: var(--col-text-muted);
14121412 border-radius: 6px;
14131413 cursor: pointer;
14141414 font-size: 18px;
14151415 line-height: 1;
14161416 padding: 0 0 2px;
14171417 transition: background .15s, color .15s, transform .15s;
14181418}
14191419.col-add-top:hover {
14201420 background: linear-gradient(135deg, rgba(69,10,10,.35), rgba(69,10,10,.14));
14211421 border-color: rgba(69,10,10,.6);
14221422 color: #fff;
14231423 transform: scale(1.08);
14241424}
14251425
14261426/* Card background gradient modes — picked by user prefs.
14271427 --card-edge = resolved priority/custom edge color
14281428 --card-accent = assignee color (or edge if unassigned)
14291429 --grad-from / --grad-to = board-wide custom palette */
14301430.kanban-board.board-grad-off .kanban-card { background: var(--col-surface); }
14311431.kanban-board.board-grad-priority .kanban-card {
14321432 background:
14331433 linear-gradient(135deg,
14341434 color-mix(in srgb, var(--card-edge) 18%, transparent) 0%,
14351435 var(--col-surface) 72%);
14361436}
14371437.kanban-board.board-grad-assignee .kanban-card {
14381438 background:
14391439 linear-gradient(135deg,
14401440 color-mix(in srgb, var(--card-accent) 22%, transparent) 0%,
14411441 var(--col-surface) 75%);
14421442}
14431443.kanban-board.board-grad-custom .kanban-card {
14441444 background: linear-gradient(135deg, var(--grad-from) 0%, var(--grad-to) 90%);
14451445 color: var(--col-text);
14461446}
14471447@supports not (background: color-mix(in srgb, red 50%, blue)) {
14481448 .kanban-board.board-grad-priority .kanban-card,
14491449 .kanban-board.board-grad-assignee .kanban-card {
14501450 background: linear-gradient(135deg, var(--col-surface-3) 0%, var(--col-surface) 75%);
14511451 }
14521452}
14531453
14541454.kanban-board.density-compact .kanban-card { padding: 8px 10px; }
14551455.kanban-board.density-comfortable .kanban-card { padding: 11px 12px; }
14561456.kanban-board.density-spacious .kanban-card { padding: 16px 14px 14px; }
14571457
14581458/* Card meta pills */
14591459.kanban-card .meta-left { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
14601460.kanban-card .meta-due { color: var(--col-text-dim); }
14611461.kanban-card .meta-due.is-overdue { color: var(--col-danger); font-weight: 600; }
14621462.meta-pill {
14631463 display: inline-flex; align-items: center; gap: 3px;
14641464 font-size: 10.5px; padding: 1px 6px;
14651465 border-radius: 4px;
14661466 background: rgba(255,255,255,.04);
14671467 color: var(--col-text-dim);
14681468 border: 1px solid var(--col-border);
14691469}
14701470.meta-pill.pill-warn { color: var(--col-warn); background: rgba(69,10,10,.08); border-color: rgba(69,10,10,.3); }
14711471.meta-pill.pill-muted { color: var(--col-text-dim); }
14721472
14731473.kanban-card.card-pending-arch {
14741474 background-image: repeating-linear-gradient(135deg,
14751475 rgba(69,10,10,.10) 0 6px,
14761476 transparent 6px 14px);
14771477 border-color: rgba(69,10,10,.35);
14781478}
14791479.kanban-card.card-archived {
14801480 opacity: .55;
14811481 filter: grayscale(.4);
14821482}
14831483
14841484/* ====== Round 4 — attachments drop zone ====== */
14851485.attach-zone {
14861486 position: relative;
14871487 border: 2px dashed var(--col-border-2);
14881488 border-radius: var(--radius);
14891489 background: var(--col-surface-2);
14901490 padding: 22px 18px;
14911491 text-align: center;
14921492 color: var(--col-text-muted);
14931493 transition: border-color .15s, background .15s, transform .15s;
14941494 cursor: pointer;
14951495}
14961496.attach-zone:hover { border-color: var(--col-text-dim); background: var(--col-surface-3); }
14971497.attach-zone.dragover {
14981498 border-color: var(--col-brand-1);
14991499 background: linear-gradient(135deg, rgba(69,10,10,.20), rgba(69,10,10,.08));
15001500 color: #fff;
15011501 transform: scale(1.01);
15021502 box-shadow: 0 0 0 3px rgba(69,10,10,.16);
15031503}
15041504.attach-zone .attach-icon { font-size: 28px; display: block; margin-bottom: 6px; opacity: .8; }
15051505.attach-zone strong { color: var(--col-text); display: block; margin-top: 2px; }
15061506.attach-list { display: grid; gap: 6px; margin-top: 10px; }
15071507.attach-row {
15081508 display: flex; align-items: center; gap: 10px;
15091509 padding: 8px 10px;
15101510 background: var(--col-surface-2);
15111511 border: 1px solid var(--col-border);
15121512 border-radius: var(--radius-sm);
15131513}
15141514.attach-row .att-thumb { width: 36px; height: 36px; background: var(--col-surface-3); border-radius: 6px; display: grid; place-items: center; color: var(--col-text-dim); font-size: 14px; flex-shrink: 0; overflow: hidden; }
15151515.attach-row .att-thumb img { width: 100%; height: 100%; object-fit: cover; }
15161516.attach-row .att-name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; color: var(--col-text); }
15171517.attach-row .att-meta { font-size: 11px; color: var(--col-text-dim); }
15181518.attach-row .btn { padding: 4px 8px; font-size: 11.5px; }
15191519.attach-progress { height: 4px; background: var(--col-border); border-radius: 99px; overflow: hidden; margin-top: 6px; }
15201520.attach-progress span { display: block; height: 100%; background: var(--grad-brand-h); transition: width .2s; }
15211521
15221522/* ====== Round 4 — onboarding wizard ====== */
15231523.onb-shell { max-width: 760px; margin: 30px auto; padding: 28px; background: var(--col-surface); border: 1px solid var(--col-border); border-radius: var(--radius); box-shadow: var(--shadow); }
15241524.onb-step-dots { display: flex; gap: 6px; margin-bottom: 18px; }
15251525.onb-step-dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--col-border-2); }
15261526.onb-step-dots span.on { background: var(--grad-brand); box-shadow: 0 0 0 2px rgba(69,10,10,.30); }
15271527.preset-grid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); margin-top: 14px; }
15281528.preset-card {
15291529 border: 1px solid var(--col-border);
15301530 border-radius: var(--radius);
15311531 background: var(--col-surface-2);
15321532 padding: 14px;
15331533 cursor: pointer;
15341534 transition: border-color .15s, transform .15s, background .15s;
15351535}
15361536.preset-card:hover { border-color: var(--col-border-2); background: var(--col-surface-3); transform: translateY(-2px); }
15371537.preset-card.selected {
15381538 border-color: var(--col-brand-1);
15391539 background: linear-gradient(135deg, rgba(69,10,10,.18), rgba(69,10,10,.06));
15401540 box-shadow: 0 0 0 2px rgba(69,10,10,.18);
15411541}
15421542.preset-card h4 { font-size: 14px; margin: 0 0 4px; }
15431543.preset-card p { font-size: 12px; margin: 0; color: var(--col-text-dim); }
15441544.preset-card .preset-terms { font-size: 11.5px; color: var(--col-text-muted); margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--col-border); }
15451545
15461546.watchers-list { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
15471547.watcher-chip { display: inline-flex; align-items: center; gap: 6px; padding: 3px 8px 3px 4px; background: var(--col-surface-2); border: 1px solid var(--col-border); border-radius: 999px; font-size: 12px; }
15481548.watcher-chip .avatar { width: 18px; height: 18px; font-size: 10px; }
15491549.watcher-chip button { background: transparent; border: 0; color: var(--col-text-dim); cursor: pointer; padding: 0 4px; font-size: 14px; }
15501550.watcher-chip button:hover { color: var(--col-danger); }
15511551.watcher-add { display: inline-flex; gap: 4px; align-items: center; }
15521552.watcher-add .select { padding: 4px 8px; font-size: 12px; }
15531553
15541554/* QR area for 2FA */
15551555.qr-card { display: grid; place-items: center; padding: 16px; background: #fff; border-radius: var(--radius-sm); width: 220px; margin: 0 auto; }
15561556.qr-card img { width: 188px; height: 188px; image-rendering: pixelated; }
15571557.recovery-codes { font-family: var(--font-mono); background: var(--col-bg-2); padding: 12px 14px; border-radius: var(--radius-sm); border: 1px solid var(--col-border); display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
15581558.recovery-codes code { background: transparent; border: 0; padding: 0; font-size: 13px; color: var(--col-text); }
15591559
15601560/* Stripe card */
15611561.stripe-card { background: var(--col-surface-2); border: 1px solid var(--col-border); border-radius: var(--radius); padding: 16px; }
15621562.stripe-card .price { font-size: 28px; font-weight: 700; color: var(--col-text); }
15631563.stripe-card .price small { font-size: 12px; color: var(--col-text-dim); font-weight: 400; }
15641564
15651565/* Gradient swatch preview for preferences page */
15661566.grad-preview { width: 100%; height: 64px; border-radius: var(--radius-sm); border: 1px solid var(--col-border); margin-top: 8px; }
15671567
15681568/* User preferences mode picker */
15691569.mode-radios { display: flex; gap: 8px; flex-wrap: wrap; }
15701570.mode-radios label { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 10px 12px; background: var(--col-surface-2); border: 1px solid var(--col-border); border-radius: var(--radius-sm); cursor: pointer; min-width: 84px; font-size: 12px; }
15711571.mode-radios label:hover { background: var(--col-surface-3); border-color: var(--col-border-2); }
15721572.mode-radios input { display: none; }
15731573.mode-radios input:checked + .mode-swatch + span { color: var(--col-text); font-weight: 600; }
15741574.mode-radios input:checked ~ * { color: var(--col-text); }
15751575.mode-radios label:has(input:checked) {
15761576 background: linear-gradient(135deg, rgba(69,10,10,.22), rgba(69,10,10,.06));
15771577 border-color: var(--col-brand-1);
15781578 box-shadow: 0 0 0 1px rgba(69,10,10,.22) inset;
15791579}
15801580.mode-swatch { width: 56px; height: 26px; border-radius: 5px; border: 1px solid var(--col-border); }
15811581
15821582/* ======================================================================
15831583 MOBILE / TABLET (<= 760px)
15841584 Off-canvas sidebar, single-column page header, scrollable kanban,
15851585 touch-tuned drag affordances.
15861586 ====================================================================== */
15871587
15881588/* Kanban: never let the browser steal touchstart for scroll/zoom on cards.
15891589 Without touch-action:none, pointer drag aborts the instant the card moves. */
15901590.kanban-card { touch-action: none; }
15911591.gantt-bar {
15921592 touch-action: none;
15931593 user-select: none;
15941594 -webkit-user-select: none;
15951595 -webkit-touch-callout: none;
15961596 -webkit-user-drag: none;
15971597}
15981598
15991599/* Mobile backdrop for the off-canvas sidebar. */
16001600.sidebar-backdrop {
16011601 position: fixed;
16021602 inset: 0;
16031603 background: rgba(0,0,0,.55);
16041604 backdrop-filter: blur(2px);
16051605 z-index: 90;
16061606 opacity: 0;
16071607 pointer-events: none;
16081608 transition: opacity var(--t);
16091609}
16101610html.sidebar-open .sidebar-backdrop {
16111611 opacity: 1;
16121612 pointer-events: auto;
16131613}
16141614@media (min-width: 761px) { .sidebar-backdrop { display: none; } }
16151615
16161616@media (max-width: 760px) {
16171617 /* App shell becomes single-column; sidebar is overlaid, not gridded. */
16181618 .app-shell { grid-template-columns: 1fr; }
16191619 html.sidebar-collapsed .app-shell { grid-template-columns: 1fr; }
16201620
16211621 .sidebar {
16221622 position: fixed;
16231623 top: 0;
16241624 left: 0;
16251625 width: 260px;
16261626 height: 100vh;
16271627 z-index: 100;
16281628 transform: translateX(-100%);
16291629 transition: transform .26s ease;
16301630 /* keep its full styling; just slide it in */
16311631 }
16321632 html.sidebar-open .sidebar { transform: translateX(0); }
16331633 /* While the drawer is open, force its expanded form even if global
16341634 sidebar-collapsed is set from desktop preferences. */
16351635 html.sidebar-collapsed.sidebar-open .sidebar-brand .brand-text,
16361636 html.sidebar-collapsed.sidebar-open .sidebar-link span,
16371637 html.sidebar-collapsed.sidebar-open .sidebar-section-label {
16381638 display: revert;
16391639 }
16401640 html.sidebar-collapsed.sidebar-open .sidebar-link {
16411641 padding-left: 10px; padding-right: 10px; justify-content: flex-start; gap: 12px;
16421642 }
16431643
16441644 /* Topbar tightens. */
16451645 .topbar { padding: 0 12px; gap: 8px; }
16461646 .topbar-title { font-size: 14px; max-width: 40vw; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
16471647 .topbar-search { display: none; } /* hidden on phones; tap search icon instead if you add one */
16481648 .profile-btn > div:not(.avatar) { display: none; } /* hide name/email next to avatar */
16491649 .profile-btn svg { display: none; } /* hide chevron */
16501650
16511651 .app-content { padding: 14px; }
16521652
16531653 /* Page header stacks. */
16541654 .page-header { flex-direction: column; align-items: stretch; gap: 12px; }
16551655 .page-header h1 { font-size: 22px; }
16561656 .page-header .flex-end { flex-wrap: wrap; gap: 8px; }
16571657 .page-header .flex-end .btn { flex: 1 1 auto; min-width: 0; }
16581658
16591659 /* Board toolbar wraps + scrolls horizontally for filter chips. */
16601660 .board-toolbar { flex-direction: column; align-items: stretch; gap: 8px; }
16611661 .filter-chips { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
16621662 .filter-chips .chip { white-space: nowrap; flex: 0 0 auto; }
16631663
16641664 /* Kanban: slightly narrower columns, full-height scroll. */
16651665 .kanban-board { gap: 10px; padding: 4px; min-height: calc(100vh - 240px); }
16661666 .kanban-column { flex: 0 0 84vw; max-width: 320px; max-height: calc(100vh - 240px); }
16671667 .kanban-column-body { padding: 8px; }
16681668
16691669 /* Marketing/auth pages already had an 880px breakpoint -- this one
16701670 further compresses headings on small phones. */
16711671 .hero { padding: 56px 18px 64px; }
16721672 .hero h1 { font-size: 36px; }
16731673 .hero p.lead { font-size: 16px; }
16741674 .section { padding: 56px 18px; }
16751675 .section h2 { font-size: 26px; }
16761676
16771677 /* Tables get horizontal scroll instead of being squashed. */
16781678 .table { font-size: 12.5px; }
16791679 .table-wrap, .table-scroll { overflow-x: auto; }
16801680
16811681 /* Forms: full-width buttons. */
16821682 .modal { max-width: 100%; border-radius: 0; max-height: 100vh; }
16831683 .modal-footer .btn { flex: 1 1 auto; }
16841684}
16851685
16861686/* Phones in portrait (very narrow). */
16871687@media (max-width: 380px) {
16881688 .topbar-title { display: none; }
16891689 .kpi-grid { grid-template-columns: 1fr; }
16901690 .kanban-column { flex: 0 0 88vw; }
16911691}
16921692
16931693
16941694/* ===========================================================================
16951695 * Meta-Admin compat layer -- classes the existing CGIs already use
16961696 * (.dash-grid / .module / .module-head / .kpi-* / .glow-*). These layer
16971697 * cleanly on top of the PTMatrix port so the original page markup keeps
16981698 * rendering without a rewrite. Colors driven from CSS vars above.
16991699 * =========================================================================== */
17001700
17011701.dash-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin-bottom: 22px; }
17021702.module {
17031703 background: var(--col-surface);
17041704 border: 1px solid var(--col-border);
17051705 border-radius: var(--radius);
17061706 overflow: hidden;
17071707}
17081708.module-head {
17091709 display: flex; align-items: center; justify-content: space-between;
17101710 padding: 12px 16px;
17111711 border-bottom: 1px solid var(--col-border);
17121712 background: rgba(69,10,10,.04);
17131713}
17141714.module-head .left { display: flex; align-items: center; gap: 10px; min-width: 0; }
17151715.module-head .right { font-size: 11px; color: var(--col-text-dim); padding-right: 4px; }
17161716.module-icon {
17171717 width: 26px; height: 26px; border-radius: 7px;
17181718 display: inline-flex; align-items: center; justify-content: center;
17191719 background: rgba(69,10,10,.08);
17201720 color: var(--col-primary);
17211721 border: 1px solid rgba(69,10,10,.25);
17221722}
17231723.module-title { font-size: 13px; font-weight: 700; letter-spacing: .3px; color: var(--col-text); }
17241724.module-subtitle { font-size: 11.5px; font-weight: 400; letter-spacing: 0; color: #d6cdb8; margin-left: 8px; padding-left: 10px; border-left: 1px solid var(--col-border); line-height: 1.35; }
17251725.module-body { padding: 16px; }
17261726
17271727.module.glow-cyan { box-shadow: 0 0 0 1px rgba(69,10,10,.25), 0 0 26px rgba(69,10,10,.12); }
17281728.module.glow-magenta { box-shadow: 0 0 0 1px rgba(69,10,10,.25), 0 0 26px rgba(69,10,10,.12); }
17291729.module.glow-lime { box-shadow: 0 0 0 1px rgba(170,255,0,.25), 0 0 26px rgba(170,255,0,.12); }
17301730.module.glow-violet { box-shadow: 0 0 0 1px rgba(179,0,255,.25), 0 0 26px rgba(179,0,255,.12); }
17311731
17321732/* KPI tile -- compact module variant */
17331733.kpi .num {
17341734 font-family: var(--font-display);
17351735 font-size: 30px; font-weight: 800; letter-spacing: -.5px; line-height: 1.1;
17361736}
17371737.kpi .lbl {
17381738 margin-top: 4px;
17391739 font-size: 10.5px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
17401740 color: var(--col-text-dim);
17411741}
17421742.kpi .sub { margin-top: 6px; font-size: 12px; color: var(--col-text-dim); }
17431743.kpi.kpi-cyan .num { color: #450a0a; text-shadow: 0 0 14px rgba(69,10,10,.45); }
17441744.kpi.kpi-magenta .num { color: #991b1b; text-shadow: 0 0 14px rgba(69,10,10,.45); }
17451745.kpi.kpi-lime .num { color: #aaff00; text-shadow: 0 0 14px rgba(170,255,0,.45); }
17461746.kpi.kpi-violet .num { color: #b300ff; text-shadow: 0 0 14px rgba(179,0,255,.45); }
17471747
17481748/* page-head pattern */
17491749.page-head { margin-bottom: 22px; }
17501750.page-head .left { min-width: 0; }
17511751.page-head-actions { display: inline-flex; gap: 10px; }
17521752.page-eyebrow {
17531753 display: inline-flex; align-items: center; gap: 6px;
17541754 font-size: 10.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
17551755 color: var(--col-primary);
17561756 text-shadow: 0 0 8px rgba(69,10,10,.55);
17571757}
17581758.page-eyebrow .dot {
17591759 width: 6px; height: 6px; border-radius: 50%;
17601760 background: var(--col-primary);
17611761 box-shadow: 0 0 8px var(--col-primary);
17621762}
17631763.page-title {
17641764 margin: 6px 0 4px;
17651765 font-family: var(--font-display);
17661766 font-size: 30px; font-weight: 800; line-height: 1.15;
17671767 background: linear-gradient(90deg, #450a0a 0%, #991b1b 70%);
17681768 -webkit-background-clip: text; background-clip: text; color: transparent;
17691769}
17701770.page-subtitle { color: var(--col-text-dim); font-size: 13px; }
17711771
17721772/* table */
17731773table.tbl { width: 100%; border-collapse: collapse; font-size: 13px; }
17741774table.tbl th {
17751775 text-align: left; padding: 10px 14px;
17761776 font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
17771777 color: var(--col-text-dim);
17781778 border-bottom: 1px solid var(--col-border);
17791779 background: rgba(69,10,10,.03);
17801780}
17811781table.tbl td { padding: 12px 14px; border-bottom: 1px solid rgba(38,28,77,.5); }
17821782table.tbl tr:hover td { background: rgba(69,10,10,.04); }
17831783table.tbl .mono { font-family: var(--font-mono); }
17841784table.tbl .dim { color: var(--col-text-dim); }
17851785
17861786/* pills */
17871787.pill {
17881788 display: inline-flex; align-items: center;
17891789 padding: 2px 10px;
17901790 font-size: 10px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
17911791 border-radius: 999px;
17921792 border: 1px solid var(--col-border);
17931793}
17941794.pill-ok { color: #aaff00; border-color: #aaff00; background: rgba(170,255,0,.10); box-shadow: 0 0 10px rgba(170,255,0,.25); }
17951795.pill-warn { color: #7c2d12; border-color: #7c2d12; background: rgba(69,10,10,.10); }
17961796.pill-bad { color: #b53048; border-color: #b53048; background: rgba(77,14,21,.10); box-shadow: 0 0 10px rgba(77,14,21,.25); }
17971797.pill-info { color: #450a0a; border-color: #450a0a; background: rgba(69,10,10,.10); }
17981798
17991799/* banner */
18001800.banner { padding: 12px 16px; border-radius: 8px; border: 1px solid var(--col-border); margin-bottom: 14px; font-size: 13px; }
18011801.banner.success { color: #aaff00; border-color: #aaff00; background: rgba(170,255,0,.06); }
18021802.banner.danger { color: #b53048; border-color: #b53048; background: rgba(77,14,21,.06); }
18031803.banner.warn { color: #7c2d12; border-color: #7c2d12; background: rgba(69,10,10,.06); }
18041804
18051805/* misc helpers */
18061806.text-dim { color: var(--col-text-dim); }
18071807.text-sm { font-size: 13px; }
18081808.text-xs { font-size: 11.5px; }
18091809.fw-600 { font-weight: 600; }
18101810.fw-700 { font-weight: 700; }
18111811.mono { font-family: var(--font-mono); }
18121812.dot {
18131813 display: inline-block; width: 10px; height: 10px; border-radius: 50%;
18141814 vertical-align: middle; margin-right: 8px;
18151815 box-shadow: 0 0 8px currentColor;
18161816}
18171817.lbl { display: block; margin-bottom: 14px; }
18181818.lbl .t {
18191819 display: block; font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
18201820 color: var(--col-text-dim);
18211821 margin-bottom: 4px;
18221822}
18231823input.input, .input { width: 100%; }
18241824
18251825/* container width inside the app-content area */
18261826.container { max-width: 1280px; margin: 0 auto; }
18271827/* ===========================================================================
18281828 * Topbar pill + profile chip -- override the neon-cyan back to PTMatrix's
18291829 * softer cool-blue so the action controls feel inviting rather than
18301830 * aggressive. Keep neon synthwave everywhere else (page titles, module
18311831 * glows, KPI colors).
18321832 * =========================================================================== */
18331833.topbar-pill {
18341834 background: linear-gradient(180deg, rgba(69,10,10,0.12), rgba(69,10,10,0.05));
18351835 border-color: rgba(69,10,10,0.30);
18361836 color: var(--col-text);
18371837}
18381838.topbar-pill:hover {
18391839 border-color: rgba(69,10,10,0.65);
18401840 background: linear-gradient(180deg, rgba(69,10,10,0.20), rgba(69,10,10,0.09));
18411841 box-shadow: 0 0 0 3px rgba(69,10,10,0.12);
18421842}
18431843.topbar-pill svg { color: #991b1b; }
18441844
18451845/* Profile chip -- match PTMatrix's exact shape + colors. Bigger avatar,
18461846 * 2-line text (name on top, workspace subtitle below), caret on the right. */
18471847.profile-btn {
18481848 display: flex; align-items: center; gap: 10px;
18491849 padding: 4px 12px 4px 4px;
18501850 background: rgba(20,16,43,0.55);
18511851 border: 1px solid var(--col-border);
18521852 border-radius: 999px;
18531853 color: inherit; cursor: pointer;
18541854 font-family: inherit; font-size: 13px;
18551855 height: 44px;
18561856 transition: all 0.15s ease;
18571857}
18581858.profile-btn:hover { border-color: rgba(69,10,10,0.55); box-shadow: 0 0 0 3px rgba(69,10,10,0.10); }
18591859.profile-btn .avatar {
18601860 width: 34px; height: 34px; border-radius: 50%;
18611861 background: linear-gradient(135deg, #991b1b 0%, #450a0a 100%) !important;
18621862 color: #0c1018; font-weight: 700; font-size: 13px;
18631863 display: flex; align-items: center; justify-content: center;
18641864 box-shadow: 0 0 10px rgba(69,10,10,0.40);
18651865 border: 0;
18661866 flex: 0 0 34px;
18671867}
18681868/* ===========================================================================
18691869 * Full cool-blue family: every KPI tile + module glow uses a shade of blue
18701870 * rather than mixed lime/violet/cyan accents. Keeps the page calm and
18711871 * cohesive while still letting each tile stand apart via blue gradations.
18721872 * =========================================================================== */
18731873
18741874/* KPI tile numbers -- blue family */
18751875.kpi.kpi-cyan .num { color: #450a0a !important; text-shadow: 0 0 14px rgba(69,10,10,.45) !important; }
18761876.kpi.kpi-magenta .num { color: #991b1b !important; text-shadow: 0 0 14px rgba(69,10,10,.45) !important; }
18771877.kpi.kpi-lime .num { color: #7c2d12 !important; text-shadow: 0 0 14px rgba(69,10,10,.45) !important; }
18781878.kpi.kpi-violet .num { color: #450a0a !important; text-shadow: 0 0 14px rgba(69,10,10,.45) !important; }
18791879
18801880/* Module glow borders -- blue family */
18811881.module.glow-cyan { box-shadow: 0 0 0 1px rgba(69,10,10,.25), 0 0 26px rgba(69,10,10,.12) !important; }
18821882.module.glow-magenta { box-shadow: 0 0 0 1px rgba(69,10,10,.25), 0 0 26px rgba(69,10,10,.12) !important; }
18831883.module.glow-lime { box-shadow: 0 0 0 1px rgba(69,10,10,.25), 0 0 26px rgba(69,10,10,.12) !important; }
18841884.module.glow-violet { box-shadow: 0 0 0 1px rgba(69,10,10,.25), 0 0 26px rgba(69,10,10,.12) !important; }
18851885
18861886/* Module-head icon backgrounds when overridden inline -- nudge to blue family. */
18871887.module-head .module-icon[style*="170,255,0"] { color: #7c2d12 !important; background: rgba(69,10,10,.08) !important; border-color: rgba(69,10,10,.25) !important; }
18881888.module-head .module-icon[style*="179,0,255"] { color: #450a0a !important; background: rgba(69,10,10,.08) !important; border-color: rgba(69,10,10,.25) !important; }
18891889/* ===========================================================================
18901890 * Brighten the text + key accent values so they read clearly against the
18911891 * deep black background. Body text becomes warmer cream; KPI numbers and
18921892 * page titles use brighter amber/honey for legibility while the chrome
18931893 * stays dark.
18941894 * =========================================================================== */
18951895:root {
18961896 --col-text: #f5ede0 !important;
18971897 --col-text-muted: #c8baa0 !important;
18981898 --col-text-dim: #9c8e6e !important;
18991899}
19001900
19011901/* Page title -- lift the gradient so headlines pop */
19021902.page-title {
19031903 background: linear-gradient(90deg, #fcd34d 0%, #f59e0b 70%) !important;
19041904 -webkit-background-clip: text !important; background-clip: text !important; color: transparent !important;
19051905}
19061906
19071907/* KPI numbers -- step back up two shades so they read at a glance */
19081908.kpi.kpi-cyan .num { color: #fcd34d !important; text-shadow: 0 0 14px rgba(252,211,77,.40) !important; }
19091909.kpi.kpi-magenta .num { color: #4d0e15 !important; text-shadow: 0 0 14px rgba(77,14,21,.40) !important; }
19101910.kpi.kpi-lime .num { color: #f59e0b !important; text-shadow: 0 0 14px rgba(245,158,11,.40) !important; }
19111911.kpi.kpi-violet .num { color: #4d0e15 !important; text-shadow: 0 0 14px rgba(77,14,21,.40) !important; }
19121912
19131913/* Page eyebrow + dots -- lift to honey */
19141914.page-eyebrow { color: #fcd34d !important; text-shadow: 0 0 8px rgba(252,211,77,.45) !important; }
19151915.page-eyebrow .dot { background: #fcd34d !important; box-shadow: 0 0 8px #fcd34d !important; }
19161916
19171917/* Table headers brighter */
19181918table.tbl th { color: #c8baa0 !important; }
19191919
19201920/* Links in body content readable */
19211921a { color: #4d0e15 !important; }
19221922a:hover { color: #fcd34d !important; }
19231923
19241924/* Code spans + key tag accents -- warmer cream */
19251925code, kbd { color: #fcd34d !important; }
19261926/* ===========================================================================
19271927 * Brand icon plate -- mini MT-logo treatment for per-site rows. Dark
19281928 * warm-brown plate with white hairline border, the site's brand color
19291929 * powers the soft glow underneath via the --site-glow custom property.
19301930 * Sized at roughly 2/3 of the sidebar MT logo so it lines up with body text.
19311931 * =========================================================================== */
19321932.brand-icon {
19331933 display: inline-flex; align-items: center; justify-content: center;
19341934 width: 24px; height: 24px;
19351935 border-radius: 5px;
19361936 background: #2d1810;
19371937 border: 1px solid #fff;
19381938 position: relative;
19391939 vertical-align: middle;
19401940 flex: 0 0 24px;
19411941 --site-glow: #4d0e15;
19421942}
19431943.brand-icon::after {
19441944 content: '';
19451945 position: absolute; inset: -2px;
19461946 border-radius: inherit;
19471947 background: var(--site-glow);
19481948 filter: blur(8px);
19491949 opacity: 0.45;
19501950 z-index: -1;
19511951}
19521952/* Optional inner letter glyph -- pass via data-letter for sites that want it */
19531953.brand-icon::before {
19541954 content: attr(data-letter);
19551955 color: #fff;
19561956 font-weight: 700;
19571957 font-size: 10px;
19581958 font-family: var(--font-display);
19591959 letter-spacing: -.02em;
19601960 line-height: 1;
19611961}
19621962/* ===========================================================================
19631963 * Swap the warm honey/amber accent text -> bright lime green to match the
19641964 * ACTIVE-pill glow. Background chrome stays warm dark; only the bright
19651965 * type accents flip color.
19661966 * =========================================================================== */
19671967.page-title {
19681968 background: linear-gradient(90deg, #c4ff44 0%, #aaff00 70%) !important;
19691969 -webkit-background-clip: text !important; background-clip: text !important; color: transparent !important;
19701970}
19711971.page-eyebrow { color: #aaff00 !important; text-shadow: 0 0 8px rgba(170,255,0,.45) !important; }
19721972.page-eyebrow .dot { background: #aaff00 !important; box-shadow: 0 0 8px #aaff00 !important; }
19731973
19741974.kpi.kpi-cyan .num { color: #c4ff44 !important; text-shadow: 0 0 14px rgba(196,255,68,.40) !important; }
19751975.kpi.kpi-magenta .num { color: #aaff00 !important; text-shadow: 0 0 14px rgba(170,255,0,.40) !important; }
19761976.kpi.kpi-lime .num { color: #88cc00 !important; text-shadow: 0 0 14px rgba(136,204,0,.40) !important; }
19771977.kpi.kpi-violet .num { color: #66a000 !important; text-shadow: 0 0 14px rgba(102,160,0,.40) !important; }
19781978
19791979a, a:link { color: #aaff00 !important; }
19801980a:hover { color: #c4ff44 !important; }
19811981
19821982code, kbd { color: #c4ff44 !important; }
19831983
19841984/* table headers + active sidebar -- soft lime tint */
19851985table.tbl th { color: #aaff00 !important; }
19861986/* ===========================================================================
19871987 * Teal + amber two-tone -- match the cool teal ribbons + warm amber
19881988 * underglow from the reference. Backgrounds stay deep black. Lime
19891989 * accents get swapped to teal; some accents stay warm amber so the
19901990 * page has the cool/warm dance.
19911991 * =========================================================================== */
19921992
19931993/* Page title -- cool teal -> warm amber gradient (cool-to-warm transition) */
19941994.page-title {
19951995 background: linear-gradient(90deg, #5eead4 0%, #4d0e15 80%) !important;
19961996 -webkit-background-clip: text !important; background-clip: text !important; color: transparent !important;
19971997}
19981998.page-eyebrow { color: #2ec4b6 !important; text-shadow: 0 0 8px rgba(46,196,182,.55) !important; }
19991999.page-eyebrow .dot { background: #2ec4b6 !important; box-shadow: 0 0 8px #2ec4b6 !important; }
20002000
20012001/* KPI numbers alternate cool/warm to mimic the reference image */
20022002.kpi.kpi-cyan .num { color: #5eead4 !important; text-shadow: 0 0 14px rgba(94,234,212,.40) !important; }
20032003.kpi.kpi-magenta .num { color: #4d0e15 !important; text-shadow: 0 0 14px rgba(77,14,21,.40) !important; }
20042004.kpi.kpi-lime .num { color: #2ec4b6 !important; text-shadow: 0 0 14px rgba(46,196,182,.40) !important; }
20052005.kpi.kpi-violet .num { color: #4d0e15 !important; text-shadow: 0 0 14px rgba(77,14,21,.40) !important; }
20062006
20072007/* Module glow borders -- also alternate */
20082008.module.glow-cyan { box-shadow: 0 0 0 1px rgba(94,234,212,.22), 0 0 26px rgba(94,234,212,.12) !important; }
20092009.module.glow-magenta { box-shadow: 0 0 0 1px rgba(77,14,21,.22), 0 0 26px rgba(77,14,21,.12) !important; }
20102010.module.glow-lime { box-shadow: 0 0 0 1px rgba(46,196,182,.22), 0 0 26px rgba(46,196,182,.12) !important; }
20112011.module.glow-violet { box-shadow: 0 0 0 1px rgba(77,14,21,.22), 0 0 26px rgba(77,14,21,.12) !important; }
20122012
20132013/* Links + code -- cool teal */
20142014a, a:link { color: #2ec4b6 !important; }
20152015a:hover { color: #5eead4 !important; }
20162016code, kbd { color: #5eead4 !important; }
20172017
20182018/* Table headers brighter teal */
20192019table.tbl th { color: #2ec4b6 !important; }
20202020
20212021/* ACTIVE pill -- emerald teal to match the new family */
20222022.pill-ok, .pill.pill-ok {
20232023 color: #5eead4 !important;
20242024 border-color: #2ec4b6 !important;
20252025 background: rgba(46,196,182,.10) !important;
20262026 box-shadow: 0 0 10px rgba(46,196,182,.30) !important;
20272027}
20282028
20292029/* Topbar pill accent -- swap blue tint for teal */
20302030.topbar-pill {
20312031 background: linear-gradient(180deg, rgba(46,196,182,0.12), rgba(46,196,182,0.05)) !important;
20322032 border-color: rgba(46,196,182,0.30) !important;
20332033}
20342034.topbar-pill:hover {
20352035 border-color: rgba(46,196,182,0.65) !important;
20362036 background: linear-gradient(180deg, rgba(46,196,182,0.20), rgba(46,196,182,0.09)) !important;
20372037 box-shadow: 0 0 0 3px rgba(46,196,182,0.12) !important;
20382038}
20392039.topbar-pill svg { color: #5eead4 !important; }
20402040
20412041/* Profile avatar -- teal->amber gradient (matches the cool/warm theme) */
20422042.profile-btn .avatar {
20432043 background: linear-gradient(135deg, #2ec4b6 0%, #4d0e15 100%) !important;
20442044 box-shadow: 0 0 10px rgba(46,196,182,0.40) !important;
20452045}
20462046
20472047/* Sidebar active state in teal */
20482048.sidebar-link.active {
20492049 background: linear-gradient(90deg, rgba(46,196,182,.22) 0%, rgba(94,234,212,.08) 70%, transparent 100%) !important;
20502050 box-shadow: inset 0 0 0 1px rgba(46,196,182,.25) !important;
20512051}
20522052.sidebar-link.active::before { background: #2ec4b6 !important; }
20532053/* ===========================================================================
20542054 * Red text accents -- swap the teal/amber pair to a unified red family
20552055 * (light red -> mid red -> deep red). Backgrounds + chrome stay deep
20562056 * warm black so the reds pop.
20572057 * =========================================================================== */
20582058
20592059/* Page title -- light red -> deep red gradient */
20602060.page-title {
20612061 background: linear-gradient(90deg, #fca5a5 0%, #b53048 80%) !important;
20622062 -webkit-background-clip: text !important; background-clip: text !important; color: transparent !important;
20632063}
20642064
20652065/* Eyebrow + indicator dot */
20662066.page-eyebrow { color: #f87171 !important; text-shadow: 0 0 8px rgba(248,113,113,.55) !important; }
20672067.page-eyebrow .dot { background: #f87171 !important; box-shadow: 0 0 8px #f87171 !important; }
20682068
20692069/* KPI tile numbers -- gradations of red so all four still read distinct */
20702070.kpi.kpi-cyan .num { color: #fca5a5 !important; text-shadow: 0 0 14px rgba(252,165,165,.40) !important; }
20712071.kpi.kpi-magenta .num { color: #f87171 !important; text-shadow: 0 0 14px rgba(248,113,113,.40) !important; }
20722072.kpi.kpi-lime .num { color: #b53048 !important; text-shadow: 0 0 14px rgba(77,14,21,.40) !important; }
20732073.kpi.kpi-violet .num { color: #4d0e15 !important; text-shadow: 0 0 14px rgba(77,14,21,.40) !important; }
20742074
20752075/* Module glow borders -- red family */
20762076.module.glow-cyan { box-shadow: 0 0 0 1px rgba(252,165,165,.22), 0 0 26px rgba(252,165,165,.12) !important; }
20772077.module.glow-magenta { box-shadow: 0 0 0 1px rgba(248,113,113,.22), 0 0 26px rgba(248,113,113,.12) !important; }
20782078.module.glow-lime { box-shadow: 0 0 0 1px rgba(77,14,21,.22), 0 0 26px rgba(77,14,21,.12) !important; }
20792079.module.glow-violet { box-shadow: 0 0 0 1px rgba(77,14,21,.22), 0 0 26px rgba(77,14,21,.12) !important; }
20802080
20812081/* Links + code -- red */
20822082a, a:link { color: #f87171 !important; }
20832083a:hover { color: #fca5a5 !important; }
20842084code, kbd { color: #fca5a5 !important; }
20852085
20862086/* Table headers */
20872087table.tbl th { color: #f87171 !important; }
20882088
20892089/* ACTIVE pill -- shifted to red (still reads as "live/lit" -- the
20902090 * universal-green semantic isn't strong here since this is an internal
20912091 * operator console) */
20922092.pill-ok, .pill.pill-ok {
20932093 color: #fca5a5 !important;
20942094 border-color: #b53048 !important;
20952095 background: rgba(77,14,21,.10) !important;
20962096 box-shadow: 0 0 10px rgba(77,14,21,.30) !important;
20972097}
20982098
20992099/* Topbar pills */
21002100.topbar-pill {
21012101 background: linear-gradient(180deg, rgba(77,14,21,0.12), rgba(77,14,21,0.05)) !important;
21022102 border-color: rgba(77,14,21,0.30) !important;
21032103}
21042104.topbar-pill:hover {
21052105 border-color: rgba(77,14,21,0.65) !important;
21062106 background: linear-gradient(180deg, rgba(77,14,21,0.20), rgba(77,14,21,0.09)) !important;
21072107 box-shadow: 0 0 0 3px rgba(77,14,21,0.12) !important;
21082108}
21092109.topbar-pill svg { color: #f87171 !important; }
21102110
21112111/* Profile avatar -- light red -> deep red gradient */
21122112.profile-btn .avatar {
21132113 background: linear-gradient(135deg, #fca5a5 0%, #b53048 100%) !important;
21142114 box-shadow: 0 0 10px rgba(77,14,21,0.40) !important;
21152115}
21162116
21172117/* Sidebar active state */
21182118.sidebar-link.active {
21192119 background: linear-gradient(90deg, rgba(77,14,21,.24) 0%, rgba(252,165,165,.08) 70%, transparent 100%) !important;
21202120 box-shadow: inset 0 0 0 1px rgba(77,14,21,.28) !important;
21212121}
21222122.sidebar-link.active::before { background: #b53048 !important; }
21232123/* Brand-icon plate -- punch the glow harder so each site's color reads
21242124 * at a glance against the deep black background. */
21252125.brand-icon::after {
21262126 inset: -3px !important;
21272127 filter: blur(10px) !important;
21282128 opacity: 0.75 !important;
21292129}
21302130.brand-icon {
21312131 width: 26px !important; height: 26px !important;
21322132 flex: 0 0 26px !important;
21332133}
21342134.brand-icon::before {
21352135 font-size: 11px !important;
21362136}
21372137/* ===========================================================================
21382138 * Brand icon -- each plate is now a mini version of that site's actual
21392139 * logo: site brand color as the plate background + white letters inside +
21402140 * white hairline border + glow underneath in the same color. Matches the
21412141 * MT plate shape exactly.
21422142 * =========================================================================== */
21432143.brand-icon {
21442144 display: inline-flex; align-items: center; justify-content: center;
21452145 width: 30px !important; height: 30px !important;
21462146 border-radius: 7px !important;
21472147 background: var(--site-glow) !important;
21482148 border: 1.5px solid #fff !important;
21492149 position: relative;
21502150 vertical-align: middle;
21512151 flex: 0 0 30px !important;
21522152 --site-glow: #4d0e15;
21532153 color: #fff;
21542154 font-weight: 800;
21552155 font-size: 12px !important;
21562156 font-family: var(--font-display);
21572157 line-height: 1;
21582158 letter-spacing: -.02em;
21592159 box-shadow: 0 4px 14px var(--site-glow), 0 0 0 1px rgba(255,255,255,.06);
21602160}
21612161.brand-icon::before {
21622162 content: attr(data-letter);
21632163 color: #fff;
21642164 position: relative;
21652165 z-index: 2;
21662166 text-shadow: 0 1px 2px rgba(0,0,0,.4);
21672167}
21682168.brand-icon::after {
21692169 content: '';
21702170 position: absolute; inset: -3px;
21712171 border-radius: inherit;
21722172 background: var(--site-glow);
21732173 filter: blur(12px);
21742174 opacity: 0.55;
21752175 z-index: -1;
21762176}
21772177
21782178/* Hover lift on site rows -- subtle brand-color glow on the row */
21792179table.tbl tr:hover .brand-icon {
21802180 box-shadow: 0 6px 20px var(--site-glow), 0 0 0 1px rgba(255,255,255,.10);
21812181 transform: translateY(-1px);
21822182 transition: all 0.15s ease;
21832183}
21842184table.tbl tr .brand-icon { transition: all 0.15s ease; }
21852185/* ===========================================================================
21862186 * Color rebalance -- red is the HERO brand accent only (page title +
21872187 * eyebrow + sidebar active + brand-icon plates). For the working text
21882188 * (links, KPI numbers, table headers, code) use cool tones (soft blue /
21892189 * lighter cream) so the page reads calm + grown-up instead of monochrome.
21902190 * =========================================================================== */
21912191
21922192/* Page-title gradient stays red (hero moment) */
21932193.page-title {
21942194 background: linear-gradient(90deg, #fca5a5 0%, #b53048 80%) !important;
21952195 -webkit-background-clip: text !important; background-clip: text !important; color: transparent !important;
21962196}
21972197/* Eyebrow stays red */
21982198.page-eyebrow { color: #f87171 !important; }
21992199.page-eyebrow .dot { background: #f87171 !important; box-shadow: 0 0 8px #f87171 !important; }
22002200
22012201/* KPI numbers -- shift to a cool / neutral progression so they read clean */
22022202.kpi.kpi-cyan .num { color: #93c5fd !important; text-shadow: 0 0 14px rgba(147,197,253,.35) !important; }
22032203.kpi.kpi-magenta .num { color: #f5ede0 !important; text-shadow: 0 0 14px rgba(245,237,224,.30) !important; }
22042204.kpi.kpi-lime .num { color: #7dd3fc !important; text-shadow: 0 0 14px rgba(125,211,252,.35) !important; }
22052205.kpi.kpi-violet .num { color: #cbd5e1 !important; text-shadow: 0 0 14px rgba(203,213,225,.30) !important; }
22062206
22072207/* Module border glows -- subtle warm-cream so they don't shout */
22082208.module.glow-cyan { box-shadow: 0 0 0 1px rgba(147,197,253,.18), 0 0 24px rgba(147,197,253,.10) !important; }
22092209.module.glow-magenta { box-shadow: 0 0 0 1px rgba(248,113,113,.22), 0 0 26px rgba(248,113,113,.12) !important; }
22102210.module.glow-lime { box-shadow: 0 0 0 1px rgba(125,211,252,.18), 0 0 24px rgba(125,211,252,.10) !important; }
22112211.module.glow-violet { box-shadow: 0 0 0 1px rgba(203,213,225,.15), 0 0 22px rgba(203,213,225,.08) !important; }
22122212
22132213/* Links + code -- soft cool blue (PTMatrix pattern -- brand for hero, blue for action) */
22142214a, a:link { color: #7dd3fc !important; }
22152215a:hover { color: #bae6fd !important; }
22162216code, kbd { color: #bae6fd !important; }
22172217
22182218/* Table headers -- dim cream, not screaming */
22192219table.tbl th { color: #a89978 !important; }
22202220
22212221/* ACTIVE pill -- emerald (universally "live/ok") */
22222222.pill-ok, .pill.pill-ok {
22232223 color: #86efac !important;
22242224 border-color: #22c55e !important;
22252225 background: rgba(34,197,94,.10) !important;
22262226 box-shadow: 0 0 10px rgba(34,197,94,.25) !important;
22272227}
22282228
22292229/* Topbar pills -- soft cool blue tint (matches links) */
22302230.topbar-pill {
22312231 background: linear-gradient(180deg, rgba(125,211,252,0.10), rgba(125,211,252,0.04)) !important;
22322232 border-color: rgba(125,211,252,0.25) !important;
22332233}
22342234.topbar-pill:hover {
22352235 border-color: rgba(125,211,252,0.55) !important;
22362236 background: linear-gradient(180deg, rgba(125,211,252,0.18), rgba(125,211,252,0.08)) !important;
22372237 box-shadow: 0 0 0 3px rgba(125,211,252,0.10) !important;
22382238}
22392239.topbar-pill svg { color: #7dd3fc !important; }
22402240
22412241/* Profile avatar stays red (brand identity moment) */
22422242.profile-btn .avatar {
22432243 background: linear-gradient(135deg, #fca5a5 0%, #b53048 100%) !important;
22442244 box-shadow: 0 0 10px rgba(77,14,21,0.40) !important;
22452245}
22462246
22472247/* Sidebar active stays red (brand identity moment) */
22482248.sidebar-link.active {
22492249 background: linear-gradient(90deg, rgba(77,14,21,.22) 0%, rgba(252,165,165,.06) 70%, transparent 100%) !important;
22502250 box-shadow: inset 0 0 0 1px rgba(77,14,21,.25) !important;
22512251}
22522252.sidebar-link.active::before { background: #b53048 !important; }
22532253
22542254/* Row hover -- subtle warmth so the table feels alive without being noisy */
22552255table.tbl tr:hover td { background: rgba(252,165,165,.03) !important; }
22562256/* ===========================================================================
22572257 * Monochrome palette -- black + gray + white only. Brand-icon plates
22582258 * keep their per-site colors since that's the only way to tell the
22592259 * rows apart at a glance, but everything else is grayscale.
22602260 * =========================================================================== */
22612261:root {
22622262 --col-bg-0: #0a0a0a !important; /* page */
22632263 --col-bg-1: #111111 !important;
22642264 --col-bg-2: #1a1a1a !important;
22652265 --col-bg-3: #242424 !important;
22662266 --col-bg-4: #2e2e2e !important;
22672267 --col-surface: #141414 !important;
22682268 --col-surface-2: #1c1c1c !important;
22692269 --col-surface-3: #262626 !important;
22702270
22712271 --col-border: #262626 !important;
22722272 --col-border-2: #3a3a3a !important;
22732273
22742274 --col-text: #f5f5f5 !important;
22752275 --col-text-muted: #a3a3a3 !important;
22762276 --col-text-dim: #737373 !important;
22772277}
22782278body { background: #0a0a0a !important; }
22792279body::before { background: none !important; } /* kill any colored backdrop */
22802280body::after { background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.18) 28%, rgba(255,255,255,.30) 50%, rgba(255,255,255,.18) 72%, transparent 100%) !important; }
22812281
22822282/* Page title -- soft white gradient (subtle shimmer, not screaming) */
22832283.page-title {
22842284 background: linear-gradient(90deg, #ffffff 0%, #a3a3a3 100%) !important;
22852285 -webkit-background-clip: text !important; background-clip: text !important; color: transparent !important;
22862286}
22872287.page-eyebrow { color: #a3a3a3 !important; text-shadow: none !important; letter-spacing: 2.5px !important; }
22882288.page-eyebrow .dot { background: #ffffff !important; box-shadow: 0 0 6px rgba(255,255,255,.5) !important; }
22892289.page-subtitle { color: #737373 !important; }
22902290
22912291/* KPI numbers -- clean white, very different weights so they differ */
22922292.kpi.kpi-cyan .num { color: #ffffff !important; text-shadow: none !important; }
22932293.kpi.kpi-magenta .num { color: #f5f5f5 !important; text-shadow: none !important; }
22942294.kpi.kpi-lime .num { color: #e5e5e5 !important; text-shadow: none !important; }
22952295.kpi.kpi-violet .num { color: #d4d4d4 !important; text-shadow: none !important; }
22962296.kpi .lbl { color: #737373 !important; }
22972297.kpi .sub { color: #525252 !important; }
22982298
22992299/* Module borders -- subtle white tint, no colored glows */
23002300.module { background: #111111 !important; border-color: #262626 !important; }
23012301.module-head { background: rgba(255,255,255,.02) !important; border-bottom-color: #262626 !important; }
23022302.module-icon {
23032303 color: #d4d4d4 !important;
23042304 background: rgba(255,255,255,.04) !important;
23052305 border-color: rgba(255,255,255,.10) !important;
23062306}
23072307.module-title { color: #f5f5f5 !important; }
23082308.module.glow-cyan { box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 0 24px rgba(255,255,255,.04) !important; }
23092309.module.glow-magenta { box-shadow: 0 0 0 1px rgba(255,255,255,.10), 0 0 24px rgba(255,255,255,.05) !important; }
23102310.module.glow-lime { box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 0 24px rgba(255,255,255,.04) !important; }
23112311.module.glow-violet { box-shadow: 0 0 0 1px rgba(255,255,255,.06), 0 0 24px rgba(255,255,255,.03) !important; }
23122312
23132313/* Links + code -- off-white, no color */
23142314a, a:link { color: #d4d4d4 !important; text-decoration: none !important; }
23152315a:hover { color: #ffffff !important; text-decoration: underline !important; text-decoration-color: rgba(255,255,255,.3) !important; }
23162316code, kbd { color: #e5e5e5 !important; background: rgba(255,255,255,.05) !important; border-color: rgba(255,255,255,.08) !important; }
23172317
23182318/* Tables */
23192319table.tbl th { color: #737373 !important; background: rgba(255,255,255,.02) !important; }
23202320table.tbl td { border-bottom-color: rgba(255,255,255,.05) !important; }
23212321table.tbl tr:hover td { background: rgba(255,255,255,.025) !important; }
23222322
23232323/* Pills */
23242324.pill-ok, .pill.pill-ok { color: #f5f5f5 !important; border-color: #525252 !important; background: rgba(255,255,255,.04) !important; box-shadow: none !important; }
23252325.pill-warn, .pill.pill-warn { color: #d4d4d4 !important; border-color: #525252 !important; background: rgba(255,255,255,.04) !important; }
23262326.pill-bad, .pill.pill-bad { color: #a3a3a3 !important; border-color: #404040 !important; background: rgba(255,255,255,.02) !important; box-shadow: none !important; }
23272327.pill-info, .pill.pill-info { color: #e5e5e5 !important; border-color: #525252 !important; background: rgba(255,255,255,.04) !important; }
23282328.badge.primary { color: #f5f5f5 !important; border-color: #525252 !important; background: rgba(255,255,255,.06) !important; }
23292329
23302330/* Topbar pills -- subtle white outline */
23312331.topbar-pill {
23322332 background: rgba(255,255,255,.04) !important;
23332333 border-color: rgba(255,255,255,.12) !important;
23342334 color: #f5f5f5 !important;
23352335}
23362336.topbar-pill:hover {
23372337 border-color: rgba(255,255,255,.30) !important;
23382338 background: rgba(255,255,255,.08) !important;
23392339 box-shadow: 0 0 0 3px rgba(255,255,255,.05) !important;
23402340}
23412341.topbar-pill svg { color: #d4d4d4 !important; }
23422342
23432343/* Topbar bell etc. */
23442344.topbar-iconbtn { color: #a3a3a3 !important; }
23452345.topbar-iconbtn:hover { color: #ffffff !important; background: rgba(255,255,255,.04) !important; }
23462346
23472347/* Topbar background -- subtle dark, no gradient */
23482348.topbar {
23492349 background: rgba(20,20,20,.85) !important;
23502350 border-bottom-color: rgba(255,255,255,.06) !important;
23512351 box-shadow: none !important;
23522352}
23532353.topbar-search {
23542354 background: rgba(255,255,255,.04) !important;
23552355 border-color: rgba(255,255,255,.10) !important;
23562356}
23572357.topbar-search:focus-within {
23582358 border-color: rgba(255,255,255,.30) !important;
23592359 box-shadow: 0 0 0 3px rgba(255,255,255,.06) !important;
23602360}
23612361
23622362/* Profile chip -- monochrome avatar */
23632363.profile-btn {
23642364 background: rgba(255,255,255,.04) !important;
23652365 border-color: rgba(255,255,255,.12) !important;
23662366}
23672367.profile-btn:hover { border-color: rgba(255,255,255,.30) !important; box-shadow: 0 0 0 3px rgba(255,255,255,.05) !important; }
23682368.profile-btn .avatar {
23692369 background: linear-gradient(135deg, #ffffff 0%, #737373 100%) !important;
23702370 color: #0a0a0a !important;
23712371 box-shadow: 0 0 8px rgba(255,255,255,.20) !important;
23722372 border: 1px solid rgba(255,255,255,.40) !important;
23732373}
23742374
23752375/* Profile dropdown */
23762376.profile-dropdown-menu { background: #141414 !important; border-color: rgba(255,255,255,.10) !important; }
23772377.profile-dropdown-menu a { color: #d4d4d4 !important; }
23782378.profile-dropdown-menu a:hover { color: #ffffff !important; background: rgba(255,255,255,.05) !important; }
23792379.profile-dropdown-divider { background: rgba(255,255,255,.08) !important; }
23802380.profile-dropdown-head { border-bottom-color: rgba(255,255,255,.08) !important; }
23812381
23822382/* Sidebar -- pure dark with subtle white-tint active state */
23832383.sidebar {
23842384 background: #0d0d0d !important;
23852385 border-right: 1px solid rgba(255,255,255,.06) !important;
23862386}
23872387.sidebar-brand { border-bottom-color: rgba(255,255,255,.08) !important; }
23882388.sidebar-brand .logo {
23892389 background: #1a1a1a !important;
23902390 box-shadow: 0 4px 14px rgba(255,255,255,.15) !important;
23912391}
23922392.sidebar-brand .logo::after {
23932393 background: linear-gradient(135deg, #ffffff 0%, #737373 100%) !important;
23942394 opacity: .15 !important;
23952395}
23962396.sidebar-brand .brand-name { color: #f5f5f5 !important; }
23972397.sidebar-brand .brand-sub { color: #737373 !important; }
23982398.sidebar-section-label { color: #525252 !important; opacity: 1 !important; }
23992399.sidebar-link { color: #a3a3a3 !important; }
24002400.sidebar-link:hover { color: #ffffff !important; background: rgba(255,255,255,.05) !important; }
24012401.sidebar-link.active {
24022402 background: linear-gradient(90deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,.02) 70%, transparent 100%) !important;
24032403 box-shadow: inset 0 0 0 1px rgba(255,255,255,.10) !important;
24042404 color: #ffffff !important;
24052405}
24062406.sidebar-link.active::before { background: #ffffff !important; }
24072407
24082408/* Buttons */
24092409.btn { background: #1a1a1a !important; border-color: rgba(255,255,255,.10) !important; color: #f5f5f5 !important; }
24102410.btn:hover { background: #242424 !important; border-color: rgba(255,255,255,.30) !important; }
24112411.btn-primary { background: #f5f5f5 !important; border-color: #f5f5f5 !important; color: #0a0a0a !important; box-shadow: 0 4px 14px rgba(255,255,255,.20) !important; }
24122412.btn-primary:hover { background: #ffffff !important; border-color: #ffffff !important; color: #000 !important; box-shadow: 0 6px 18px rgba(255,255,255,.30) !important; }
24132413.btn-secondary{ background: #1a1a1a !important; border-color: rgba(255,255,255,.10) !important; color: #d4d4d4 !important; }
24142414.btn-danger { background: rgba(255,255,255,.04) !important; border-color: rgba(255,255,255,.20) !important; color: #f5f5f5 !important; }
24152415
24162416/* Banner -- subtle outline only */
24172417.banner.success { color: #f5f5f5 !important; border-color: rgba(255,255,255,.20) !important; background: rgba(255,255,255,.03) !important; }
24182418.banner.danger { color: #f5f5f5 !important; border-color: rgba(255,255,255,.30) !important; background: rgba(255,255,255,.05) !important; }
24192419.banner.warn { color: #e5e5e5 !important; border-color: rgba(255,255,255,.18) !important; background: rgba(255,255,255,.02) !important; }
24202420
24212421/* Scrollbar -- mono */
24222422::-webkit-scrollbar-track { background: #0d0d0d !important; }
24232423::-webkit-scrollbar-thumb { background: #2a2a2a !important; border-color: #0d0d0d !important; }
24242424::-webkit-scrollbar-thumb:hover { background: #404040 !important; }
24252425/* ===========================================================================
24262426 * Per-site brand-icon text color overrides for plates whose backgrounds
24272427 * are too light/dark for white text. Matches each site's actual favicon.
24282428 * Also a custom amber color for ABForge to match its favicon AB letters.
24292429 * =========================================================================== */
24302430/* ShopCart: pale cream plate -> needs dark text */
24312431.brand-icon[style*="#e8efc7"]::before { color: #4d4d2e !important; text-shadow: none !important; }
24322432
24332433/* ABForge: amber-on-dark text like the real favicon */
24342434.brand-icon[style*="#3a1505"]::before { color: #ffb347 !important; text-shadow: none !important; }
24352435/* ===========================================================================
24362436 * ShopCart logo: dark forest plate + olive SC letters (matches the actual
24372437 * brand mark). Topbar title brightened to clean white.
24382438 * =========================================================================== */
24392439
24402440/* ShopCart plate -- override the prior light-cream selector that no longer
24412441 * matches the dark-forest brand color, plus set olive letters on top. */
24422442.brand-icon[style*="#1a3d2e"]::before {
24432443 color: #b5c93d !important;
24442444 text-shadow: none !important;
24452445}
24462446
24472447/* Topbar page title -- clean white instead of the soft gray it inherited */
24482448.topbar-title {
24492449 color: #f5f5f5 !important;
24502450 font-weight: 600 !important;
24512451 background: none !important;
24522452 -webkit-text-fill-color: #f5f5f5 !important;
24532453}
24542454/* ===========================================================================
24552455 * Profile chip -- match PTMatrix's pill exactly: taller + bigger avatar
24562456 * so the border-radius:999px reads as a true pill instead of a soft
24572457 * rounded-rectangle.
24582458 * =========================================================================== */
24592459.profile-btn {
24602460 height: 50px !important;
24612461 padding: 5px 16px 5px 5px !important;
24622462 border-radius: 999px !important;
24632463 gap: 12px !important;
24642464}
24652465.profile-btn .avatar {
24662466 width: 40px !important;
24672467 height: 40px !important;
24682468 flex: 0 0 40px !important;
24692469 font-size: 14px !important;
24702470}
24712471.profile-btn .who .nm, .profile-btn > div > div:first-child { font-size: 14px !important; }
24722472.profile-btn .who .sub, .profile-btn > div > div:nth-child(2) { font-size: 11.5px !important; }
24732473/* ===========================================================================
24742474 * Module accent -- warm copper-amber left-edge stripe + matching icon
24752475 * fill on the module-head circle. Applied to every .module across every
24762476 * page so the entire console reads with the same warm accent.
24772477 * =========================================================================== */
24782478.module {
24792479 position: relative;
24802480 overflow: hidden;
24812481}
24822482.module::before {
24832483 content: '';
24842484 position: absolute;
24852485 top: 0; bottom: 0; left: 0;
24862486 width: 3px;
24872487 background: linear-gradient(180deg, #b53048 0%, #4d0e15 100%);
24882488 box-shadow: 0 0 18px rgba(77,14,21,.55), 6px 0 24px rgba(77,14,21,.18);
24892489 pointer-events: none;
24902490 z-index: 2;
24912491}
24922492.module-head {
24932493 position: relative;
24942494 z-index: 1;
24952495}
24962496
24972497/* All module-head icons in warm copper-amber (overrides every CGI's
24982498 * inline color/background/border-color trio in one place). */
24992499.module-icon,
25002500.module-head .module-icon {
25012501 color: #4d0e15 !important;
25022502 background: rgba(77,14,21,.10) !important;
25032503 border-color: rgba(77,14,21,.35) !important;
25042504 box-shadow: 0 0 12px rgba(77,14,21,.20) !important;
25052505}
25062506/* ===========================================================================
25072507 * Profile chip -- match the rounded-square shape of Help/Support pills
25082508 * next to it (5px corners) instead of the full-pill 999px.
25092509 * =========================================================================== */
25102510.profile-btn {
25112511 border-radius: 5px !important;
25122512 height: 44px !important;
25132513 padding: 4px 14px 4px 4px !important;
25142514}
25152515.profile-btn .avatar {
25162516 width: 34px !important;
25172517 height: 34px !important;
25182518 flex: 0 0 34px !important;
25192519 font-size: 13px !important;
25202520 border-radius: 5px !important; /* slight rounding to mirror the chip */
25212521}
25222522.profile-dropdown-menu {
25232523 border-radius: 5px !important;
25242524}
25252525/* Icon stroke override -- some inline styles colored the SVG via
25262526 * stroke="currentColor", so we lock the parent .module-icon color
25272527 * AND override any inline color attribute on the inner svg/path/circle
25282528 * for absolute consistency. */
25292529.module-icon,
25302530.module-head .module-icon,
25312531.module-head .left .module-icon {
25322532 color: #4d0e15 !important;
25332533 background: rgba(77,14,21,.10) !important;
25342534 border: 1px solid rgba(77,14,21,.35) !important;
25352535 box-shadow: 0 0 12px rgba(77,14,21,.20) !important;
25362536}
25372537.module-icon svg,
25382538.module-icon svg * {
25392539 color: #4d0e15 !important;
25402540 stroke: #4d0e15 !important;
25412541}
25422542/* ============================================================
25432543 * FINAL OVERRIDES (v=28)
25442544 * - Topbar bg: solid (no see-through scrolling under it)
25452545 * - SVG chart labels: force topbar-title font via CSS so SVG
25462546 * honors the font (font-family attribute with quoted family
25472547 * names doesnt apply reliably in all browsers; CSS wins).
25482548 * - .tbl first column: tight 24px brand-icon plate, no extra
25492549 * horizontal padding eating the row.
25502550 * ============================================================ */
25512551
25522552.topbar {
25532553 background: #0a0a0a !important;
25542554 backdrop-filter: none !important;
25552555 -webkit-backdrop-filter: none !important;
25562556}
25572557
25582558svg text {
25592559 font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Segoe UI Variable', Roboto, Helvetica, Arial, sans-serif !important;
25602560 font-weight: 700 !important;
25612561}
25622562
25632563table.tbl td:first-child,
25642564table.tbl th:first-child {
25652565 width: 36px !important;
25662566 padding: 10px 4px 10px 12px !important;
25672567}
25682568table.tbl .brand-icon {
25692569 width: 22px !important;
25702570 height: 22px !important;
25712571 flex: 0 0 22px !important;
25722572}
25732573table.tbl .brand-icon::before {
25742574 font-size: 9px !important;
25752575}
25762576/* ============================================================
25772577 * HTML horizontal bar chart (replaces SVG-text labels)
25782578 * Used by support.cgi (and any other roll-up that calls svg_hbars).
25792579 * Labels are real HTML so they inherit the page font 100%.
25802580 * ============================================================ */
25812581.hbar-chart { display: flex; flex-direction: column; gap: 8px; padding: 6px 0; }
25822582.hbar-row { display: grid; grid-template-columns: 150px 1fr 60px; align-items: center; gap: 14px; }
25832583.hbar-label { font-weight: 700; color: var(--col-text); font-size: 13.5px; letter-spacing: -.005em; }
25842584.hbar-track { height: 14px; background: #0d0a07; border: 1px solid rgba(255,255,255,.04); border-radius: 4px; overflow: hidden; }
25852585.hbar-fill { height: 100%; border-radius: 4px; opacity: 0.92; transition: width .25s ease; }
25862586.hbar-value { text-align: right; font-weight: 700; color: var(--col-text-muted); font-size: 12px; font-variant-numeric: tabular-nums; }
25872587/* Un-bold the site-name labels in both the hbar chart and tables */
25882588.hbar-label { font-weight: 500 !important; }
25892589table.tbl td strong { font-weight: 500 !important; }
25902590/* Brand-icon plate inside hbar-label so the chart matches the table below. */
25912591.hbar-label {
25922592 display: flex !important;
25932593 align-items: center !important;
25942594 gap: 10px !important;
25952595}
25962596.hbar-label .brand-icon {
25972597 width: 22px !important;
25982598 height: 22px !important;
25992599 flex: 0 0 22px !important;
26002600}
26012601.hbar-label .brand-icon::before {
26022602 font-size: 9px !important;
26032603}
26042604/* Bump the label column a touch to fit the plate + text comfortably. */
26052605.hbar-row { grid-template-columns: 170px 1fr 60px !important; }
26062606/* Status pills (HOT / OPEN / CLEAN) -- passive badges, NOT buttons. */
26072607.status-pill {
26082608 border: 0 !important;
26092609 background: transparent !important;
26102610 padding: 2px 8px !important;
26112611 font-size: 10px !important;
26122612 font-weight: 700 !important;
26132613 letter-spacing: .06em !important;
26142614 text-transform: uppercase !important;
26152615 cursor: default !important;
26162616}
26172617.status-pill.pill-bad { color: #b53048 !important; }
26182618.status-pill.pill-warn { color: #f59e0b !important; }
26192619.status-pill.pill-ok { color: #10b981 !important; }
26202620/* ============================================================
26212621 * Form inputs -- match the topbar search box (dark bg + subtle
26222622 * border + amber focus ring). Replaces the browser default
26232623 * white-on-black look that bled through on settings.cgi.
26242624 * ============================================================ */
26252625input[type="text"],
26262626input[type="password"],
26272627input[type="email"],
26282628input[type="number"],
26292629input[type="url"],
26302630input[type="search"],
26312631input[type="tel"],
26322632input[type="date"],
26332633input[type="time"],
26342634input[type="datetime-local"],
26352635textarea,
26362636select {
26372637 background: var(--col-bg-2) !important;
26382638 color: var(--col-text) !important;
26392639 border: 1px solid var(--col-border) !important;
26402640 border-radius: var(--radius-sm, 5px) !important;
26412641 padding: 8px 12px !important;
26422642 font-size: 13px !important;
26432643 font-family: inherit !important;
26442644 outline: none !important;
26452645 box-sizing: border-box !important;
26462646 transition: border-color .15s ease, box-shadow .15s ease !important;
26472647}
26482648/* Default width inside any label-wrapped input (login form, settings, etc.) */
26492649.lbl input[type="text"],
26502650.lbl input[type="password"],
26512651.lbl input[type="email"],
26522652.lbl input[type="number"],
26532653.lbl input[type="url"],
26542654.lbl input[type="search"],
26552655.lbl input[type="tel"],
26562656.lbl input[type="date"],
26572657.lbl textarea,
26582658.lbl select { width: 100% !important; }
26592659input[type="text"]:focus,
26602660input[type="password"]:focus,
26612661input[type="email"]:focus,
26622662input[type="number"]:focus,
26632663input[type="url"]:focus,
26642664input[type="search"]:focus,
26652665input[type="tel"]:focus,
26662666textarea:focus,
26672667select:focus {
26682668 border-color: #4d0e15 !important;
26692669 box-shadow: 0 0 0 2px rgba(77,14,21,.18) !important;
26702670}
26712671input::placeholder,
26722672textarea::placeholder { color: var(--col-text-dim, #807aa8) !important; opacity: 0.7 !important; }
26732673/* Compact KPI module bodies (donut/gauge cards). Without this the
26742674 * KPI tiles stretch to match whichever neighbour grew tallest, leaving
26752675 * acres of empty space. */
26762676.kpi-card-compact,
26772677.module-body.kpi-compact { padding: 14px 16px 18px !important; min-height: 0 !important; }
26782678/* Donut legend on revenue.cgi -- brand plate + site name + MTD value */
26792679.donut-legend { display: flex; flex-direction: column; gap: 6px; width: 100%; max-width: 260px; }
26802680.legend-row { display: grid; grid-template-columns: 22px 1fr auto; align-items: center; gap: 10px; font-size: 13px; }
26812681.legend-row .brand-icon { width: 20px !important; height: 20px !important; flex: 0 0 20px !important; }
26822682.legend-row .brand-icon::before { font-size: 8px !important; }
26832683.legend-name { color: var(--col-text); font-weight: 500; }
26842684.legend-val { color: var(--col-text-muted); font-weight: 600; font-variant-numeric: tabular-nums; font-size: 12px; }
26852685/* Dial down the big KPI numerals in dashboard tiles (Server / Revenue
26862686 * / Support top row). Default was 26px/700 -- too loud against
26872687 * the rest of the chrome. */
26882688.module-body.kpi .num,
26892689.kpi .num {
26902690 font-size: 20px !important;
26912691 font-weight: 500 !important;
26922692 letter-spacing: -.01em !important;
26932693}
26942694/* Meta-admin's brand plate variant -- matches its own sidebar mark
26952695 * (dark plate + thin white border + subtle drop shadow, NO colored
26962696 * glow underneath). Apply via class="brand-icon meta-plate". */
26972697.brand-icon.meta-plate::after { display: none !important; }
26982698.brand-icon.meta-plate {
26992699 background: #2d1810 !important;
27002700 border: 1px solid #fff !important;
27012701 box-shadow: 0 4px 12px rgba(77,14,21,0.18) !important;
27022702}
27032703/* Module icon plates -- brighter red than the burgundy module borders. */
27042704.module-icon,
27052705.module-head .module-icon {
27062706 color: #b53048 !important;
27072707 background: rgba(77,14,21,.10) !important;
27082708 border: 1px solid rgba(77,14,21,.45) !important;
27092709 box-shadow: 0 0 12px rgba(77,14,21,.22) !important;
27102710}
27112711.module-icon svg,
27122712.module-icon svg * {
27132713 color: #b53048 !important;
27142714 stroke: #b53048 !important;
27152715}
27162716/* === Exploratory red-highlight pass === */
27172717/* Active sidebar link: bright red left-edge stripe + faint glow */
27182718.sidebar-link.active {
27192719 position: relative;
27202720 background: linear-gradient(90deg, rgba(181,48,72,.55) 0%, rgba(77,14,21,.22) 50%, rgba(77,14,21,0) 88%) !important;
27212721 box-shadow: inset 0 -1px 0 #b53048 !important;
27222722}
27232723/* === Wine wash across every module/card header (matches sidebar active) === */
27242724.module-head,
27252725.card-header {
27262726 background: linear-gradient(90deg, rgba(181,48,72,.55) 0%, rgba(77,14,21,.22) 50%, rgba(77,14,21,0) 88%) !important;
27272727}
27282728.sidebar-link.active::before {
27292729 content: '';
27302730 position: absolute;
27312731 left: 0; top: 6px; bottom: 6px; width: 3px;
27322732 background: #b53048;
27332733 border-radius: 0 3px 3px 0;
27342734 box-shadow: 0 0 8px rgba(77,14,21,.5);
27352735}
27362736.sidebar-link:hover {
27372737 color: #b53048 !important;
27382738}
27392739
27402740/* Inline links in page subtitles + body copy -- give them a red tone */
27412741.page-subtitle a,
27422742.module-body a:not(.btn):not(.sidebar-link) {
27432743 color: #b53048 !important;
27442744}
27452745.page-subtitle a:hover,
27462746.module-body a:not(.btn):not(.sidebar-link):hover {
27472747 color: #f87171 !important;
27482748 text-decoration-color: rgba(77,14,21,.6);
27492749}
27502750
27512751/* Eyebrow dot (the little bullet next to OVERVIEW/ROLL-UP labels) */
27522752.page-eyebrow .dot {
27532753 background: #b53048 !important;
27542754 box-shadow: 0 0 6px rgba(77,14,21,.55) !important;
27552755}
27562756
27572757/* KPI number text-shadow -- subtle red glow under the big numbers */
27582758.module-body.kpi .num,
27592759.kpi .num {
27602760 text-shadow: 0 0 16px rgba(77,14,21,.22) !important;
27612761}
27622762
27632763/* Topbar profile chip + bell hover -- red accent on hover */
27642764.topbar-iconbtn:hover {
27652765 color: #b53048 !important;
27662766}
27672767/* Red accent for checkboxes (uses CSS accent-color, supported Chrome 93+). */
27682768input[type="checkbox"],
27692769input[type="radio"] {
27702770 accent-color: #4d0e15;
27712771}
27722772/* === More red on the sidebar menus === */
27732773/* Section labels (PORTFOLIO / CONFIGURATION) -- red tint */
27742774.sidebar-section-label {
27752775 color: #b53048 !important;
27762776 letter-spacing: .12em;
27772777}
27782778/* Menu item icons -- subtle red wash by default; brighter on hover/active */
27792779.sidebar-link svg {
27802780 color: #b53048 !important;
27812781 transition: color .15s ease;
27822782}
27832783.sidebar-link:hover svg,
27842784.sidebar-link.active svg {
27852785 color: #b53048 !important;
27862786}
27872787/* Active label text -- pull toward bright */
27882788.sidebar-link.active {
27892789 color: #fff !important;
27902790}
27912791/* Active sidebar item: hide the left-edge stripe, icon goes white. */
27922792.sidebar-link.active::before { display: none !important; }
27932793.sidebar-link.active svg,
27942794.sidebar-link.active svg * {
27952795 color: #fff !important;
27962796 stroke: #fff !important;
27972797}
27982798
27992799/* Chip range picker: Custom datetime-local inputs -- brand-themed to
28002800 match the site (2026-07-09). Scoped to #customWrap so it only styles
28012801 the chip-picker's Custom inputs, never other forms on the page. */
28022802#customWrap input[type="datetime-local"] {
28032803 background: var(--col-surface, #0f1a26);
28042804 color: var(--col-text, #e5e7eb);
28052805 border: 1px solid var(--col-border, rgba(255,255,255,.12));
28062806 border-radius: 8px;
28072807 padding: 5px 10px;
28082808 font-size: 12px;
28092809 font-family: inherit;
28102810 color-scheme: dark;
28112811 outline: none;
28122812 transition: border-color .15s ease;
28132813}
28142814#customWrap input[type="datetime-local"]:hover,
28152815#customWrap input[type="datetime-local"]:focus {
28162816 border-color: var(--col-brand, var(--col-primary, var(--col-accent, #5aa9ff)));
28172817}
28182818#customWrap input[type="datetime-local"]::-webkit-calendar-picker-indicator {
28192819 filter: invert(1) brightness(1.4);
28202820 cursor: pointer;
28212821 opacity: 0.75;
28222822}
28232823/* =========================================================================
28242824 * CANONICAL CHIP RANGE PICKER (portfolio-wide .tr-chip pattern)
28252825 * ========================================================================= */
28262826.tr-chip {
28272827 display: inline-flex; align-items: center;
28282828 padding: 5px 12px; border-radius: 999px;
28292829 font-size: 12px; font-weight: 600;
28302830 color: var(--col-text-muted); text-decoration: none;
28312831 background: transparent; border: 1px solid var(--col-border);
28322832 cursor: pointer; transition: all .15s ease; font-family: inherit;
28332833}
28342834.tr-chip:hover { color: var(--col-text); border-color: var(--col-brand, var(--col-primary, #b53048)); }
28352835.tr-chip.is-active {
28362836 background: var(--col-brand, var(--col-primary, #b53048));
28372837 color: #fff;
28382838 border-color: var(--col-brand, var(--col-primary, #b53048));
28392839}