@industry-theme/xterm-terminal-panel 0.5.6 → 0.5.7

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.
package/dist/index.css CHANGED
@@ -166,3 +166,1653 @@
166
166
  .terminal-working-overlay.closing {
167
167
  animation: blinds-up .3s ease-in forwards;
168
168
  }
169
+
170
+ /* node_modules/@principal-ade/panels/dist/panels.css */
171
+ .animated-resizable-layout {
172
+ position: relative;
173
+ background-color: var(--panel-background);
174
+ width: 100%;
175
+ height: 100%;
176
+ }
177
+
178
+ .hybrid-panel {
179
+ overflow: auto;
180
+ background-color: var(--panel-background);
181
+ height: 100%;
182
+ }
183
+
184
+ .resize-handle {
185
+ background-color: var(--panel-handle);
186
+ display: flex;
187
+ cursor: col-resize;
188
+ position: relative;
189
+ justify-content: center;
190
+ align-items: center;
191
+ width: 8px;
192
+ transition: background-color .2s, opacity .3s, width .3s;
193
+ }
194
+
195
+ .resize-handle.collapsed {
196
+ opacity: 0;
197
+ pointer-events: none;
198
+ }
199
+
200
+ .resize-handle:hover {
201
+ background-color: var(--panel-handle-hover);
202
+ }
203
+
204
+ .resize-handle:active {
205
+ background-color: var(--panel-handle-active);
206
+ }
207
+
208
+ .handle-bar {
209
+ display: flex;
210
+ position: relative;
211
+ justify-content: center;
212
+ align-items: center;
213
+ width: 100%;
214
+ height: 100%;
215
+ }
216
+
217
+ .collapse-toggle {
218
+ position: absolute;
219
+ background: var(--panel-button-bg);
220
+ border: 1px solid var(--panel-button-border);
221
+ cursor: pointer;
222
+ color: var(--panel-button-icon);
223
+ outline: none;
224
+ display: flex;
225
+ z-index: 10;
226
+ border-radius: 4px;
227
+ justify-content: center;
228
+ align-items: center;
229
+ padding: 4px 8px;
230
+ transition: all .2s;
231
+ font-size: 14px;
232
+ box-shadow: 0 2px 4px #0000001a;
233
+ }
234
+
235
+ .animated-vertical-layout {
236
+ position: relative;
237
+ background-color: var(--panel-background);
238
+ width: 100%;
239
+ height: 100%;
240
+ }
241
+
242
+ .vertical-panel {
243
+ overflow: auto;
244
+ background-color: var(--panel-background);
245
+ width: 100%;
246
+ }
247
+
248
+ .panel-content-wrapper {
249
+ overflow: auto;
250
+ width: 100%;
251
+ height: 100%;
252
+ }
253
+
254
+ .vertical-resize-handle {
255
+ background-color: var(--panel-handle);
256
+ display: flex;
257
+ cursor: row-resize;
258
+ position: relative;
259
+ justify-content: center;
260
+ align-items: center;
261
+ height: 8px;
262
+ transition: background-color .2s, opacity .3s, height .3s;
263
+ }
264
+
265
+ .vertical-resize-handle.collapsed {
266
+ opacity: 0;
267
+ pointer-events: none;
268
+ }
269
+
270
+ .vertical-resize-handle:hover {
271
+ background-color: var(--panel-handle-hover);
272
+ }
273
+
274
+ .vertical-resize-handle:active {
275
+ background-color: var(--panel-handle-active);
276
+ }
277
+
278
+ .handle-bar {
279
+ display: flex;
280
+ position: relative;
281
+ justify-content: center;
282
+ align-items: center;
283
+ gap: 8px;
284
+ width: 100%;
285
+ height: 100%;
286
+ }
287
+
288
+ .collapse-toggle {
289
+ background: var(--panel-button-bg);
290
+ border: 1px solid var(--panel-button-border);
291
+ cursor: pointer;
292
+ color: var(--panel-button-icon);
293
+ outline: none;
294
+ display: flex;
295
+ z-index: 10;
296
+ border-radius: 4px;
297
+ justify-content: center;
298
+ align-items: center;
299
+ padding: 4px 8px;
300
+ transition: all .2s;
301
+ font-size: 14px;
302
+ box-shadow: 0 2px 4px #0000001a;
303
+ }
304
+
305
+ .collapse-toggle:hover:not(:disabled) {
306
+ background-color: var(--panel-button-hover);
307
+ box-shadow: 0 2px 6px #00000026;
308
+ }
309
+
310
+ .collapse-toggle:active:not(:disabled) {
311
+ opacity: .8;
312
+ }
313
+
314
+ .collapsible-split-pane {
315
+ position: relative;
316
+ display: flex;
317
+ background-color: var(--panel-background);
318
+ flex-direction: column;
319
+ width: 100%;
320
+ height: 100%;
321
+ }
322
+
323
+ .csp-header {
324
+ display: flex;
325
+ background-color: var(--panel-handle);
326
+ border-bottom: 1px solid var(--panel-border, #80808033);
327
+ -webkit-user-select: none;
328
+ user-select: none;
329
+ flex-shrink: 0;
330
+ align-items: center;
331
+ gap: 8px;
332
+ padding: 0 12px;
333
+ transition: background-color .15s;
334
+ }
335
+
336
+ .csp-header-collapsed {
337
+ cursor: pointer;
338
+ }
339
+
340
+ .csp-header-collapsed:hover {
341
+ background-color: var(--panel-handle-hover);
342
+ }
343
+
344
+ .csp-header-collapsed:focus {
345
+ outline: none;
346
+ box-shadow: inset 0 0 0 2px var(--panel-focus-ring, #3b82f680);
347
+ }
348
+
349
+ .csp-header-icon {
350
+ display: flex;
351
+ color: var(--panel-text-secondary, #888);
352
+ justify-content: center;
353
+ align-items: center;
354
+ font-size: 14px;
355
+ }
356
+
357
+ .csp-header-title {
358
+ color: var(--panel-text, #333);
359
+ white-space: nowrap;
360
+ overflow: hidden;
361
+ text-overflow: ellipsis;
362
+ flex: 1;
363
+ font-size: 12px;
364
+ font-weight: 500;
365
+ }
366
+
367
+ .csp-header-toggle {
368
+ display: flex;
369
+ color: var(--panel-text-secondary, #888);
370
+ cursor: pointer;
371
+ background: none;
372
+ border: none;
373
+ border-radius: 3px;
374
+ justify-content: center;
375
+ align-items: center;
376
+ width: 20px;
377
+ height: 20px;
378
+ padding: 0;
379
+ transition: background-color .15s, color .15s;
380
+ }
381
+
382
+ .csp-header-toggle:hover {
383
+ background-color: var(--panel-button-hover, #80808033);
384
+ color: var(--panel-text, #333);
385
+ }
386
+
387
+ .csp-content-area {
388
+ display: flex;
389
+ flex-direction: column;
390
+ flex: 1;
391
+ min-height: 0;
392
+ }
393
+
394
+ .csp-primary-content-full {
395
+ overflow: hidden;
396
+ flex: 1;
397
+ min-height: 0;
398
+ }
399
+
400
+ .csp-secondary-panel, .csp-primary-panel {
401
+ overflow: hidden;
402
+ background-color: var(--panel-background);
403
+ }
404
+
405
+ .csp-panel-content {
406
+ display: flex;
407
+ overflow: hidden;
408
+ flex-direction: column;
409
+ width: 100%;
410
+ height: 100%;
411
+ }
412
+
413
+ .csp-secondary-body {
414
+ overflow: auto;
415
+ width: 100%;
416
+ height: 100%;
417
+ }
418
+
419
+ .csp-resize-handle {
420
+ background-color: var(--panel-handle);
421
+ display: flex;
422
+ cursor: row-resize;
423
+ position: relative;
424
+ flex-shrink: 0;
425
+ justify-content: center;
426
+ align-items: center;
427
+ height: 6px;
428
+ transition: background-color .15s;
429
+ }
430
+
431
+ .csp-resize-handle:hover {
432
+ background-color: var(--panel-handle-hover);
433
+ }
434
+
435
+ .csp-resize-handle:active {
436
+ background-color: var(--panel-handle-active);
437
+ }
438
+
439
+ .csp-resize-handle-bar {
440
+ background-color: var(--panel-handle-bar, #80808066);
441
+ border-radius: 2px;
442
+ width: 32px;
443
+ height: 3px;
444
+ transition: background-color .15s;
445
+ }
446
+
447
+ .csp-resize-handle:hover .csp-resize-handle-bar {
448
+ background-color: var(--panel-handle-bar-hover, #80808099);
449
+ }
450
+
451
+ .tab-group {
452
+ display: flex;
453
+ overflow: hidden;
454
+ width: 100%;
455
+ height: 100%;
456
+ }
457
+
458
+ .tab-group.tab-position-top, .tab-group.tab-position-bottom {
459
+ flex-direction: column;
460
+ }
461
+
462
+ .tab-group.tab-position-left, .tab-group.tab-position-right {
463
+ flex-direction: row;
464
+ }
465
+
466
+ .tab-list {
467
+ display: flex;
468
+ background: var(--tab-list-bg, #f5f5f5);
469
+ border-bottom: 1px solid var(--tab-border, #ddd);
470
+ overflow-x: auto;
471
+ overflow-y: hidden;
472
+ scrollbar-width: none;
473
+ -ms-overflow-style: none;
474
+ flex-shrink: 0;
475
+ gap: 0;
476
+ padding: 0;
477
+ }
478
+
479
+ .tab-list::-webkit-scrollbar {
480
+ display: none;
481
+ }
482
+
483
+ .tab-position-top .tab-list, .tab-position-bottom .tab-list {
484
+ width: 100%;
485
+ }
486
+
487
+ .tab-list.centered {
488
+ justify-content: flex-start;
489
+ }
490
+
491
+ @media (min-width: 0) {
492
+ .tab-list.centered {
493
+ justify-content: center;
494
+ }
495
+
496
+ .tab-list.centered:has(.tab-button:nth-child(n)) {
497
+ justify-content: flex-start;
498
+ }
499
+ }
500
+
501
+ .tab-position-bottom .tab-list {
502
+ border-top: none;
503
+ border-bottom: none;
504
+ }
505
+
506
+ .tab-position-left .tab-list, .tab-position-right .tab-list {
507
+ border-bottom: none;
508
+ border-right: none;
509
+ flex-direction: column;
510
+ width: auto;
511
+ min-width: 120px;
512
+ }
513
+
514
+ .tab-position-top .tab-button, .tab-position-bottom .tab-button {
515
+ flex: 1 1 0;
516
+ min-width: 40px;
517
+ max-width: 100%;
518
+ }
519
+
520
+ .tab-button {
521
+ background: var(--tab-bg, #fff);
522
+ border: 1px solid var(--tab-border, #ddd);
523
+ cursor: pointer;
524
+ font-family: var(--tab-font-family, inherit);
525
+ font-size: var(--tab-font-size, 14px);
526
+ font-weight: var(--tab-font-weight, 500);
527
+ color: var(--tab-text, #333);
528
+ white-space: nowrap;
529
+ display: flex;
530
+ box-sizing: border-box;
531
+ container-type: inline-size;
532
+ border-radius: 0;
533
+ justify-content: center;
534
+ align-items: center;
535
+ gap: 6px;
536
+ height: 39px;
537
+ padding: 8px 16px;
538
+ transition: all .2s;
539
+ line-height: 1;
540
+ }
541
+
542
+ .tab-position-top .tab-button {
543
+ border-top: none;
544
+ border-bottom: none;
545
+ border-left: none;
546
+ }
547
+
548
+ .tab-position-top .tab-button:last-child {
549
+ border-right: none;
550
+ }
551
+
552
+ .tab-position-bottom .tab-button {
553
+ border-top: none;
554
+ border-bottom: none;
555
+ border-left: none;
556
+ }
557
+
558
+ .tab-position-bottom .tab-button:last-child {
559
+ border-right: none;
560
+ }
561
+
562
+ .tab-position-left .tab-button {
563
+ border-bottom: none;
564
+ border-right: none;
565
+ }
566
+
567
+ .tab-position-left .tab-button:last-child {
568
+ border-bottom: 1px solid var(--tab-border, #ddd);
569
+ }
570
+
571
+ .tab-position-right .tab-button {
572
+ border-bottom: none;
573
+ border-left: none;
574
+ }
575
+
576
+ .tab-position-right .tab-button:last-child {
577
+ border-bottom: 1px solid var(--tab-border, #ddd);
578
+ }
579
+
580
+ .tab-icon {
581
+ display: inline-flex;
582
+ justify-content: center;
583
+ align-items: center;
584
+ }
585
+
586
+ .tab-label {
587
+ display: none;
588
+ }
589
+
590
+ @container (width >= 100px) {
591
+ .tab-label {
592
+ display: inline;
593
+ }
594
+
595
+ .tab-icon {
596
+ display: none;
597
+ }
598
+ }
599
+
600
+ .tab-button:hover {
601
+ background: var(--tab-bg-hover, #f9f9f9);
602
+ }
603
+
604
+ .tab-button.active {
605
+ background: var(--tab-bg-active, #007bff);
606
+ color: var(--tab-text-active, #fff);
607
+ border-color: var(--tab-border-active, #007bff);
608
+ }
609
+
610
+ .tab-button:focus-visible {
611
+ outline: 2px solid var(--tab-focus, #007bff);
612
+ outline-offset: 2px;
613
+ }
614
+
615
+ .tab-content {
616
+ overflow: auto;
617
+ background: var(--tab-content-bg, #fff);
618
+ flex: 1;
619
+ }
620
+
621
+ .tab-group-empty {
622
+ display: flex;
623
+ color: var(--tab-empty-text, #999);
624
+ justify-content: center;
625
+ align-items: center;
626
+ height: 100%;
627
+ font-style: italic;
628
+ }
629
+
630
+ .three-panel-layout {
631
+ display: flex;
632
+ position: relative;
633
+ background-color: var(--panel-background);
634
+ box-sizing: border-box;
635
+ flex-direction: column;
636
+ width: 100%;
637
+ height: 100%;
638
+ }
639
+
640
+ .three-panel-item {
641
+ display: flex;
642
+ overflow: hidden;
643
+ position: relative;
644
+ background-color: var(--panel-background);
645
+ box-sizing: border-box;
646
+ flex-direction: column;
647
+ }
648
+
649
+ .three-panel-item[data-edit-mode="true"] {
650
+ background-color: var(--panel-accent-bg);
651
+ border-radius: 12px;
652
+ }
653
+
654
+ .three-panel-item.collapsible-panel {
655
+ will-change: flex;
656
+ }
657
+
658
+ .three-panel-item.collapsible-panel.animating {
659
+ pointer-events: none;
660
+ }
661
+
662
+ .three-panel-item.collapsible-panel.collapsed {
663
+ visibility: hidden;
664
+ overflow: hidden !important;
665
+ flex: 0 !important;
666
+ width: 0 !important;
667
+ min-width: 0 !important;
668
+ max-width: 0 !important;
669
+ }
670
+
671
+ .three-panel-item.middle-panel {
672
+ flex: 1;
673
+ min-width: 200px;
674
+ }
675
+
676
+ .panel-content-wrapper {
677
+ overflow-x: hidden;
678
+ overflow-y: auto;
679
+ will-change: opacity;
680
+ box-sizing: border-box;
681
+ flex: 1;
682
+ }
683
+
684
+ .resize-handle {
685
+ position: relative;
686
+ display: flex;
687
+ cursor: col-resize;
688
+ background: var(--panel-border);
689
+ justify-content: center;
690
+ align-items: center;
691
+ overflow: visible !important;
692
+ width: 1px !important;
693
+ }
694
+
695
+ .resize-handle:before {
696
+ content: "";
697
+ position: absolute;
698
+ background: none;
699
+ inset: 0 -10px;
700
+ }
701
+
702
+ .resize-handle:after {
703
+ content: "";
704
+ position: absolute;
705
+ background: var(--panel-handle);
706
+ opacity: 0;
707
+ z-index: -1;
708
+ transition: opacity .2s;
709
+ inset: 0 -10px;
710
+ }
711
+
712
+ .resize-handle:hover:after {
713
+ opacity: 1;
714
+ }
715
+
716
+ .resize-handle:hover {
717
+ background: var(--panel-handle-hover);
718
+ }
719
+
720
+ .resize-handle:active:after {
721
+ opacity: 1;
722
+ background: var(--panel-handle-active);
723
+ }
724
+
725
+ .resize-handle:active {
726
+ background: var(--panel-handle-active);
727
+ }
728
+
729
+ .resize-handle.collapsed {
730
+ visibility: hidden;
731
+ width: 0 !important;
732
+ }
733
+
734
+ .resize-handle.left-handle.collapsed {
735
+ margin-right: -1px;
736
+ }
737
+
738
+ .resize-handle.right-handle.collapsed {
739
+ margin-left: -1px;
740
+ }
741
+
742
+ .handle-bar {
743
+ position: relative;
744
+ display: flex;
745
+ z-index: 2;
746
+ justify-content: center;
747
+ align-items: center;
748
+ width: 100%;
749
+ height: 100%;
750
+ }
751
+
752
+ .collapse-toggle {
753
+ position: absolute;
754
+ background: var(--panel-button-bg);
755
+ border: 1px solid var(--panel-button-border);
756
+ display: flex;
757
+ cursor: pointer;
758
+ color: var(--panel-button-icon);
759
+ z-index: 10;
760
+ border-radius: 4px;
761
+ justify-content: center;
762
+ align-items: center;
763
+ width: 20px;
764
+ height: 40px;
765
+ padding: 0;
766
+ transition: all .2s;
767
+ font-size: 12px;
768
+ line-height: 1;
769
+ top: 50%;
770
+ left: 50%;
771
+ transform: translate(-50%, -50%);
772
+ }
773
+
774
+ .collapse-toggle:hover {
775
+ background: var(--panel-button-hover);
776
+ }
777
+
778
+ .collapse-toggle:active {
779
+ opacity: .8;
780
+ }
781
+
782
+ .collapse-toggle:disabled {
783
+ opacity: .5;
784
+ cursor: not-allowed;
785
+ }
786
+
787
+ @media (max-width: 768px) {
788
+ .resize-handle:before, .resize-handle:after {
789
+ left: -8px;
790
+ right: -8px;
791
+ }
792
+
793
+ .collapse-toggle {
794
+ width: 24px;
795
+ height: 48px;
796
+ font-size: 14px;
797
+ }
798
+ }
799
+
800
+ .snap-carousel-container {
801
+ display: flex;
802
+ overflow-x: auto;
803
+ overflow-y: hidden;
804
+ scroll-snap-type: x mandatory;
805
+ scroll-behavior: smooth;
806
+ gap: var(--snap-carousel-gap, 0px);
807
+ background-color: var(--panel-background);
808
+ box-sizing: border-box;
809
+ position: relative;
810
+ container-type: inline-size;
811
+ -ms-overflow-style: none;
812
+ scrollbar-width: none;
813
+ width: 100%;
814
+ height: 100%;
815
+ margin: 0;
816
+ padding: 0;
817
+ left: 0;
818
+ transform: none;
819
+ }
820
+
821
+ .snap-carousel-container::-webkit-scrollbar {
822
+ display: none;
823
+ }
824
+
825
+ .snap-carousel-container.swipe-disabled {
826
+ touch-action: pan-y pinch-zoom;
827
+ overscroll-behavior-x: none;
828
+ }
829
+
830
+ .snap-carousel-panel {
831
+ scroll-snap-align: start;
832
+ scroll-snap-stop: always;
833
+ width: var(--snap-carousel-panel-width, 33.33%);
834
+ box-sizing: border-box;
835
+ overflow: hidden;
836
+ flex: none;
837
+ height: 100%;
838
+ }
839
+
840
+ @media (max-width: 540px) {
841
+ .snap-carousel-panel {
842
+ min-width: 280px;
843
+ }
844
+ }
845
+
846
+ .mobile-tab-layout {
847
+ display: flex;
848
+ overflow: hidden;
849
+ flex-direction: column;
850
+ width: 100%;
851
+ height: 100%;
852
+ }
853
+
854
+ .mobile-tab-content {
855
+ overflow: hidden;
856
+ flex: 1;
857
+ min-height: 0;
858
+ }
859
+
860
+ .mobile-tab-nav {
861
+ display: flex;
862
+ background: var(--tab-list-bg, #f5f5f5);
863
+ border-top: 1px solid var(--tab-border, #ddd);
864
+ flex-shrink: 0;
865
+ margin: 0;
866
+ padding: 0;
867
+ }
868
+
869
+ .mobile-tab-button {
870
+ display: flex;
871
+ padding: 14px 4px;
872
+ padding-bottom: calc(14px + min(12px, env(safe-area-inset-bottom, 0px)));
873
+ cursor: pointer;
874
+ font-family: var(--tab-font-family, inherit);
875
+ font-size: var(--tab-font-size, 11px);
876
+ font-weight: var(--tab-font-weight, 500);
877
+ color: var(--tab-text, #666);
878
+ background: none;
879
+ border: none;
880
+ flex-direction: column;
881
+ flex: 1;
882
+ justify-content: center;
883
+ align-items: center;
884
+ gap: 6px;
885
+ min-width: 0;
886
+ transition: color .2s;
887
+ }
888
+
889
+ .mobile-tab-button:hover {
890
+ color: var(--tab-text-hover, #333);
891
+ }
892
+
893
+ .mobile-tab-button.active {
894
+ color: var(--mobile-tab-text-active, #007bff);
895
+ }
896
+
897
+ .mobile-tab-button .tab-icon {
898
+ display: flex;
899
+ color: var(--tab-icon-color, #999);
900
+ justify-content: center;
901
+ align-items: center;
902
+ transition: color .2s;
903
+ font-size: 24px;
904
+ }
905
+
906
+ .mobile-tab-button.active .tab-icon {
907
+ color: var(--mobile-tab-icon-active, #007bff);
908
+ }
909
+
910
+ .mobile-tab-button .tab-label {
911
+ display: block;
912
+ white-space: nowrap;
913
+ overflow: hidden;
914
+ text-overflow: ellipsis;
915
+ color: inherit;
916
+ opacity: 1;
917
+ max-width: 100%;
918
+ font-size: 11px;
919
+ line-height: 1.2;
920
+ }
921
+
922
+ .mobile-tab-button:focus-visible {
923
+ outline: 2px solid var(--tab-focus, #007bff);
924
+ outline-offset: -2px;
925
+ z-index: 1;
926
+ }
927
+
928
+ @keyframes wiggle {
929
+ 0% {
930
+ transform: rotate(0);
931
+ }
932
+
933
+ 25% {
934
+ transform: rotate(1deg);
935
+ }
936
+
937
+ 50% {
938
+ transform: rotate(0);
939
+ }
940
+
941
+ 75% {
942
+ transform: rotate(-1deg);
943
+ }
944
+
945
+ to {
946
+ transform: rotate(0);
947
+ }
948
+ }
949
+
950
+ @keyframes scaleIn {
951
+ 0% {
952
+ transform: scale(.95);
953
+ opacity: 0;
954
+ }
955
+
956
+ to {
957
+ transform: scale(1);
958
+ opacity: 1;
959
+ }
960
+ }
961
+
962
+ @keyframes pulse {
963
+ 0%, to {
964
+ box-shadow: 0 0 #3b82f666;
965
+ }
966
+
967
+ 50% {
968
+ box-shadow: 0 0 0 8px #3b82f600;
969
+ }
970
+ }
971
+
972
+ .editable-panel-layout {
973
+ position: relative;
974
+ width: 100%;
975
+ height: 100%;
976
+ }
977
+
978
+ .editable-panel-layout.edit-mode-active {
979
+ background: #0000000d;
980
+ }
981
+
982
+ [data-slot][data-edit-mode="true"] {
983
+ transform-origin: center center;
984
+ cursor: grab;
985
+ will-change: transform;
986
+ transition: transform .3s cubic-bezier(.4,0,.2,1);
987
+ transform: scale(.95);
988
+ }
989
+
990
+ [data-slot][data-edit-mode="true"]:active {
991
+ cursor: grabbing;
992
+ }
993
+
994
+ [data-slot][data-dragging="true"] {
995
+ cursor: grabbing !important;
996
+ transition: none !important;
997
+ transform: scale(.95) !important;
998
+ }
999
+
1000
+ .edit-mode-active [data-slot][data-edit-mode="true"] {
1001
+ transform-origin: center center;
1002
+ }
1003
+
1004
+ .slot-with-overlay {
1005
+ position: relative;
1006
+ width: 100%;
1007
+ height: 100%;
1008
+ }
1009
+
1010
+ .slot-with-overlay.dragging {
1011
+ opacity: 0;
1012
+ pointer-events: none;
1013
+ }
1014
+
1015
+ .slot-edit-overlay {
1016
+ position: absolute;
1017
+ pointer-events: auto;
1018
+ cursor: grab;
1019
+ z-index: 100;
1020
+ display: flex;
1021
+ background: none;
1022
+ border: none;
1023
+ flex-direction: column;
1024
+ justify-content: center;
1025
+ align-items: center;
1026
+ inset: 0;
1027
+ }
1028
+
1029
+ .slot-edit-overlay:hover {
1030
+ background: #3b82f608;
1031
+ }
1032
+
1033
+ .slot-edit-overlay:active {
1034
+ cursor: grabbing;
1035
+ }
1036
+
1037
+ .drag-indicator, .slot-position-label {
1038
+ display: none;
1039
+ }
1040
+
1041
+ .edit-mode-toggle {
1042
+ position: absolute;
1043
+ z-index: 1000;
1044
+ color: #374151;
1045
+ cursor: pointer;
1046
+ background: #fff;
1047
+ border: 1px solid #e5e7eb;
1048
+ border-radius: 8px;
1049
+ padding: 8px 16px;
1050
+ transition: all .2s;
1051
+ font-size: 14px;
1052
+ font-weight: 500;
1053
+ top: 16px;
1054
+ right: 16px;
1055
+ box-shadow: 0 2px 4px #0000001a;
1056
+ }
1057
+
1058
+ .edit-mode-toggle:hover {
1059
+ background: #f9fafb;
1060
+ box-shadow: 0 4px 6px #0000001a;
1061
+ }
1062
+
1063
+ .edit-mode-toggle.active {
1064
+ color: #fff;
1065
+ background: #3b82f6;
1066
+ border-color: #2563eb;
1067
+ }
1068
+
1069
+ .edit-mode-overlay {
1070
+ position: fixed;
1071
+ z-index: 998;
1072
+ animation: fadeIn .2s ease;
1073
+ background: #0000004d;
1074
+ inset: 0;
1075
+ }
1076
+
1077
+ @keyframes fadeIn {
1078
+ 0% {
1079
+ opacity: 0;
1080
+ }
1081
+
1082
+ to {
1083
+ opacity: 1;
1084
+ }
1085
+ }
1086
+
1087
+ .edit-mode-configurator {
1088
+ position: relative;
1089
+ z-index: 999;
1090
+ animation: scaleIn .3s ease;
1091
+ padding: 20px;
1092
+ }
1093
+
1094
+ .panel-slot {
1095
+ position: relative;
1096
+ border: 2px dashed #0000;
1097
+ border-radius: 12px;
1098
+ min-height: 120px;
1099
+ padding: 12px;
1100
+ transition: all .3s;
1101
+ }
1102
+
1103
+ .panel-slot.edit-mode {
1104
+ background: #ffffff80;
1105
+ border-color: #d1d5db;
1106
+ }
1107
+
1108
+ .panel-slot.drag-over {
1109
+ background: #3b82f61a;
1110
+ border-color: #3b82f6;
1111
+ box-shadow: 0 0 0 4px #3b82f61a;
1112
+ }
1113
+
1114
+ .panel-slot.empty {
1115
+ display: flex;
1116
+ color: #9ca3af;
1117
+ justify-content: center;
1118
+ align-items: center;
1119
+ font-size: 14px;
1120
+ }
1121
+
1122
+ .draggable-panel {
1123
+ position: relative;
1124
+ cursor: grab;
1125
+ -webkit-user-select: none;
1126
+ user-select: none;
1127
+ background: #fff;
1128
+ border: 1px solid #e5e7eb;
1129
+ border-radius: 8px;
1130
+ margin: 8px 0;
1131
+ padding: 12px 16px;
1132
+ transition: all .2s;
1133
+ }
1134
+
1135
+ .draggable-panel:hover {
1136
+ border-color: #3b82f6;
1137
+ box-shadow: 0 2px 8px #0000001a;
1138
+ }
1139
+
1140
+ .draggable-panel.dragging {
1141
+ opacity: .5;
1142
+ cursor: grabbing;
1143
+ }
1144
+
1145
+ .draggable-panel.edit-mode {
1146
+ animation: wiggle .4s ease-in-out infinite;
1147
+ transform-origin: center;
1148
+ }
1149
+
1150
+ .draggable-panel.edit-mode:nth-child(odd) {
1151
+ animation-delay: .1s;
1152
+ }
1153
+
1154
+ .draggable-panel.edit-mode:nth-child(2n) {
1155
+ animation-delay: .2s;
1156
+ }
1157
+
1158
+ .remove-button {
1159
+ position: absolute;
1160
+ color: #fff;
1161
+ display: flex;
1162
+ cursor: pointer;
1163
+ opacity: 0;
1164
+ z-index: 10;
1165
+ background: #ef4444;
1166
+ border: 2px solid #fff;
1167
+ border-radius: 50%;
1168
+ justify-content: center;
1169
+ align-items: center;
1170
+ width: 20px;
1171
+ height: 20px;
1172
+ transition: all .2s;
1173
+ font-size: 12px;
1174
+ font-weight: 700;
1175
+ top: -6px;
1176
+ right: -6px;
1177
+ transform: scale(0);
1178
+ box-shadow: 0 2px 4px #0003;
1179
+ }
1180
+
1181
+ .draggable-panel.edit-mode .remove-button {
1182
+ opacity: 1;
1183
+ animation: pulse 2s infinite;
1184
+ transform: scale(1);
1185
+ }
1186
+
1187
+ .remove-button:hover {
1188
+ background: #dc2626;
1189
+ transform: scale(1.1);
1190
+ }
1191
+
1192
+ .panel-label {
1193
+ display: flex;
1194
+ color: #374151;
1195
+ align-items: center;
1196
+ gap: 8px;
1197
+ font-size: 14px;
1198
+ font-weight: 500;
1199
+ }
1200
+
1201
+ .panel-icon {
1202
+ display: flex;
1203
+ justify-content: center;
1204
+ align-items: center;
1205
+ width: 20px;
1206
+ height: 20px;
1207
+ }
1208
+
1209
+ .drag-handle {
1210
+ display: none;
1211
+ opacity: .4;
1212
+ cursor: grab;
1213
+ width: 24px;
1214
+ height: 24px;
1215
+ }
1216
+
1217
+ .edit-mode .drag-handle {
1218
+ display: flex;
1219
+ justify-content: center;
1220
+ align-items: center;
1221
+ }
1222
+
1223
+ .drag-overlay {
1224
+ cursor: grabbing;
1225
+ opacity: .9;
1226
+ background: #fff;
1227
+ border: 2px solid #3b82f6;
1228
+ border-radius: 8px;
1229
+ padding: 12px 16px;
1230
+ box-shadow: 0 8px 16px #0003;
1231
+ }
1232
+
1233
+ .panel-group {
1234
+ background: #fff;
1235
+ border: 2px solid #e5e7eb;
1236
+ border-radius: 12px;
1237
+ padding: 8px;
1238
+ }
1239
+
1240
+ .panel-group.edit-mode {
1241
+ animation: wiggle .5s ease-in-out infinite;
1242
+ border-color: #3b82f6;
1243
+ }
1244
+
1245
+ .panel-group-header {
1246
+ display: flex;
1247
+ border-bottom: 1px solid #e5e7eb;
1248
+ justify-content: space-between;
1249
+ align-items: center;
1250
+ margin-bottom: 8px;
1251
+ padding: 8px;
1252
+ }
1253
+
1254
+ .panel-group-title {
1255
+ color: #6b7280;
1256
+ text-transform: uppercase;
1257
+ font-size: 12px;
1258
+ font-weight: 600;
1259
+ }
1260
+
1261
+ .available-panels {
1262
+ background: #fff;
1263
+ border-radius: 12px;
1264
+ padding: 16px;
1265
+ box-shadow: 0 4px 6px #0000001a;
1266
+ }
1267
+
1268
+ .available-panels-title {
1269
+ color: #374151;
1270
+ margin-bottom: 12px;
1271
+ font-size: 16px;
1272
+ font-weight: 600;
1273
+ }
1274
+
1275
+ .available-panels-list {
1276
+ display: flex;
1277
+ flex-direction: column;
1278
+ gap: 8px;
1279
+ }
1280
+
1281
+ .slot-label {
1282
+ color: #6b7280;
1283
+ text-transform: uppercase;
1284
+ display: flex;
1285
+ align-items: center;
1286
+ gap: 8px;
1287
+ margin-bottom: 8px;
1288
+ font-size: 12px;
1289
+ font-weight: 600;
1290
+ }
1291
+
1292
+ .slot-indicator {
1293
+ background: #d1d5db;
1294
+ border-radius: 50%;
1295
+ width: 8px;
1296
+ height: 8px;
1297
+ }
1298
+
1299
+ .slot-indicator.active {
1300
+ background: #3b82f6;
1301
+ }
1302
+
1303
+ .action-buttons {
1304
+ position: fixed;
1305
+ z-index: 1001;
1306
+ display: flex;
1307
+ animation: scaleIn .3s ease;
1308
+ background: #fff;
1309
+ border-radius: 12px;
1310
+ gap: 12px;
1311
+ padding: 12px 24px;
1312
+ bottom: 24px;
1313
+ left: 50%;
1314
+ transform: translate(-50%);
1315
+ box-shadow: 0 8px 16px #00000026;
1316
+ }
1317
+
1318
+ .action-button {
1319
+ color: #374151;
1320
+ cursor: pointer;
1321
+ background: #fff;
1322
+ border: 1px solid #e5e7eb;
1323
+ border-radius: 8px;
1324
+ padding: 10px 20px;
1325
+ transition: all .2s;
1326
+ font-size: 14px;
1327
+ font-weight: 500;
1328
+ }
1329
+
1330
+ .action-button:hover {
1331
+ background: #f9fafb;
1332
+ }
1333
+
1334
+ .action-button.primary {
1335
+ color: #fff;
1336
+ background: #3b82f6;
1337
+ border-color: #2563eb;
1338
+ }
1339
+
1340
+ .action-button.primary:hover {
1341
+ background: #2563eb;
1342
+ }
1343
+
1344
+ @media (max-width: 768px) {
1345
+ .edit-mode-toggle {
1346
+ padding: 6px 12px;
1347
+ font-size: 12px;
1348
+ top: 8px;
1349
+ right: 8px;
1350
+ }
1351
+
1352
+ .action-buttons {
1353
+ padding: 10px 16px;
1354
+ bottom: 16px;
1355
+ }
1356
+
1357
+ .action-button {
1358
+ padding: 8px 16px;
1359
+ font-size: 13px;
1360
+ }
1361
+ }
1362
+
1363
+ @media (prefers-color-scheme: dark) {
1364
+ .edit-mode-toggle {
1365
+ color: #f9fafb;
1366
+ background: #1f2937;
1367
+ border-color: #374151;
1368
+ }
1369
+
1370
+ .edit-mode-toggle:hover {
1371
+ background: #374151;
1372
+ }
1373
+
1374
+ .draggable-panel {
1375
+ color: #f9fafb;
1376
+ background: #1f2937;
1377
+ border-color: #374151;
1378
+ }
1379
+
1380
+ .available-panels {
1381
+ background: #1f2937;
1382
+ }
1383
+
1384
+ .panel-label {
1385
+ color: #f9fafb;
1386
+ }
1387
+
1388
+ .action-buttons {
1389
+ background: #1f2937;
1390
+ }
1391
+
1392
+ .action-button {
1393
+ color: #f9fafb;
1394
+ background: #1f2937;
1395
+ border-color: #374151;
1396
+ }
1397
+
1398
+ .action-button:hover {
1399
+ background: #374151;
1400
+ }
1401
+ }
1402
+
1403
+ .panel-configurator {
1404
+ display: flex;
1405
+ background: var(--configurator-bg);
1406
+ border-radius: 8px;
1407
+ flex-direction: column;
1408
+ gap: 2rem;
1409
+ padding: 1.5rem;
1410
+ font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
1411
+ }
1412
+
1413
+ .configurator-section {
1414
+ display: flex;
1415
+ flex-direction: column;
1416
+ gap: 1rem;
1417
+ }
1418
+
1419
+ .section-title {
1420
+ color: var(--configurator-title);
1421
+ text-transform: uppercase;
1422
+ letter-spacing: .05em;
1423
+ text-align: center;
1424
+ margin: 0;
1425
+ font-size: .875rem;
1426
+ font-weight: 600;
1427
+ }
1428
+
1429
+ .slots-container {
1430
+ display: grid;
1431
+ grid-template-columns: repeat(3, 1fr);
1432
+ align-items: start;
1433
+ gap: 1rem;
1434
+ width: 75%;
1435
+ margin: 0 auto;
1436
+ }
1437
+
1438
+ .slot {
1439
+ position: relative;
1440
+ aspect-ratio: 1 / 1.3;
1441
+ background: var(--slot-bg);
1442
+ border: 2px solid var(--slot-border);
1443
+ cursor: pointer;
1444
+ display: flex;
1445
+ overflow: hidden;
1446
+ box-sizing: border-box;
1447
+ border-radius: 6px;
1448
+ flex-direction: column;
1449
+ gap: .5rem;
1450
+ width: 100%;
1451
+ padding: 2.5rem 1rem 1rem;
1452
+ transition: all .2s;
1453
+ }
1454
+
1455
+ .slot:hover {
1456
+ border-color: var(--slot-border-hover);
1457
+ box-shadow: 0 2px 4px #0000000d;
1458
+ }
1459
+
1460
+ .slot.selected {
1461
+ border-color: var(--slot-border-selected);
1462
+ background: var(--slot-bg-selected);
1463
+ box-shadow: 0 0 0 3px var(--slot-bg-selected);
1464
+ }
1465
+
1466
+ .slot.empty {
1467
+ border-style: dashed;
1468
+ }
1469
+
1470
+ .slot-label {
1471
+ color: var(--slot-label);
1472
+ text-transform: capitalize;
1473
+ text-align: left;
1474
+ font-size: .75rem;
1475
+ font-weight: 600;
1476
+ }
1477
+
1478
+ .slot[data-position="middle"] .slot-label, .slot[data-position="middle"] .slot-panel-name, .slot[data-position="middle"] .slot-empty-state {
1479
+ text-align: center;
1480
+ }
1481
+
1482
+ .slot[data-position="right"] .slot-label, .slot[data-position="right"] .slot-panel-name, .slot[data-position="right"] .slot-empty-state {
1483
+ text-align: right;
1484
+ }
1485
+
1486
+ .slot-content {
1487
+ display: flex;
1488
+ overflow-y: auto;
1489
+ flex-direction: column;
1490
+ flex: 1;
1491
+ gap: .5rem;
1492
+ min-height: 0;
1493
+ }
1494
+
1495
+ .slot-panel-name {
1496
+ color: var(--slot-content-text);
1497
+ font-size: .875rem;
1498
+ font-weight: 600;
1499
+ }
1500
+
1501
+ .slot-preview {
1502
+ display: flex;
1503
+ background: var(--slot-preview-bg);
1504
+ border: 1px solid var(--slot-preview-border);
1505
+ color: var(--slot-preview-text);
1506
+ border-radius: 4px;
1507
+ flex: 1;
1508
+ justify-content: center;
1509
+ align-items: center;
1510
+ padding: .5rem;
1511
+ font-size: .75rem;
1512
+ }
1513
+
1514
+ .slot-empty-state {
1515
+ display: flex;
1516
+ color: var(--slot-empty-text);
1517
+ flex: 1;
1518
+ justify-content: center;
1519
+ align-items: center;
1520
+ min-height: 0;
1521
+ font-size: .875rem;
1522
+ font-style: italic;
1523
+ }
1524
+
1525
+ .slot-clear-btn {
1526
+ position: absolute;
1527
+ background: var(--clear-btn-bg);
1528
+ color: var(--clear-btn-text);
1529
+ cursor: pointer;
1530
+ display: flex;
1531
+ opacity: 0;
1532
+ border: none;
1533
+ border-radius: 4px;
1534
+ justify-content: center;
1535
+ align-items: center;
1536
+ width: 24px;
1537
+ height: 24px;
1538
+ padding: 0;
1539
+ transition: opacity .2s;
1540
+ font-size: 1.25rem;
1541
+ line-height: 1;
1542
+ top: .25rem;
1543
+ right: .25rem;
1544
+ }
1545
+
1546
+ .slot:hover .slot-clear-btn {
1547
+ opacity: 1;
1548
+ }
1549
+
1550
+ .slot-clear-btn:hover {
1551
+ background: var(--clear-btn-hover);
1552
+ transform: scale(1.1);
1553
+ }
1554
+
1555
+ .available-panels {
1556
+ display: grid;
1557
+ grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
1558
+ gap: .75rem;
1559
+ width: 75%;
1560
+ margin: 0 auto;
1561
+ }
1562
+
1563
+ .available-panel {
1564
+ background: var(--panel-bg);
1565
+ border: 2px solid var(--panel-border);
1566
+ cursor: pointer;
1567
+ display: flex;
1568
+ border-radius: 6px;
1569
+ flex-direction: column;
1570
+ gap: .5rem;
1571
+ min-height: 80px;
1572
+ padding: .75rem;
1573
+ transition: all .2s;
1574
+ }
1575
+
1576
+ .available-panel:hover {
1577
+ border-color: var(--panel-border-hover);
1578
+ transform: translateY(-2px);
1579
+ box-shadow: 0 2px 4px #0000000d;
1580
+ }
1581
+
1582
+ .available-panel.selected {
1583
+ border-color: var(--panel-border-selected);
1584
+ background: var(--panel-bg-selected);
1585
+ box-shadow: 0 0 0 3px var(--panel-bg-selected);
1586
+ }
1587
+
1588
+ .available-panel.in-use {
1589
+ opacity: .5;
1590
+ border-style: dashed;
1591
+ }
1592
+
1593
+ .available-panel.in-use:hover {
1594
+ opacity: .6;
1595
+ transform: translateY(0);
1596
+ }
1597
+
1598
+ .panel-label {
1599
+ color: var(--panel-label-text);
1600
+ font-size: .875rem;
1601
+ font-weight: 600;
1602
+ }
1603
+
1604
+ .panel-preview {
1605
+ display: flex;
1606
+ background: var(--panel-preview-bg);
1607
+ color: var(--panel-preview-text);
1608
+ border-radius: 4px;
1609
+ flex: 1;
1610
+ justify-content: center;
1611
+ align-items: center;
1612
+ padding: .5rem;
1613
+ font-size: .75rem;
1614
+ }
1615
+
1616
+ .selection-hint {
1617
+ background: var(--hint-bg);
1618
+ border: 1px solid var(--hint-border);
1619
+ color: var(--hint-text);
1620
+ text-align: center;
1621
+ border-radius: 6px;
1622
+ padding: .75rem 1rem;
1623
+ font-size: .875rem;
1624
+ }
1625
+
1626
+ .available-panel.multi-selected {
1627
+ border-color: var(--panel-border-selected);
1628
+ background: var(--panel-bg-selected);
1629
+ box-shadow: 0 0 0 2px var(--panel-bg-selected);
1630
+ }
1631
+
1632
+ .multi-select-badge {
1633
+ background: var(--panel-border-selected);
1634
+ color: #fff;
1635
+ border-radius: 12px;
1636
+ margin-left: .5rem;
1637
+ padding: .25rem .5rem;
1638
+ font-size: .75rem;
1639
+ font-weight: 400;
1640
+ }
1641
+
1642
+ .multi-select-hint {
1643
+ background: var(--panel-bg-selected);
1644
+ border-color: var(--panel-border-selected);
1645
+ }
1646
+
1647
+ .slot.tab-group {
1648
+ border-style: solid;
1649
+ }
1650
+
1651
+ .group-content {
1652
+ position: relative;
1653
+ overflow-y: auto;
1654
+ min-height: 0;
1655
+ }
1656
+
1657
+ .group-badge {
1658
+ color: var(--panel-border-selected);
1659
+ margin-bottom: .5rem;
1660
+ font-size: .75rem;
1661
+ font-weight: 600;
1662
+ }
1663
+
1664
+ .group-panels {
1665
+ display: flex;
1666
+ overflow-y: auto;
1667
+ flex-direction: column;
1668
+ flex: 1;
1669
+ gap: .25rem;
1670
+ min-height: 0;
1671
+ }
1672
+
1673
+ .group-panel-label {
1674
+ color: var(--slot-content-text);
1675
+ background: var(--slot-preview-bg);
1676
+ border-left: 3px solid var(--panel-border-selected);
1677
+ border-radius: 3px;
1678
+ padding: .25rem .5rem;
1679
+ font-size: .75rem;
1680
+ }
1681
+
1682
+ .slot-panel-label {
1683
+ color: var(--slot-content-text);
1684
+ text-align: center;
1685
+ font-size: .875rem;
1686
+ font-weight: 600;
1687
+ }
1688
+
1689
+ .create-tab-group-btn {
1690
+ background: var(--panel-border-selected);
1691
+ color: #fff;
1692
+ cursor: pointer;
1693
+ border: none;
1694
+ border-radius: 4px;
1695
+ margin-top: .5rem;
1696
+ padding: .5rem .75rem;
1697
+ transition: all .2s;
1698
+ font-size: .75rem;
1699
+ font-weight: 600;
1700
+ }
1701
+
1702
+ .create-tab-group-btn:hover {
1703
+ transform: scale(1.05);
1704
+ box-shadow: 0 2px 4px #0000001a;
1705
+ }
1706
+
1707
+ .tab-mode-toggle {
1708
+ position: absolute;
1709
+ background: var(--slot-bg);
1710
+ border: 1px solid var(--slot-border);
1711
+ cursor: pointer;
1712
+ z-index: 10;
1713
+ opacity: .7;
1714
+ color: var(--slot-content-text);
1715
+ border-radius: 4px;
1716
+ padding: .25rem .5rem;
1717
+ transition: all .2s;
1718
+ font-size: .85rem;
1719
+ top: .5rem;
1720
+ left: .5rem;
1721
+ }
1722
+
1723
+ .tab-mode-toggle svg {
1724
+ display: block;
1725
+ }
1726
+
1727
+ .tab-mode-toggle:hover {
1728
+ opacity: 1;
1729
+ border-color: var(--slot-border-hover);
1730
+ background: var(--slot-preview-bg);
1731
+ }
1732
+
1733
+ .tab-mode-toggle.active {
1734
+ opacity: 1;
1735
+ background: var(--panel-border-selected);
1736
+ color: #fff;
1737
+ border-color: var(--panel-border-selected);
1738
+ }
1739
+
1740
+ .tab-config-controls {
1741
+ margin-bottom: .5rem;
1742
+ }
1743
+
1744
+ .tab-config-label {
1745
+ display: flex;
1746
+ color: var(--slot-label);
1747
+ align-items: center;
1748
+ gap: .5rem;
1749
+ font-size: .75rem;
1750
+ }
1751
+
1752
+ .tab-config-label select {
1753
+ border: 1px solid var(--slot-border);
1754
+ background: var(--slot-bg);
1755
+ color: var(--slot-content-text);
1756
+ cursor: pointer;
1757
+ border-radius: 3px;
1758
+ padding: .25rem .5rem;
1759
+ font-size: .7rem;
1760
+ }
1761
+
1762
+ .group-panel-item {
1763
+ display: flex;
1764
+ background: var(--slot-preview-bg);
1765
+ border-left: 3px solid var(--panel-border-selected);
1766
+ border-radius: 3px;
1767
+ justify-content: space-between;
1768
+ align-items: center;
1769
+ gap: .5rem;
1770
+ padding: .25rem .5rem;
1771
+ }
1772
+
1773
+ .group-panel-label {
1774
+ color: var(--slot-content-text);
1775
+ display: flex;
1776
+ flex: 1;
1777
+ align-items: center;
1778
+ gap: .25rem;
1779
+ font-size: .75rem;
1780
+ }
1781
+
1782
+ .default-badge {
1783
+ color: var(--panel-border-selected);
1784
+ font-size: .9em;
1785
+ }
1786
+
1787
+ .remove-from-group-btn {
1788
+ background: var(--clear-btn-bg);
1789
+ color: var(--clear-btn-text);
1790
+ cursor: pointer;
1791
+ display: flex;
1792
+ opacity: .7;
1793
+ border: none;
1794
+ border-radius: 3px;
1795
+ justify-content: center;
1796
+ align-items: center;
1797
+ width: 18px;
1798
+ height: 18px;
1799
+ padding: 0;
1800
+ transition: all .2s;
1801
+ font-size: 1rem;
1802
+ line-height: 1;
1803
+ }
1804
+
1805
+ .remove-from-group-btn:hover {
1806
+ opacity: 1;
1807
+ transform: scale(1.1);
1808
+ }
1809
+
1810
+ .usage-hint {
1811
+ background: var(--slot-preview-bg);
1812
+ border: 1px solid var(--slot-border);
1813
+ color: var(--hint-text);
1814
+ text-align: center;
1815
+ border-radius: 6px;
1816
+ padding: .75rem 1rem;
1817
+ font-size: .875rem;
1818
+ }