ltcai 0.1.26 → 0.1.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1421 @@
1
+ @import url("/static/css/tokens.css");
2
+
3
+ /* Lattice AI PPT reference skin.
4
+ The deck uses a bright basic workspace and a dark administrator workspace. */
5
+
6
+ :root {
7
+ --ref-purple: #6f42e8;
8
+ --ref-purple-2: #8b6cff;
9
+ --ref-indigo: #2f73ff;
10
+ --ref-ink: #14162c;
11
+ --ref-muted: #6b6885;
12
+ --ref-faint: #9b96b5;
13
+ --ref-line: #e6e1f3;
14
+ --ref-soft: #f5f1ff;
15
+ --ref-card: rgba(255, 255, 255, 0.92);
16
+ --ref-shadow: 0 18px 54px rgba(88, 72, 150, 0.14);
17
+ --ref-dark: #071329;
18
+ --ref-dark-2: #0d1c34;
19
+ --ref-dark-card: rgba(19, 38, 68, 0.76);
20
+ --ref-dark-line: rgba(151, 179, 231, 0.18);
21
+ }
22
+
23
+ .lattice-ref-auth,
24
+ .lattice-ref-chat,
25
+ .lattice-ref-graph {
26
+ color-scheme: light;
27
+ }
28
+
29
+ .lattice-ref-auth,
30
+ .lattice-ref-chat {
31
+ font-family: "Inter", "Pretendard", "Apple SD Gothic Neo", -apple-system, BlinkMacSystemFont, sans-serif;
32
+ }
33
+
34
+ .lattice-ref-auth {
35
+ background:
36
+ radial-gradient(circle at 74% 25%, rgba(255,255,255,0.70), transparent 16%),
37
+ radial-gradient(circle at 80% 58%, rgba(111,66,232,0.15), transparent 28%),
38
+ radial-gradient(circle at 15% 72%, rgba(111,66,232,0.13), transparent 34%),
39
+ linear-gradient(135deg, #fbfaff 0%, #f2edff 48%, #ffffff 100%) !important;
40
+ min-height: 100dvh;
41
+ /* 타이틀바(58px)를 제외한 나머지 영역의 수직 중앙에 카드 배치 */
42
+ flex-direction: column !important;
43
+ align-items: center !important;
44
+ justify-content: center !important;
45
+ /* padding-top: 타이틀바 높이만큼만 → justify-content가 나머지 공간에서 중앙 정렬 */
46
+ padding: 58px 18px clamp(72px, 8dvh, 90px) !important;
47
+ overflow: auto !important;
48
+ }
49
+
50
+ .lattice-ref-auth .login-shell {
51
+ width: min(460px, calc(100vw - 36px));
52
+ display: block;
53
+ z-index: 3;
54
+ }
55
+
56
+ .lattice-ref-auth .brand-preview {
57
+ display: none;
58
+ }
59
+
60
+ .lattice-ref-auth .card {
61
+ width: 100%;
62
+ min-height: auto;
63
+ max-height: none;
64
+ overflow: visible;
65
+ border-radius: 16px;
66
+ padding: clamp(40px, 4.6dvh, 50px) clamp(28px, 3.6vw, 40px) clamp(20px, 2.4dvh, 28px);
67
+ background: rgba(255,255,255,0.76);
68
+ border-color: rgba(111,66,232,0.12);
69
+ box-shadow: 0 20px 64px rgba(102, 82, 168, 0.20), inset 0 1px 0 rgba(255,255,255,0.86);
70
+ backdrop-filter: blur(26px);
71
+ }
72
+
73
+ .lattice-ref-auth .card::before {
74
+ display: none;
75
+ }
76
+
77
+ .auth-titlebar {
78
+ position: fixed;
79
+ inset: 0 0 auto;
80
+ height: 58px;
81
+ z-index: 4;
82
+ display: flex;
83
+ align-items: center;
84
+ justify-content: space-between;
85
+ padding: 0 22px;
86
+ color: var(--ref-ink);
87
+ background: rgba(250,248,255,0.58);
88
+ border-bottom: 1px solid rgba(111,66,232,0.08);
89
+ backdrop-filter: blur(12px);
90
+ }
91
+
92
+ .auth-window-brand {
93
+ display: inline-flex;
94
+ align-items: center;
95
+ gap: 10px;
96
+ font-size: 21px;
97
+ font-weight: 720;
98
+ }
99
+
100
+ .auth-window-brand i {
101
+ color: var(--ref-purple);
102
+ font-size: 26px;
103
+ }
104
+
105
+ .auth-window-controls {
106
+ display: inline-flex;
107
+ align-items: center;
108
+ gap: 30px;
109
+ }
110
+
111
+ .auth-window-controls span {
112
+ width: 18px;
113
+ height: 18px;
114
+ position: relative;
115
+ }
116
+
117
+ .auth-window-controls span:nth-child(1)::before {
118
+ content: '';
119
+ position: absolute;
120
+ left: 2px;
121
+ right: 2px;
122
+ top: 9px;
123
+ height: 2px;
124
+ background: #202033;
125
+ }
126
+
127
+ .auth-window-controls span:nth-child(2)::before {
128
+ content: '';
129
+ position: absolute;
130
+ inset: 2px;
131
+ border: 2px solid #202033;
132
+ border-radius: 2px;
133
+ }
134
+
135
+ .auth-window-controls span:nth-child(3)::before,
136
+ .auth-window-controls span:nth-child(3)::after {
137
+ content: '';
138
+ position: absolute;
139
+ top: 8px;
140
+ left: 1px;
141
+ width: 18px;
142
+ height: 2px;
143
+ background: #202033;
144
+ }
145
+
146
+ .auth-window-controls span:nth-child(3)::before { transform: rotate(45deg); }
147
+ .auth-window-controls span:nth-child(3)::after { transform: rotate(-45deg); }
148
+
149
+ .auth-wave {
150
+ position: fixed;
151
+ z-index: 0;
152
+ pointer-events: none;
153
+ opacity: 0.78;
154
+ filter: blur(0.2px);
155
+ }
156
+
157
+ .auth-wave::before,
158
+ .auth-wave::after {
159
+ content: '';
160
+ position: absolute;
161
+ inset: 0;
162
+ border-radius: 50% 50% 0 0;
163
+ border-top: 3px solid rgba(255,255,255,0.68);
164
+ transform: skewY(-11deg);
165
+ }
166
+
167
+ .auth-wave::after {
168
+ inset: 34px -80px -20px 40px;
169
+ border-top-color: rgba(124,92,255,0.16);
170
+ }
171
+
172
+ .auth-wave-left {
173
+ left: -130px;
174
+ bottom: -80px;
175
+ width: 780px;
176
+ height: 360px;
177
+ background: radial-gradient(ellipse at 45% 80%, rgba(111,66,232,0.23), transparent 58%);
178
+ transform: rotate(4deg);
179
+ }
180
+
181
+ .auth-wave-right {
182
+ right: -140px;
183
+ bottom: -88px;
184
+ width: 760px;
185
+ height: 340px;
186
+ background: radial-gradient(ellipse at 55% 82%, rgba(111,66,232,0.20), transparent 58%);
187
+ transform: scaleX(-1) rotate(2deg);
188
+ }
189
+
190
+ .auth-network {
191
+ position: fixed;
192
+ right: 160px;
193
+ top: 300px;
194
+ width: 430px;
195
+ height: 330px;
196
+ z-index: 0;
197
+ opacity: 0.28;
198
+ pointer-events: none;
199
+ background:
200
+ linear-gradient(32deg, transparent 0 33%, rgba(255,255,255,0.9) 33.2% 33.5%, transparent 33.7%),
201
+ linear-gradient(90deg, transparent 0 49.8%, rgba(255,255,255,0.8) 50% 50.3%, transparent 50.5%),
202
+ linear-gradient(148deg, transparent 0 38%, rgba(255,255,255,0.9) 38.2% 38.5%, transparent 38.7%);
203
+ }
204
+
205
+ .auth-network span {
206
+ position: absolute;
207
+ width: 13px;
208
+ height: 13px;
209
+ border-radius: 50%;
210
+ background: #fff;
211
+ box-shadow: 0 0 20px rgba(255,255,255,0.9);
212
+ }
213
+
214
+ .auth-network span:nth-child(1) { left: 36px; top: 82px; }
215
+ .auth-network span:nth-child(2) { left: 155px; top: 42px; width: 20px; height: 20px; }
216
+ .auth-network span:nth-child(3) { left: 294px; top: 68px; }
217
+ .auth-network span:nth-child(4) { left: 190px; top: 170px; }
218
+ .auth-network span:nth-child(5) { left: 350px; top: 168px; }
219
+ .auth-network span:nth-child(6) { left: 255px; top: 250px; width: 18px; height: 18px; }
220
+
221
+ .lattice-ref-auth .hero-logo {
222
+ display: flex;
223
+ justify-content: center;
224
+ align-items: center;
225
+ gap: clamp(10px, 1.5vw, 16px);
226
+ margin-bottom: clamp(12px, 1.8dvh, 20px);
227
+ }
228
+
229
+ .lattice-ref-auth .hero-logo-mark {
230
+ width: clamp(46px, 5.4dvh, 62px);
231
+ height: clamp(46px, 5.4dvh, 62px);
232
+ display: grid;
233
+ place-items: center;
234
+ color: var(--ref-purple);
235
+ font-size: clamp(40px, 4.8dvh, 56px);
236
+ filter: drop-shadow(0 8px 14px rgba(111,66,232,0.20));
237
+ }
238
+
239
+ .lattice-ref-auth .hero-logo-mark i {
240
+ display: none;
241
+ }
242
+
243
+ .lattice-ref-auth .hero-logo-mark::before {
244
+ content: '';
245
+ width: 86%;
246
+ height: 86%;
247
+ display: block;
248
+ background:
249
+ linear-gradient(30deg, transparent 42%, rgba(255,255,255,0.55) 42% 47%, transparent 47%),
250
+ linear-gradient(90deg, transparent 42%, rgba(255,255,255,0.48) 42% 47%, transparent 47%),
251
+ linear-gradient(150deg, transparent 42%, rgba(255,255,255,0.48) 42% 47%, transparent 47%),
252
+ conic-gradient(from 30deg, #4f7dff, #6f42e8, #8b6cff, #4f7dff);
253
+ clip-path: polygon(50% 0, 88% 20%, 88% 67%, 50% 100%, 12% 67%, 12% 20%);
254
+ border-radius: 18px;
255
+ box-shadow: inset 0 0 0 8px rgba(255,255,255,0.16), 0 14px 28px rgba(111,66,232,0.24);
256
+ }
257
+
258
+ .lattice-ref-auth .title {
259
+ margin: 0;
260
+ font-size: clamp(28px, 3vw, 40px);
261
+ line-height: 1;
262
+ letter-spacing: 0;
263
+ text-align: left;
264
+ -webkit-text-fill-color: transparent;
265
+ background: linear-gradient(90deg, #10142b 0 68%, var(--ref-purple) 69% 100%);
266
+ -webkit-background-clip: text;
267
+ background-clip: text;
268
+ }
269
+
270
+ .lattice-ref-auth .subtitle {
271
+ margin: 0 0 clamp(14px, 1.9dvh, 22px);
272
+ color: #15182f;
273
+ font-size: clamp(17px, 2vw, 24px);
274
+ font-weight: 860;
275
+ line-height: 1.25;
276
+ letter-spacing: 0;
277
+ }
278
+
279
+ .lattice-ref-auth .subtitle::first-line {
280
+ color: #15182f;
281
+ }
282
+
283
+ .lattice-ref-auth .submit,
284
+ .lattice-ref-chat .send-btn,
285
+ .lattice-ref-chat .workspace-icon,
286
+ .lattice-ref-chat .mode-icon {
287
+ background: linear-gradient(135deg, var(--ref-purple), #7b61ff) !important;
288
+ }
289
+
290
+ .lattice-ref-auth .input {
291
+ height: 100%;
292
+ margin: 0;
293
+ border: 0;
294
+ background: transparent;
295
+ box-shadow: none;
296
+ padding: 0 10px;
297
+ color: var(--ref-ink);
298
+ font-size: clamp(13px, 1.3vw, 15px);
299
+ font-weight: 650;
300
+ }
301
+
302
+ .lattice-ref-auth .input:focus {
303
+ box-shadow: none;
304
+ border: 0;
305
+ }
306
+
307
+ .auth-field {
308
+ height: clamp(40px, 4.4dvh, 46px);
309
+ display: flex;
310
+ align-items: center;
311
+ gap: 8px;
312
+ margin-bottom: clamp(8px, 1.1dvh, 12px);
313
+ padding: 0 16px;
314
+ border: 1px solid #d9d6e4;
315
+ border-radius: 8px;
316
+ background: rgba(255,255,255,0.56);
317
+ box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
318
+ color: #9695a6;
319
+ }
320
+
321
+ .auth-field:focus-within {
322
+ border-color: rgba(111,66,232,0.44);
323
+ box-shadow: 0 0 0 3px rgba(111,66,232,0.09), inset 0 1px 0 rgba(255,255,255,0.8);
324
+ }
325
+
326
+ .auth-field > i {
327
+ font-size: 19px;
328
+ }
329
+
330
+ .field-eye {
331
+ border: 0;
332
+ background: transparent;
333
+ color: #9695a6;
334
+ font-size: 18px;
335
+ cursor: pointer;
336
+ }
337
+
338
+ .lattice-ref-auth .msg {
339
+ min-height: clamp(14px, 1.5dvh, 18px);
340
+ margin: 2px 0 4px;
341
+ color: #d44f5c;
342
+ }
343
+
344
+ .lattice-ref-auth .submit,
345
+ .lattice-ref-auth .register-cta {
346
+ height: clamp(42px, 4.6dvh, 48px);
347
+ border-radius: 8px;
348
+ font-size: clamp(14px, 1.5vw, 17px);
349
+ }
350
+
351
+ .lattice-ref-auth .submit {
352
+ margin-top: 0;
353
+ box-shadow: 0 10px 24px rgba(111,66,232,0.24);
354
+ }
355
+
356
+ .lattice-ref-auth .register-cta {
357
+ width: 100%;
358
+ margin-top: clamp(8px, 1.1dvh, 12px);
359
+ border: 2px solid rgba(111,66,232,0.56);
360
+ color: var(--ref-purple);
361
+ background: rgba(255,255,255,0.28);
362
+ font-family: inherit;
363
+ font-weight: 850;
364
+ cursor: pointer;
365
+ }
366
+
367
+ .lattice-ref-auth .sso-divider {
368
+ margin: clamp(12px, 1.5dvh, 18px) 0 clamp(8px, 1dvh, 10px);
369
+ color: #636276;
370
+ font-size: clamp(12px, 1.2vw, 14px);
371
+ font-weight: 700;
372
+ }
373
+
374
+ .lattice-ref-auth .sso-divider::before,
375
+ .lattice-ref-auth .sso-divider::after {
376
+ background: #d9d6e4;
377
+ }
378
+
379
+ .lattice-ref-auth .sso-btn {
380
+ height: clamp(40px, 4.5dvh, 48px);
381
+ margin-bottom: clamp(8px, 1.1dvh, 12px);
382
+ justify-content: flex-start;
383
+ gap: clamp(10px, 1.4vw, 16px);
384
+ padding: 0 clamp(18px, 2.8vw, 28px);
385
+ border-radius: 8px;
386
+ border-color: #d9d6e4;
387
+ background: rgba(255,255,255,0.78);
388
+ color: #15182f;
389
+ font-size: clamp(13px, 1.4vw, 16px);
390
+ font-weight: 850;
391
+ box-shadow: 0 6px 16px rgba(88,72,150,0.08);
392
+ }
393
+
394
+ .ms-logo {
395
+ width: clamp(22px, 2.5dvh, 26px);
396
+ height: clamp(22px, 2.5dvh, 26px);
397
+ display: grid;
398
+ grid-template-columns: 1fr 1fr;
399
+ gap: 3px;
400
+ flex: 0 0 auto;
401
+ }
402
+
403
+ .ms-logo b:nth-child(1) { background: #f35325; }
404
+ .ms-logo b:nth-child(2) { background: #81bc06; }
405
+ .ms-logo b:nth-child(3) { background: #05a6f0; }
406
+ .ms-logo b:nth-child(4) { background: #ffba08; }
407
+
408
+ .okta-logo {
409
+ width: clamp(22px, 2.5dvh, 28px);
410
+ height: clamp(22px, 2.5dvh, 28px);
411
+ border-radius: 50%;
412
+ flex: 0 0 auto;
413
+ background:
414
+ conic-gradient(from 0deg, #111 0 10%, transparent 10% 17%, #111 17% 27%, transparent 27% 34%, #111 34% 44%, transparent 44% 51%, #111 51% 61%, transparent 61% 68%, #111 68% 78%, transparent 78% 85%, #111 85% 95%, transparent 95% 100%);
415
+ }
416
+
417
+ .local-start {
418
+ display: flex;
419
+ align-items: center;
420
+ justify-content: center;
421
+ gap: 12px;
422
+ width: 100%;
423
+ margin-top: clamp(10px, 1.4dvh, 16px);
424
+ border: 0;
425
+ background: transparent;
426
+ color: var(--ref-purple);
427
+ font-family: inherit;
428
+ font-size: clamp(13px, 1.3vw, 16px);
429
+ font-weight: 850;
430
+ cursor: pointer;
431
+ }
432
+
433
+ .local-start i {
434
+ font-size: clamp(17px, 1.9dvh, 22px);
435
+ }
436
+
437
+ .lattice-ref-auth .lang-wrap {
438
+ position: absolute;
439
+ top: 12px;
440
+ right: 12px;
441
+ z-index: 6;
442
+ }
443
+
444
+ .lattice-ref-auth .lang-btn {
445
+ height: auto;
446
+ border: 1px solid rgba(111,66,232,0.38);
447
+ border-radius: 12px;
448
+ padding: 4px 9px;
449
+ color: #15182f;
450
+ background: rgba(255,255,255,0.88);
451
+ font-size: 11px;
452
+ font-weight: 700;
453
+ box-shadow: 0 1px 5px rgba(111,66,232,0.08);
454
+ }
455
+
456
+ .lattice-ref-auth .lang-menu {
457
+ background: rgba(255,255,255,0.96);
458
+ min-width: 110px;
459
+ }
460
+
461
+ .lattice-ref-auth .lang-opt {
462
+ font-size: 11px;
463
+ padding: 5px 8px;
464
+ }
465
+
466
+
467
+ .auth-footer {
468
+ position: fixed;
469
+ left: 48px;
470
+ bottom: 28px;
471
+ z-index: 5;
472
+ display: flex;
473
+ align-items: center;
474
+ gap: 34px;
475
+ }
476
+
477
+ .auth-footer button {
478
+ display: inline-flex;
479
+ align-items: center;
480
+ gap: 10px;
481
+ height: 42px !important;
482
+ border-radius: 11px !important;
483
+ border: 1px solid rgba(111,66,232,0.12) !important;
484
+ font-size: 16px !important;
485
+ color: #4f5068 !important;
486
+ box-shadow: 0 8px 22px rgba(88,72,150,0.06);
487
+ cursor: pointer;
488
+ }
489
+
490
+ .auth-footer a {
491
+ color: #57566f;
492
+ text-decoration: none;
493
+ font-size: 16px;
494
+ font-weight: 720;
495
+ }
496
+
497
+ .lattice-ref-auth #register-section .hero-logo,
498
+ .lattice-ref-auth #register-section .logo {
499
+ display: none;
500
+ }
501
+
502
+ .lattice-ref-auth #register-section .title {
503
+ text-align: center;
504
+ font-size: 38px;
505
+ margin-bottom: 10px;
506
+ display: block;
507
+ }
508
+
509
+ .lattice-ref-auth #register-section .subtitle {
510
+ font-size: 16px;
511
+ text-align: center;
512
+ color: var(--ref-muted);
513
+ letter-spacing: 0;
514
+ }
515
+
516
+ .lattice-ref-auth #register-section .input {
517
+ height: 48px;
518
+ margin-bottom: 10px;
519
+ border: 1px solid #d9d6e4;
520
+ background: rgba(255,255,255,0.62);
521
+ border-radius: 9px;
522
+ padding: 0 14px;
523
+ font-size: 15px;
524
+ }
525
+
526
+ .lattice-ref-auth #register-section .submit {
527
+ height: 54px;
528
+ font-size: 17px;
529
+ }
530
+
531
+ @media (max-width: 1100px) {
532
+ .auth-window-controls {
533
+ display: none;
534
+ }
535
+
536
+ .auth-network {
537
+ display: none;
538
+ }
539
+ }
540
+
541
+ @media (max-height: 760px) {
542
+ .lattice-ref-auth {
543
+ padding-top: 58px !important;
544
+ padding-bottom: 16px !important;
545
+ }
546
+
547
+ .auth-footer {
548
+ display: none;
549
+ }
550
+
551
+ .lattice-ref-auth .card {
552
+ padding: 38px 30px 16px;
553
+ }
554
+
555
+ .lattice-ref-auth .hero-logo {
556
+ margin-bottom: 8px;
557
+ }
558
+
559
+ .lattice-ref-auth .hero-logo-mark {
560
+ width: 40px;
561
+ height: 40px;
562
+ font-size: 36px;
563
+ }
564
+
565
+ .lattice-ref-auth .title {
566
+ font-size: 26px;
567
+ }
568
+
569
+ .lattice-ref-auth .subtitle {
570
+ margin-bottom: 12px;
571
+ font-size: 16px;
572
+ line-height: 1.2;
573
+ }
574
+
575
+ .auth-field,
576
+ .lattice-ref-auth .submit,
577
+ .lattice-ref-auth .register-cta,
578
+ .lattice-ref-auth .sso-btn {
579
+ height: 38px;
580
+ }
581
+
582
+ .auth-field {
583
+ margin-bottom: 7px;
584
+ }
585
+
586
+ .lattice-ref-auth .submit,
587
+ .lattice-ref-auth .register-cta,
588
+ .lattice-ref-auth .sso-btn,
589
+ .local-start {
590
+ font-size: 13px;
591
+ }
592
+
593
+ .lattice-ref-auth .sso-divider {
594
+ margin: 10px 0 6px;
595
+ font-size: 12px;
596
+ }
597
+
598
+ .lattice-ref-auth .sso-btn {
599
+ margin-bottom: 7px;
600
+ }
601
+
602
+ .local-start {
603
+ margin-top: 8px;
604
+ }
605
+ }
606
+
607
+ @media (max-width: 760px) {
608
+ .auth-titlebar,
609
+ .auth-footer,
610
+ .auth-wave,
611
+ .auth-network {
612
+ display: none;
613
+ }
614
+
615
+ .lattice-ref-auth {
616
+ padding: 18px !important;
617
+ }
618
+
619
+ .lattice-ref-auth .card {
620
+ min-height: auto;
621
+ max-height: none;
622
+ padding: 28px 22px;
623
+ }
624
+
625
+ .lattice-ref-auth .hero-logo {
626
+ gap: 12px;
627
+ }
628
+
629
+ .lattice-ref-auth .hero-logo-mark {
630
+ width: 58px;
631
+ height: 58px;
632
+ font-size: 52px;
633
+ }
634
+
635
+ .lattice-ref-auth .title {
636
+ font-size: 34px;
637
+ }
638
+
639
+ .lattice-ref-auth .subtitle {
640
+ font-size: 26px;
641
+ }
642
+
643
+
644
+ }
645
+
646
+ /* Shared PPT rail */
647
+ .reference-rail {
648
+ background: rgba(255,255,255,0.86);
649
+ border-right: 1px solid var(--ref-line);
650
+ color: var(--ref-ink);
651
+ min-height: 100vh;
652
+ padding: 26px 18px;
653
+ display: flex;
654
+ flex-direction: column;
655
+ gap: 24px;
656
+ box-shadow: 12px 0 48px rgba(88,72,150,0.08);
657
+ }
658
+
659
+ .rail-brand {
660
+ display: flex;
661
+ align-items: center;
662
+ gap: 12px;
663
+ font-size: 23px;
664
+ font-weight: 850;
665
+ letter-spacing: -0.04em;
666
+ }
667
+
668
+ .rail-brand i {
669
+ color: var(--ref-purple);
670
+ font-size: 30px;
671
+ }
672
+
673
+ .rail-brand span {
674
+ display: block;
675
+ font-size: 12px;
676
+ color: var(--ref-purple-2);
677
+ letter-spacing: 0;
678
+ }
679
+
680
+ .reference-rail nav {
681
+ display: flex;
682
+ flex-direction: column;
683
+ gap: 9px;
684
+ }
685
+
686
+ .reference-rail a,
687
+ .reference-nav-item {
688
+ width: 100%;
689
+ border: 0;
690
+ text-decoration: none;
691
+ display: flex;
692
+ align-items: center;
693
+ gap: 12px;
694
+ border-radius: 10px;
695
+ padding: 13px 16px;
696
+ color: #4f5068;
697
+ font: inherit;
698
+ font-size: 15px;
699
+ font-weight: 700;
700
+ background: transparent;
701
+ cursor: pointer;
702
+ transition: 160ms ease;
703
+ }
704
+
705
+ .reference-rail a.active,
706
+ .reference-rail a:hover,
707
+ .reference-nav-item.active,
708
+ .reference-nav-item:hover {
709
+ color: var(--ref-purple);
710
+ background: linear-gradient(90deg, rgba(111,66,232,0.14), rgba(111,66,232,0.05));
711
+ }
712
+
713
+ .reference-rail i,
714
+ .reference-nav-item i {
715
+ font-size: 20px;
716
+ }
717
+
718
+ .rail-project {
719
+ margin-top: auto;
720
+ border: 1px solid var(--ref-line);
721
+ border-radius: 12px;
722
+ padding: 15px 16px;
723
+ background: rgba(255,255,255,0.70);
724
+ color: var(--ref-muted);
725
+ }
726
+
727
+ .rail-project span {
728
+ display: block;
729
+ font-size: 12px;
730
+ margin-bottom: 4px;
731
+ }
732
+
733
+ .rail-project strong {
734
+ display: block;
735
+ color: var(--ref-ink);
736
+ font-size: 14px;
737
+ }
738
+
739
+ /* Chat and home dashboard */
740
+ .lattice-ref-chat {
741
+ --bg: #fbfaff;
742
+ --surface: #ffffff;
743
+ --surface-2: #f7f3ff;
744
+ --surface-3: #efe9ff;
745
+ --accent: var(--ref-purple);
746
+ --accent-3: var(--ref-purple-2);
747
+ --text: var(--ref-ink);
748
+ --muted: var(--ref-muted);
749
+ --faint: var(--ref-faint);
750
+ --border: var(--ref-line);
751
+ --shadow: var(--ref-shadow);
752
+ background:
753
+ radial-gradient(circle at 82% 12%, rgba(111,66,232,0.10), transparent 30%),
754
+ linear-gradient(180deg, #ffffff, #fbfaff 52%, #f7f4ff) !important;
755
+ }
756
+
757
+ .lattice-ref-chat .sidebar {
758
+ width: 280px;
759
+ min-width: 280px;
760
+ background: rgba(255,255,255,0.90) !important;
761
+ border-right: 1px solid var(--ref-line) !important;
762
+ box-shadow: 12px 0 46px rgba(88,72,150,0.08) !important;
763
+ }
764
+
765
+ .lattice-ref-chat .sidebar-header {
766
+ padding: 30px 24px 18px;
767
+ border-bottom: 0 !important;
768
+ }
769
+
770
+ .lattice-ref-chat .logo-box {
771
+ width: 42px;
772
+ height: 42px;
773
+ border-radius: 13px;
774
+ }
775
+
776
+ .lattice-ref-chat .brand-title {
777
+ color: var(--ref-ink) !important;
778
+ font-size: 23px;
779
+ letter-spacing: -0.04em !important;
780
+ }
781
+
782
+ .lattice-ref-chat .brand-subtitle {
783
+ display: inline-flex;
784
+ margin-top: 6px;
785
+ padding: 3px 10px;
786
+ border-radius: 999px;
787
+ color: var(--ref-purple) !important;
788
+ background: rgba(111,66,232,0.10);
789
+ font-size: 12px;
790
+ font-weight: 700;
791
+ }
792
+
793
+ .lattice-ref-chat .user-strip {
794
+ margin: 0 18px 16px;
795
+ border: 1px solid var(--ref-line) !important;
796
+ border-radius: 14px;
797
+ background: rgba(255,255,255,0.72);
798
+ order: 20;
799
+ }
800
+
801
+ .lattice-ref-chat .reference-side-nav {
802
+ padding: 12px 18px;
803
+ }
804
+
805
+ .lattice-ref-chat .sidebar-search,
806
+ .lattice-ref-chat .sidebar-primary-actions {
807
+ margin: 0 18px;
808
+ padding-left: 0;
809
+ padding-right: 0;
810
+ }
811
+
812
+ .lattice-ref-chat .history-container {
813
+ padding: 10px 18px;
814
+ }
815
+
816
+ .lattice-ref-chat .sidebar-footer {
817
+ padding: 14px 18px 18px;
818
+ }
819
+
820
+ .lattice-ref-chat .new-chat-btn,
821
+ .lattice-ref-chat .status-btn,
822
+ .lattice-ref-chat .setup-wizard-sidebar-btn,
823
+ .lattice-ref-chat .admin-btn,
824
+ .lattice-ref-chat .file-type-btn,
825
+ .lattice-ref-chat .logout-btn,
826
+ .lattice-ref-chat .status-pill,
827
+ .lattice-ref-chat .model-badge {
828
+ border: 1px solid var(--ref-line) !important;
829
+ border-radius: 10px !important;
830
+ background: rgba(255,255,255,0.82) !important;
831
+ color: var(--ref-ink) !important;
832
+ }
833
+
834
+ .lattice-ref-chat .new-chat-btn:first-child {
835
+ border-color: rgba(111,66,232,0.28) !important;
836
+ color: var(--ref-purple) !important;
837
+ }
838
+
839
+ .lattice-ref-chat .chat-header {
840
+ min-height: 88px;
841
+ padding: 18px 28px;
842
+ background: rgba(255,255,255,0.84) !important;
843
+ border-bottom: 1px solid var(--ref-line) !important;
844
+ box-shadow: none !important;
845
+ }
846
+
847
+ .lattice-ref-chat .messages-viewport {
848
+ padding: 30px 38px 20px;
849
+ }
850
+
851
+ .lattice-ref-chat .ops-strip {
852
+ display: none;
853
+ }
854
+
855
+ .lattice-ref-chat .empty-state {
856
+ width: min(100%, 1320px);
857
+ max-width: none;
858
+ margin: 0 auto;
859
+ text-align: left;
860
+ }
861
+
862
+ .reference-home {
863
+ display: flex;
864
+ flex-direction: column;
865
+ gap: 22px;
866
+ }
867
+
868
+ .reference-home-head h1 {
869
+ margin: 0;
870
+ color: var(--ref-ink);
871
+ font-size: clamp(30px, 3vw, 40px);
872
+ font-weight: 860;
873
+ letter-spacing: -0.04em;
874
+ }
875
+
876
+ .reference-home-head p {
877
+ margin: 8px 0 0;
878
+ color: var(--ref-muted);
879
+ font-size: 15px;
880
+ }
881
+
882
+ .reference-card-grid {
883
+ display: grid;
884
+ grid-template-columns: repeat(3, minmax(0, 1fr));
885
+ gap: 20px;
886
+ }
887
+
888
+ .reference-dash-card,
889
+ .reference-lists article {
890
+ border: 1px solid var(--ref-line);
891
+ border-radius: 18px;
892
+ background: var(--ref-card);
893
+ box-shadow: var(--ref-shadow);
894
+ }
895
+
896
+ .reference-dash-card {
897
+ min-height: 260px;
898
+ padding: 22px 24px;
899
+ }
900
+
901
+ .reference-card-icon {
902
+ width: 56px;
903
+ height: 56px;
904
+ border-radius: 15px;
905
+ display: grid;
906
+ place-items: center;
907
+ margin-bottom: 18px;
908
+ color: var(--ref-purple);
909
+ background: linear-gradient(135deg, rgba(111,66,232,0.13), rgba(111,66,232,0.06));
910
+ font-size: 28px;
911
+ }
912
+
913
+ .reference-dash-card h3 {
914
+ margin: 0 0 20px;
915
+ color: var(--ref-ink);
916
+ font-size: 22px;
917
+ }
918
+
919
+ .reference-dash-card p {
920
+ color: var(--ref-muted);
921
+ margin: 0 0 14px;
922
+ }
923
+
924
+ .green-dot {
925
+ display: inline-block;
926
+ width: 11px;
927
+ height: 11px;
928
+ border-radius: 50%;
929
+ background: #28c66f;
930
+ box-shadow: 0 0 0 8px rgba(40,198,111,0.12);
931
+ margin-right: 10px;
932
+ }
933
+
934
+ .reference-stat-row {
935
+ display: flex;
936
+ justify-content: space-between;
937
+ align-items: center;
938
+ color: var(--ref-muted);
939
+ margin: 12px 0;
940
+ }
941
+
942
+ .reference-stat-row strong,
943
+ .reference-big-number {
944
+ color: var(--ref-purple);
945
+ font-size: 22px;
946
+ }
947
+
948
+ .reference-big-number {
949
+ font-size: 34px;
950
+ font-weight: 850;
951
+ }
952
+
953
+ .reference-progress {
954
+ height: 10px;
955
+ border-radius: 999px;
956
+ background: #ebe7f4;
957
+ overflow: hidden;
958
+ margin: 16px 0 26px;
959
+ }
960
+
961
+ .reference-progress span {
962
+ display: block;
963
+ height: 100%;
964
+ border-radius: inherit;
965
+ background: linear-gradient(90deg, var(--ref-purple), var(--ref-purple-2));
966
+ }
967
+
968
+ .reference-dash-card button,
969
+ .reference-lists button {
970
+ width: 100%;
971
+ border: 1px solid rgba(111,66,232,0.35);
972
+ border-radius: 10px;
973
+ padding: 12px 14px;
974
+ color: var(--ref-purple);
975
+ background: #fff;
976
+ font: inherit;
977
+ font-weight: 800;
978
+ cursor: pointer;
979
+ }
980
+
981
+ .reference-lists {
982
+ display: grid;
983
+ grid-template-columns: 1fr 1.1fr;
984
+ gap: 20px;
985
+ }
986
+
987
+ .reference-lists article {
988
+ padding: 0 22px 12px;
989
+ }
990
+
991
+ .reference-lists header {
992
+ height: 58px;
993
+ display: flex;
994
+ align-items: center;
995
+ gap: 10px;
996
+ border-bottom: 1px solid var(--ref-line);
997
+ color: var(--ref-ink);
998
+ font-weight: 850;
999
+ }
1000
+
1001
+ .reference-lists header button {
1002
+ margin-left: auto;
1003
+ width: auto;
1004
+ border: 0;
1005
+ padding: 0;
1006
+ color: var(--ref-purple);
1007
+ background: transparent;
1008
+ }
1009
+
1010
+ .reference-lists p {
1011
+ display: flex;
1012
+ justify-content: space-between;
1013
+ gap: 18px;
1014
+ margin: 0;
1015
+ padding: 15px 0;
1016
+ border-bottom: 1px solid #f0ecf7;
1017
+ color: var(--ref-ink);
1018
+ }
1019
+
1020
+ .reference-lists p span {
1021
+ color: var(--ref-faint);
1022
+ white-space: nowrap;
1023
+ }
1024
+
1025
+ .lattice-ref-chat .empty-grid {
1026
+ display: flex;
1027
+ justify-content: flex-start;
1028
+ gap: 10px;
1029
+ }
1030
+
1031
+ .lattice-ref-chat .empty-chip {
1032
+ border-radius: 999px;
1033
+ padding: 12px 16px;
1034
+ box-shadow: none !important;
1035
+ }
1036
+
1037
+ .lattice-ref-chat .input-area {
1038
+ background: linear-gradient(0deg, rgba(251,250,255,0.98), rgba(251,250,255,0.74), transparent) !important;
1039
+ }
1040
+
1041
+ .lattice-ref-chat .input-box {
1042
+ max-width: 1120px;
1043
+ border-radius: 18px;
1044
+ background: #fff !important;
1045
+ border-color: #d8d2e8 !important;
1046
+ box-shadow: 0 14px 36px rgba(88,72,150,0.12) !important;
1047
+ }
1048
+
1049
+ .lattice-ref-chat .user .bubble {
1050
+ background: linear-gradient(135deg, var(--ref-purple), #6536d9) !important;
1051
+ border-radius: 16px 16px 4px 16px;
1052
+ }
1053
+
1054
+ .lattice-ref-chat .ai .bubble {
1055
+ background: #fff !important;
1056
+ color: var(--ref-ink) !important;
1057
+ border-color: var(--ref-line) !important;
1058
+ border-radius: 16px 16px 16px 4px;
1059
+ }
1060
+
1061
+ .lattice-ref-chat .workspace-modal,
1062
+ .lattice-ref-chat .mode-modal {
1063
+ border-radius: 22px;
1064
+ }
1065
+
1066
+ /* Graph page: slide 6 light graph workspace */
1067
+ .lattice-ref-graph {
1068
+ margin: 0;
1069
+ display: grid;
1070
+ grid-template-columns: 264px minmax(0, 1fr);
1071
+ min-height: 100vh;
1072
+ overflow: hidden;
1073
+ background: #fbfaff;
1074
+ color: var(--ref-ink);
1075
+ font-family: "Inter", "Pretendard", "Apple SD Gothic Neo", -apple-system, BlinkMacSystemFont, sans-serif;
1076
+ }
1077
+
1078
+ .lattice-ref-graph .app {
1079
+ height: 100vh;
1080
+ grid-template-columns: minmax(0, 1fr) 320px;
1081
+ background: #fbfaff;
1082
+ }
1083
+
1084
+ .lattice-ref-graph .stage {
1085
+ border-right: 0;
1086
+ background:
1087
+ radial-gradient(circle, rgba(111,66,232,0.14) 1px, transparent 1.8px),
1088
+ linear-gradient(180deg, #fff 0%, #fbfaff 100%);
1089
+ background-size: 28px 28px, 100% 100%;
1090
+ margin: 98px 14px 40px 24px;
1091
+ border: 1px solid var(--ref-line);
1092
+ border-radius: 14px;
1093
+ overflow: hidden;
1094
+ }
1095
+
1096
+ .lattice-ref-graph .stage::before {
1097
+ content: "지식 그래프";
1098
+ position: fixed;
1099
+ top: 34px;
1100
+ left: 324px;
1101
+ color: var(--ref-ink);
1102
+ font-size: 31px;
1103
+ font-weight: 860;
1104
+ letter-spacing: -0.04em;
1105
+ }
1106
+
1107
+ .lattice-ref-graph .stage::after {
1108
+ content: "\ea2e";
1109
+ font-family: "tabler-icons";
1110
+ position: fixed;
1111
+ top: 30px;
1112
+ left: 288px;
1113
+ width: 40px;
1114
+ height: 40px;
1115
+ display: grid;
1116
+ place-items: center;
1117
+ border-radius: 10px;
1118
+ color: var(--ref-purple);
1119
+ background: rgba(111,66,232,0.10);
1120
+ font-size: 22px;
1121
+ }
1122
+
1123
+ .lattice-ref-graph .search-shell {
1124
+ top: -72px;
1125
+ left: auto;
1126
+ right: 250px;
1127
+ width: min(520px, 42vw);
1128
+ border-radius: 10px;
1129
+ background: #fff;
1130
+ box-shadow: none;
1131
+ }
1132
+
1133
+ .lattice-ref-graph .search-head {
1134
+ display: none;
1135
+ }
1136
+
1137
+ .lattice-ref-graph .search-input-wrap {
1138
+ padding: 0;
1139
+ }
1140
+
1141
+ .lattice-ref-graph .search-input {
1142
+ height: 48px;
1143
+ background: #fff;
1144
+ color: var(--ref-ink);
1145
+ border-color: var(--ref-line);
1146
+ }
1147
+
1148
+ .lattice-ref-graph #clear-search-btn {
1149
+ display: none;
1150
+ }
1151
+
1152
+ .lattice-ref-graph .search-results {
1153
+ display: none;
1154
+ }
1155
+
1156
+ .lattice-ref-graph .toolbar {
1157
+ top: auto;
1158
+ bottom: 12px;
1159
+ left: 50%;
1160
+ right: auto;
1161
+ transform: translateX(-50%);
1162
+ background: #fff;
1163
+ border-color: var(--ref-line);
1164
+ box-shadow: var(--ref-shadow);
1165
+ border-radius: 12px;
1166
+ }
1167
+
1168
+ .lattice-ref-graph .tb-btn {
1169
+ background: #fff;
1170
+ color: var(--ref-ink);
1171
+ border-color: var(--ref-line);
1172
+ }
1173
+
1174
+ .lattice-ref-graph aside:not(.reference-rail) {
1175
+ margin: 98px 20px 40px 0;
1176
+ border: 1px solid var(--ref-line);
1177
+ border-radius: 14px;
1178
+ background: #fff;
1179
+ color: var(--ref-ink);
1180
+ box-shadow: var(--ref-shadow);
1181
+ }
1182
+
1183
+ .lattice-ref-graph .sidebar-head,
1184
+ .lattice-ref-graph .section {
1185
+ border-color: var(--ref-line);
1186
+ }
1187
+
1188
+ .lattice-ref-graph .eyebrow {
1189
+ color: var(--ref-purple);
1190
+ }
1191
+
1192
+ .lattice-ref-graph .sidebar-sub,
1193
+ .lattice-ref-graph .filter-count,
1194
+ .lattice-ref-graph .legend-meta,
1195
+ .lattice-ref-graph .detail-summary,
1196
+ .lattice-ref-graph .empty-hint {
1197
+ color: var(--ref-muted);
1198
+ }
1199
+
1200
+ .lattice-ref-graph .stat,
1201
+ .lattice-ref-graph .metric-card,
1202
+ .lattice-ref-graph .meta-block,
1203
+ .lattice-ref-graph .search-item {
1204
+ background: #fbfaff;
1205
+ border-color: var(--ref-line);
1206
+ }
1207
+
1208
+ .lattice-ref-graph #tooltip {
1209
+ background: #fff;
1210
+ color: var(--ref-ink);
1211
+ border-color: var(--ref-line);
1212
+ }
1213
+
1214
+ /* Admin page: slide 12/13 dark security dashboard */
1215
+ .lattice-ref-admin {
1216
+ margin: 0;
1217
+ display: grid;
1218
+ grid-template-columns: 264px minmax(0, 1fr);
1219
+ min-height: 100vh;
1220
+ overflow: hidden;
1221
+ background:
1222
+ radial-gradient(circle at 74% 18%, rgba(111,66,232,0.18), transparent 34%),
1223
+ linear-gradient(135deg, #071329 0%, #0a1930 55%, #071225 100%) !important;
1224
+ color: #f7fbff;
1225
+ }
1226
+
1227
+ .lattice-ref-admin::before {
1228
+ display: none;
1229
+ }
1230
+
1231
+ .lattice-ref-admin .admin-rail {
1232
+ background: linear-gradient(180deg, #07152b, #08172e) !important;
1233
+ border-right-color: rgba(151,179,231,0.18);
1234
+ color: #eef5ff;
1235
+ box-shadow: none;
1236
+ }
1237
+
1238
+ .lattice-ref-admin .admin-rail .rail-brand {
1239
+ align-items: flex-start;
1240
+ flex-direction: column;
1241
+ gap: 4px;
1242
+ font-size: 25px;
1243
+ color: #fff;
1244
+ }
1245
+
1246
+ .lattice-ref-admin .admin-rail .rail-brand i {
1247
+ font-size: 34px;
1248
+ }
1249
+
1250
+ .lattice-ref-admin .admin-rail a {
1251
+ color: #b9c7dc;
1252
+ }
1253
+
1254
+ .lattice-ref-admin .admin-rail a.active,
1255
+ .lattice-ref-admin .admin-rail a:hover {
1256
+ background: linear-gradient(90deg, rgba(111,66,232,0.55), rgba(111,66,232,0.22));
1257
+ color: #fff;
1258
+ }
1259
+
1260
+ .lattice-ref-admin .admin-rail .rail-project {
1261
+ background: transparent;
1262
+ border-color: rgba(151,179,231,0.18);
1263
+ }
1264
+
1265
+ .lattice-ref-admin .admin-rail .rail-project strong {
1266
+ color: #fff;
1267
+ }
1268
+
1269
+ .lattice-ref-admin .page {
1270
+ min-height: 100vh;
1271
+ overflow-y: auto;
1272
+ }
1273
+
1274
+ .lattice-ref-admin .topbar {
1275
+ height: 96px;
1276
+ background: transparent !important;
1277
+ border-bottom: 0 !important;
1278
+ padding: 22px 34px 8px;
1279
+ position: sticky;
1280
+ }
1281
+
1282
+ .lattice-ref-admin .brand-mark {
1283
+ display: none;
1284
+ }
1285
+
1286
+ .lattice-ref-admin .brand h1 {
1287
+ font-size: 36px;
1288
+ letter-spacing: -0.05em;
1289
+ }
1290
+
1291
+ .lattice-ref-admin .brand p {
1292
+ color: #aebbd1;
1293
+ font-size: 15px;
1294
+ }
1295
+
1296
+ .lattice-ref-admin .top-actions .btn {
1297
+ background: rgba(11,27,51,0.84);
1298
+ border-color: rgba(151,179,231,0.20);
1299
+ color: #eaf2ff;
1300
+ }
1301
+
1302
+ .lattice-ref-admin #admin-lang-btn {
1303
+ min-width: 180px;
1304
+ justify-content: center;
1305
+ border-color: var(--ref-purple);
1306
+ box-shadow: 0 0 0 1px rgba(111,66,232,0.28);
1307
+ }
1308
+
1309
+ .lattice-ref-admin .content {
1310
+ width: min(1500px, calc(100vw - 316px));
1311
+ padding: 8px 34px 28px;
1312
+ gap: 18px;
1313
+ }
1314
+
1315
+ .lattice-ref-admin .hero {
1316
+ display: none;
1317
+ }
1318
+
1319
+ .lattice-ref-admin .summary-grid {
1320
+ grid-template-columns: repeat(4, minmax(0, 1fr));
1321
+ gap: 16px;
1322
+ }
1323
+
1324
+ .lattice-ref-admin .summary-card,
1325
+ .lattice-ref-admin .panel,
1326
+ .lattice-ref-admin .subpanel,
1327
+ .lattice-ref-admin .session-card,
1328
+ .lattice-ref-admin .table-wrap,
1329
+ .lattice-ref-admin .audit-metric {
1330
+ background: var(--ref-dark-card) !important;
1331
+ border-color: var(--ref-dark-line) !important;
1332
+ box-shadow: none !important;
1333
+ color: #eef5ff;
1334
+ border-radius: 12px;
1335
+ }
1336
+
1337
+ .lattice-ref-admin .summary-card {
1338
+ min-height: 118px;
1339
+ padding: 22px 22px 18px 112px;
1340
+ position: relative;
1341
+ }
1342
+
1343
+ .lattice-ref-admin .summary-card::before {
1344
+ content: "\ea02";
1345
+ font-family: "tabler-icons";
1346
+ position: absolute;
1347
+ left: 24px;
1348
+ top: 24px;
1349
+ width: 64px;
1350
+ height: 64px;
1351
+ display: grid;
1352
+ place-items: center;
1353
+ border-radius: 12px;
1354
+ color: #fff;
1355
+ background: linear-gradient(135deg, #6f42e8, #5332b8);
1356
+ font-size: 30px;
1357
+ }
1358
+
1359
+ .lattice-ref-admin .summary-card:nth-child(2)::before { content: "\ea9a"; }
1360
+ .lattice-ref-admin .summary-card:nth-child(3)::before { content: "\eaa4"; }
1361
+ .lattice-ref-admin .summary-card:nth-child(4)::before {
1362
+ content: "\eadd";
1363
+ background: linear-gradient(135deg, #0d8f72, #116b6d);
1364
+ }
1365
+
1366
+ .lattice-ref-admin .summary-card .label,
1367
+ .lattice-ref-admin .panel-header p,
1368
+ .lattice-ref-admin .summary-card .meta,
1369
+ .lattice-ref-admin td,
1370
+ .lattice-ref-admin th {
1371
+ color: #b6c4d9 !important;
1372
+ }
1373
+
1374
+ .lattice-ref-admin .summary-card .value {
1375
+ color: #fff;
1376
+ font-size: 34px;
1377
+ }
1378
+
1379
+ .lattice-ref-admin .panel-header {
1380
+ border-bottom-color: var(--ref-dark-line);
1381
+ }
1382
+
1383
+ .lattice-ref-admin .panel-header h3,
1384
+ .lattice-ref-admin .subpanel h4 {
1385
+ color: #fff;
1386
+ }
1387
+
1388
+ .lattice-ref-admin table {
1389
+ color: #eaf2ff;
1390
+ }
1391
+
1392
+ .lattice-ref-admin tr,
1393
+ .lattice-ref-admin th,
1394
+ .lattice-ref-admin td {
1395
+ border-color: rgba(151,179,231,0.13) !important;
1396
+ }
1397
+
1398
+ .lattice-ref-admin input,
1399
+ .lattice-ref-admin textarea,
1400
+ .lattice-ref-admin select {
1401
+ background: rgba(7,19,41,0.72) !important;
1402
+ border-color: rgba(151,179,231,0.18) !important;
1403
+ color: #eef5ff !important;
1404
+ }
1405
+
1406
+ @media (max-width: 980px) {
1407
+ .lattice-ref-chat .reference-card-grid,
1408
+ .reference-lists {
1409
+ grid-template-columns: 1fr;
1410
+ }
1411
+
1412
+ .lattice-ref-graph,
1413
+ .lattice-ref-admin {
1414
+ display: block;
1415
+ overflow: auto;
1416
+ }
1417
+
1418
+ .reference-rail {
1419
+ min-height: auto;
1420
+ }
1421
+ }