signer-test-sdk-react 0.0.11 → 0.0.13

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.
Files changed (91) hide show
  1. package/README.md +1 -1
  2. package/dist/src/AbstraxnProvider.d.ts +2 -5
  3. package/dist/src/AbstraxnProvider.js +550 -50
  4. package/dist/src/AbstraxnProvider.js.map +1 -1
  5. package/dist/src/WalletModal.css +1973 -23
  6. package/dist/src/WalletModal.d.ts +2 -1
  7. package/dist/src/WalletModal.js +200 -30
  8. package/dist/src/WalletModal.js.map +1 -1
  9. package/dist/src/chains.d.ts +55 -0
  10. package/dist/src/chains.js +221 -0
  11. package/dist/src/chains.js.map +1 -0
  12. package/dist/src/components/OnboardingUI/OnboardingUIReact.js +24 -3
  13. package/dist/src/components/OnboardingUI/OnboardingUIReact.js.map +1 -1
  14. package/dist/src/components/OnboardingUI/OnboardingUIWeb.d.ts +11 -2
  15. package/dist/src/components/OnboardingUI/OnboardingUIWeb.js +266 -36
  16. package/dist/src/components/OnboardingUI/OnboardingUIWeb.js.map +1 -1
  17. package/dist/src/components/OnboardingUI/components/PasskeyButton.js +1 -1
  18. package/dist/src/components/OnboardingUI/components/PasskeyButton.js.map +1 -1
  19. package/dist/src/components/QRCode.d.ts +13 -0
  20. package/dist/src/components/QRCode.js +6 -0
  21. package/dist/src/components/QRCode.js.map +1 -0
  22. package/dist/src/components/WalletModal/components/ChainSelector.css +180 -0
  23. package/dist/src/components/WalletModal/components/ChainSelector.d.ts +10 -0
  24. package/dist/src/components/WalletModal/components/ChainSelector.js +34 -0
  25. package/dist/src/components/WalletModal/components/ChainSelector.js.map +1 -0
  26. package/dist/src/components/WalletModal/components/ExportKeyModal.css +133 -0
  27. package/dist/src/components/WalletModal/components/ExportKeyModal.d.ts +9 -0
  28. package/dist/src/components/WalletModal/components/ExportKeyModal.js +31 -0
  29. package/dist/src/components/WalletModal/components/ExportKeyModal.js.map +1 -0
  30. package/dist/src/components/WalletModal/components/ExportWarningModal.css +2 -0
  31. package/dist/src/components/WalletModal/components/ExportWarningModal.d.ts +11 -0
  32. package/dist/src/components/WalletModal/components/ExportWarningModal.js +18 -0
  33. package/dist/src/components/WalletModal/components/ExportWarningModal.js.map +1 -0
  34. package/dist/src/components/WalletModal/components/ManageWalletModal.css +160 -0
  35. package/dist/src/components/WalletModal/components/ManageWalletModal.d.ts +12 -0
  36. package/dist/src/components/WalletModal/components/ManageWalletModal.js +21 -0
  37. package/dist/src/components/WalletModal/components/ManageWalletModal.js.map +1 -0
  38. package/dist/src/components/WalletModal/components/PreviewTransactionModal.css +128 -0
  39. package/dist/src/components/WalletModal/components/PreviewTransactionModal.d.ts +17 -0
  40. package/dist/src/components/WalletModal/components/PreviewTransactionModal.js +10 -0
  41. package/dist/src/components/WalletModal/components/PreviewTransactionModal.js.map +1 -0
  42. package/dist/src/components/WalletModal/components/ReceiveModal.css +101 -0
  43. package/dist/src/components/WalletModal/components/ReceiveModal.d.ts +8 -0
  44. package/dist/src/components/WalletModal/components/ReceiveModal.js +22 -0
  45. package/dist/src/components/WalletModal/components/ReceiveModal.js.map +1 -0
  46. package/dist/src/components/WalletModal/components/SendModal.css +234 -0
  47. package/dist/src/components/WalletModal/components/SendModal.d.ts +18 -0
  48. package/dist/src/components/WalletModal/components/SendModal.js +127 -0
  49. package/dist/src/components/WalletModal/components/SendModal.js.map +1 -0
  50. package/dist/src/components/WalletModal/components/SuccessModal.css +86 -0
  51. package/dist/src/components/WalletModal/components/SuccessModal.d.ts +13 -0
  52. package/dist/src/components/WalletModal/components/SuccessModal.js +8 -0
  53. package/dist/src/components/WalletModal/components/SuccessModal.js.map +1 -0
  54. package/dist/src/components/WalletModal/components/UserAvatar.d.ts +9 -0
  55. package/dist/src/components/WalletModal/components/UserAvatar.js +31 -0
  56. package/dist/src/components/WalletModal/components/UserAvatar.js.map +1 -0
  57. package/dist/src/components/WalletModal/components/index.d.ts +21 -0
  58. package/dist/src/components/WalletModal/components/index.js +13 -0
  59. package/dist/src/components/WalletModal/components/index.js.map +1 -0
  60. package/dist/src/components/WalletModal/hooks/index.d.ts +6 -0
  61. package/dist/src/components/WalletModal/hooks/index.js +7 -0
  62. package/dist/src/components/WalletModal/hooks/index.js.map +1 -0
  63. package/dist/src/components/WalletModal/hooks/useAddressValidation.d.ts +4 -0
  64. package/dist/src/components/WalletModal/hooks/useAddressValidation.js +17 -0
  65. package/dist/src/components/WalletModal/hooks/useAddressValidation.js.map +1 -0
  66. package/dist/src/components/WalletModal/hooks/useAmountValidation.d.ts +4 -0
  67. package/dist/src/components/WalletModal/hooks/useAmountValidation.js +29 -0
  68. package/dist/src/components/WalletModal/hooks/useAmountValidation.js.map +1 -0
  69. package/dist/src/components/WalletModal/hooks/useSendTransaction.d.ts +20 -0
  70. package/dist/src/components/WalletModal/hooks/useSendTransaction.js +55 -0
  71. package/dist/src/components/WalletModal/hooks/useSendTransaction.js.map +1 -0
  72. package/dist/src/components/WalletModal/index.d.ts +5 -0
  73. package/dist/src/components/WalletModal/index.js +7 -0
  74. package/dist/src/components/WalletModal/index.js.map +1 -0
  75. package/dist/src/components/WalletModal/utils/addressUtils.d.ts +19 -0
  76. package/dist/src/components/WalletModal/utils/addressUtils.js +62 -0
  77. package/dist/src/components/WalletModal/utils/addressUtils.js.map +1 -0
  78. package/dist/src/components/WalletModal/utils/formatUtils.d.ts +20 -0
  79. package/dist/src/components/WalletModal/utils/formatUtils.js +47 -0
  80. package/dist/src/components/WalletModal/utils/formatUtils.js.map +1 -0
  81. package/dist/src/components/WalletModal/utils/index.d.ts +5 -0
  82. package/dist/src/components/WalletModal/utils/index.js +6 -0
  83. package/dist/src/components/WalletModal/utils/index.js.map +1 -0
  84. package/dist/src/index.d.ts +2 -1
  85. package/dist/src/index.js +1 -0
  86. package/dist/src/index.js.map +1 -1
  87. package/dist/src/types.d.ts +29 -0
  88. package/dist/src/wagmiConfig.js +6 -2
  89. package/dist/src/wagmiConfig.js.map +1 -1
  90. package/dist/tsconfig.tsbuildinfo +1 -1
  91. package/package.json +8 -8
@@ -28,11 +28,13 @@
28
28
  max-width: 400px;
29
29
  max-height: 90vh;
30
30
  overflow-y: auto;
31
+ overflow-x: hidden;
31
32
  padding: 24px;
32
33
  animation: slideUp 0.3s ease-out;
33
34
  display: flex;
34
35
  flex-direction: column;
35
36
  gap: 20px;
37
+ box-sizing: border-box;
36
38
  }
37
39
 
38
40
  /* Dark Theme Content */
@@ -74,6 +76,15 @@
74
76
  align-items: flex-start;
75
77
  justify-content: space-between;
76
78
  margin-bottom: 8px;
79
+ gap: 12px;
80
+ }
81
+
82
+ .wallet-modal-header-left {
83
+ display: flex;
84
+ align-items: center;
85
+ gap: 12px;
86
+ flex: 1;
87
+ min-width: 0;
77
88
  }
78
89
 
79
90
  .wallet-modal-user-info {
@@ -81,6 +92,14 @@
81
92
  align-items: center;
82
93
  gap: 12px;
83
94
  flex: 1;
95
+ min-width: 0;
96
+ }
97
+
98
+ .wallet-modal-header-right {
99
+ display: flex;
100
+ align-items: center;
101
+ gap: 8px;
102
+ flex-shrink: 0;
84
103
  }
85
104
 
86
105
  .wallet-modal-avatar {
@@ -95,18 +114,18 @@
95
114
  flex-shrink: 0;
96
115
  }
97
116
 
98
- .wallet-modal-avatar-icon {
117
+ .wallet-modal-theme-dark .wallet-modal-avatar {
118
+ background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
119
+ }
120
+
121
+ .wallet-modal-theme-light .wallet-modal-avatar {
122
+ background: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%);
123
+ }
124
+
125
+ .wallet-modal-avatar svg {
126
+ display: block;
99
127
  width: 32px;
100
128
  height: 32px;
101
- background: white;
102
- border-radius: 50%;
103
- display: flex;
104
- align-items: center;
105
- justify-content: center;
106
- position: absolute;
107
- bottom: -2px;
108
- right: -2px;
109
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
110
129
  }
111
130
 
112
131
  .wallet-modal-user-details {
@@ -115,6 +134,8 @@
115
134
  gap: 4px;
116
135
  flex: 1;
117
136
  min-width: 0;
137
+ text-align: left;
138
+ align-items: flex-start;
118
139
  }
119
140
 
120
141
  .wallet-modal-address {
@@ -161,11 +182,51 @@
161
182
  color: #111827;
162
183
  }
163
184
 
185
+ .wallet-modal-copy-notification {
186
+ font-size: 12px;
187
+ font-weight: 500;
188
+ padding: 2px 6px;
189
+ border-radius: 4px;
190
+ flex-shrink: 0;
191
+ animation: fadeInOut 2s ease-in-out;
192
+ }
193
+
194
+ .wallet-modal-theme-dark .wallet-modal-copy-notification {
195
+ color: #10b981;
196
+ background: rgba(16, 185, 129, 0.1);
197
+ }
198
+
199
+ .wallet-modal-theme-light .wallet-modal-copy-notification {
200
+ color: #059669;
201
+ background: rgba(5, 150, 105, 0.1);
202
+ }
203
+
204
+ @keyframes fadeInOut {
205
+ 0% {
206
+ opacity: 0;
207
+ transform: scale(0.9);
208
+ }
209
+ 15% {
210
+ opacity: 1;
211
+ transform: scale(1);
212
+ }
213
+ 85% {
214
+ opacity: 1;
215
+ transform: scale(1);
216
+ }
217
+ 100% {
218
+ opacity: 0;
219
+ transform: scale(0.9);
220
+ }
221
+ }
222
+
164
223
  .wallet-modal-email {
165
224
  font-size: 14px;
166
225
  overflow: hidden;
167
226
  text-overflow: ellipsis;
168
227
  white-space: nowrap;
228
+ text-align: left;
229
+ max-width: 100%;
169
230
  }
170
231
 
171
232
  .wallet-modal-theme-dark .wallet-modal-email {
@@ -191,6 +252,11 @@
191
252
  height: 40px;
192
253
  }
193
254
 
255
+ .wallet-modal-close:disabled {
256
+ opacity: 0.5;
257
+ cursor: not-allowed;
258
+ }
259
+
194
260
  .wallet-modal-theme-dark .wallet-modal-close {
195
261
  color: #9ca3af;
196
262
  }
@@ -223,12 +289,14 @@
223
289
  display: flex;
224
290
  flex-direction: column;
225
291
  align-items: center;
292
+ justify-content: center;
226
293
  gap: 8px;
227
294
  cursor: pointer;
228
295
  transition: all 0.2s;
229
296
  font-size: 14px;
230
297
  font-weight: 500;
231
298
  border: 1px solid;
299
+ text-align: center;
232
300
  }
233
301
 
234
302
  .wallet-modal-theme-dark .wallet-modal-action-btn {
@@ -256,6 +324,14 @@
256
324
  }
257
325
 
258
326
  .wallet-modal-action-btn svg {
327
+ flex-shrink: 0;
328
+ }
329
+
330
+ .wallet-modal-theme-dark .wallet-modal-action-btn svg {
331
+ color: #a855f7;
332
+ }
333
+
334
+ .wallet-modal-theme-light .wallet-modal-action-btn svg {
259
335
  color: #9333ea;
260
336
  }
261
337
 
@@ -386,6 +462,9 @@
386
462
  cursor: pointer;
387
463
  transition: all 0.2s;
388
464
  font-size: 15px;
465
+ text-align: left;
466
+ width: 100%;
467
+ justify-content: flex-start;
389
468
  font-weight: 500;
390
469
  text-align: left;
391
470
  width: 100%;
@@ -419,10 +498,47 @@
419
498
  color: #6b7280;
420
499
  }
421
500
 
422
- .wallet-modal-menu-item:hover svg {
501
+ .wallet-modal-theme-dark .wallet-modal-menu-item:hover svg {
502
+ color: #a855f7;
503
+ }
504
+
505
+ .wallet-modal-theme-light .wallet-modal-menu-item:hover svg {
423
506
  color: #9333ea;
424
507
  }
425
508
 
509
+ /* Disconnect button - Red theme */
510
+ .wallet-modal-menu-item-disconnect {
511
+ color: #ef4444 !important;
512
+ }
513
+
514
+ .wallet-modal-menu-item-disconnect svg {
515
+ color: #ef4444 !important;
516
+ }
517
+
518
+ .wallet-modal-menu-item-disconnect:hover {
519
+ background: rgba(239, 68, 68, 0.1) !important;
520
+ }
521
+
522
+ .wallet-modal-menu-item-disconnect:hover svg {
523
+ color: #dc2626 !important;
524
+ }
525
+
526
+ .wallet-modal-theme-dark .wallet-modal-menu-item-disconnect {
527
+ color: #ef4444 !important;
528
+ }
529
+
530
+ .wallet-modal-theme-dark .wallet-modal-menu-item-disconnect svg {
531
+ color: #ef4444 !important;
532
+ }
533
+
534
+ .wallet-modal-theme-dark .wallet-modal-menu-item-disconnect:hover {
535
+ background: rgba(239, 68, 68, 0.15) !important;
536
+ }
537
+
538
+ .wallet-modal-theme-dark .wallet-modal-menu-item-disconnect:hover svg {
539
+ color: #f87171 !important;
540
+ }
541
+
426
542
  /* Divider */
427
543
  .wallet-modal-divider {
428
544
  height: 1px;
@@ -466,6 +582,7 @@
466
582
  padding: 14px 16px;
467
583
  display: flex;
468
584
  align-items: center;
585
+ justify-content: flex-start;
469
586
  gap: 12px;
470
587
  color: #ef4444;
471
588
  cursor: pointer;
@@ -475,6 +592,7 @@
475
592
  width: 100%;
476
593
  margin-top: 8px;
477
594
  border: 1px solid;
595
+ text-align: left;
478
596
  }
479
597
 
480
598
  .wallet-modal-theme-dark .wallet-modal-disconnect {
@@ -532,18 +650,1850 @@
532
650
  background: #9ca3af;
533
651
  }
534
652
 
535
- /* Responsive */
536
- @media (max-width: 480px) {
537
- .wallet-modal-content {
538
- width: 100%;
539
- max-width: 100%;
540
- border-radius: 16px 16px 0 0;
541
- max-height: 95vh;
542
- padding: 20px;
543
- }
653
+ /* Balance Display */
654
+ .wallet-modal-balance {
655
+ border-radius: 12px;
656
+ padding: 20px;
657
+ display: flex;
658
+ flex-direction: column;
659
+ gap: 8px;
660
+ margin-top: 8px;
661
+ border: 1px solid;
662
+ background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(126, 34, 206, 0.1) 100%);
663
+ text-align: left;
664
+ }
544
665
 
545
- .wallet-modal-overlay {
546
- align-items: flex-end;
547
- }
666
+ .wallet-modal-theme-dark .wallet-modal-balance {
667
+ border-color: #3a3a3a;
668
+ background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(147, 51, 234, 0.15) 100%);
669
+ }
670
+
671
+ .wallet-modal-theme-light .wallet-modal-balance {
672
+ border-color: #e5e7eb;
673
+ background: linear-gradient(135deg, rgba(147, 51, 234, 0.05) 0%, rgba(126, 34, 206, 0.05) 100%);
674
+ }
675
+
676
+ .wallet-modal-balance-label {
677
+ font-size: 14px;
678
+ font-weight: 500;
679
+ text-align: left;
680
+ }
681
+
682
+ .wallet-modal-theme-dark .wallet-modal-balance-label {
683
+ color: #9ca3af;
684
+ }
685
+
686
+ .wallet-modal-theme-light .wallet-modal-balance-label {
687
+ color: #6b7280;
688
+ }
689
+
690
+ .wallet-modal-balance-value {
691
+ font-size: 28px;
692
+ font-weight: 700;
693
+ display: flex;
694
+ align-items: center;
695
+ gap: 8px;
696
+ font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', 'Courier New', monospace;
697
+ text-align: left;
698
+ }
699
+
700
+ .wallet-modal-theme-dark .wallet-modal-balance-value {
701
+ color: #ffffff;
702
+ }
703
+
704
+ .wallet-modal-theme-light .wallet-modal-balance-value {
705
+ color: #111827;
706
+ }
707
+
708
+ /* Receive Modal */
709
+ .wallet-modal-receive-header {
710
+ display: flex;
711
+ align-items: center;
712
+ justify-content: space-between;
713
+ margin-bottom: 24px;
714
+ }
715
+
716
+ .wallet-modal-back {
717
+ background: transparent;
718
+ border: none;
719
+ cursor: pointer;
720
+ padding: 8px;
721
+ display: flex;
722
+ align-items: center;
723
+ justify-content: center;
724
+ border-radius: 8px;
725
+ transition: all 0.2s;
726
+ width: 40px;
727
+ height: 40px;
728
+ }
729
+
730
+ .wallet-modal-back:disabled {
731
+ opacity: 0.5;
732
+ cursor: not-allowed;
733
+ }
734
+
735
+ .wallet-modal-theme-dark .wallet-modal-back {
736
+ color: #9ca3af;
737
+ }
738
+
739
+ .wallet-modal-theme-light .wallet-modal-back {
740
+ color: #6b7280;
741
+ }
742
+
743
+ .wallet-modal-theme-dark .wallet-modal-back:hover {
744
+ background: #2a2a2a;
745
+ color: #ffffff;
746
+ }
747
+
748
+ .wallet-modal-theme-light .wallet-modal-back:hover {
749
+ background: #f3f4f6;
750
+ color: #111827;
751
+ }
752
+
753
+ .wallet-modal-settings {
754
+ width: 40px;
755
+ height: 40px;
756
+ display: flex;
757
+ align-items: center;
758
+ justify-content: center;
759
+ background: transparent;
760
+ border: none;
761
+ cursor: pointer;
762
+ border-radius: 8px;
763
+ transition: all 0.2s ease;
764
+ padding: 0;
765
+ color: inherit;
766
+ }
767
+
768
+ .wallet-modal-theme-dark .wallet-modal-settings {
769
+ color: #9ca3af;
770
+ }
771
+
772
+ .wallet-modal-theme-light .wallet-modal-settings {
773
+ color: #6b7280;
774
+ }
775
+
776
+ .wallet-modal-theme-dark .wallet-modal-settings:hover {
777
+ background: #2a2a2a;
778
+ color: #ffffff;
779
+ }
780
+
781
+ .wallet-modal-theme-light .wallet-modal-settings:hover {
782
+ background: #f3f4f6;
783
+ color: #111827;
784
+ }
785
+
786
+ .wallet-modal-receive-title {
787
+ font-size: 20px;
788
+ font-weight: 600;
789
+ margin: 0;
790
+ }
791
+
792
+ .wallet-modal-theme-dark .wallet-modal-receive-title {
793
+ color: #ffffff;
794
+ }
795
+
796
+ .wallet-modal-theme-light .wallet-modal-receive-title {
797
+ color: #111827;
798
+ }
799
+
800
+ .wallet-modal-receive-content {
801
+ display: flex;
802
+ flex-direction: column;
803
+ align-items: center;
804
+ gap: 24px;
805
+ }
806
+
807
+ .wallet-modal-qr-container {
808
+ padding: 20px;
809
+ background: #ffffff;
810
+ border-radius: 16px;
811
+ display: flex;
812
+ align-items: center;
813
+ justify-content: center;
814
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
815
+ }
816
+
817
+ .wallet-modal-address-section {
818
+ width: 100%;
819
+ display: flex;
820
+ flex-direction: column;
821
+ gap: 12px;
822
+ }
823
+
824
+ .wallet-modal-address-label {
825
+ font-size: 14px;
826
+ font-weight: 500;
827
+ text-align: center;
828
+ }
829
+
830
+ .wallet-modal-theme-dark .wallet-modal-address-label {
831
+ color: #9ca3af;
832
+ }
833
+
834
+ .wallet-modal-theme-light .wallet-modal-address-label {
835
+ color: #6b7280;
836
+ }
837
+
838
+ .wallet-modal-address-display {
839
+ display: flex;
840
+ align-items: center;
841
+ gap: 12px;
842
+ padding: 12px 16px;
843
+ border-radius: 12px;
844
+ border: 1px solid;
845
+ }
846
+
847
+ .wallet-modal-theme-dark .wallet-modal-address-display {
848
+ background: #2a2a2a;
849
+ border-color: #3a3a3a;
850
+ }
851
+
852
+ .wallet-modal-theme-light .wallet-modal-address-display {
853
+ background: #f9fafb;
854
+ border-color: #e5e7eb;
855
+ }
856
+
857
+ .wallet-modal-address-full {
858
+ flex: 1;
859
+ font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', 'Courier New', monospace;
860
+ font-size: 14px;
861
+ word-break: break-all;
862
+ text-align: left;
863
+ }
864
+
865
+ .wallet-modal-theme-dark .wallet-modal-address-full {
866
+ color: #ffffff;
867
+ }
868
+
869
+ .wallet-modal-theme-light .wallet-modal-address-full {
870
+ color: #111827;
871
+ }
872
+
873
+ .wallet-modal-copy-btn {
874
+ display: flex;
875
+ align-items: center;
876
+ gap: 6px;
877
+ padding: 8px 12px;
878
+ border-radius: 8px;
879
+ border: 1px solid;
880
+ background: transparent;
881
+ cursor: pointer;
882
+ transition: all 0.2s;
883
+ font-size: 14px;
884
+ font-weight: 500;
885
+ white-space: nowrap;
886
+ }
887
+
888
+ .wallet-modal-theme-dark .wallet-modal-copy-btn {
889
+ color: #ffffff;
890
+ border-color: #3a3a3a;
891
+ }
892
+
893
+ .wallet-modal-theme-light .wallet-modal-copy-btn {
894
+ color: #111827;
895
+ border-color: #e5e7eb;
896
+ }
897
+
898
+ .wallet-modal-theme-dark .wallet-modal-copy-btn:hover {
899
+ background: #3a3a3a;
900
+ border-color: #4a4a4a;
901
+ }
902
+
903
+ .wallet-modal-theme-light .wallet-modal-copy-btn:hover {
904
+ background: #f3f4f6;
905
+ border-color: #d1d5db;
906
+ }
907
+
908
+ .wallet-modal-copy-btn.copied {
909
+ background: #10b981;
910
+ border-color: #10b981;
911
+ color: #ffffff;
912
+ }
913
+
914
+ .wallet-modal-address-hint {
915
+ font-size: 13px;
916
+ text-align: center;
917
+ margin: 0;
918
+ }
919
+
920
+ .wallet-modal-theme-dark .wallet-modal-address-hint {
921
+ color: #9ca3af;
922
+ }
923
+
924
+ .wallet-modal-theme-light .wallet-modal-address-hint {
925
+ color: #6b7280;
926
+ }
927
+
928
+ /* Send Modal */
929
+ .wallet-modal-send-content {
930
+ display: flex;
931
+ flex-direction: column;
932
+ gap: 20px;
933
+ padding: 20px 0;
934
+ }
935
+
936
+ .wallet-modal-send-field {
937
+ display: flex;
938
+ flex-direction: column;
939
+ gap: 8px;
940
+ }
941
+
942
+ .wallet-modal-send-label {
943
+ font-size: 14px;
944
+ font-weight: 500;
945
+ text-align: left;
946
+ }
947
+
948
+ .wallet-modal-theme-dark .wallet-modal-send-label {
949
+ color: #9ca3af;
950
+ }
951
+
952
+ .wallet-modal-theme-light .wallet-modal-send-label {
953
+ color: #6b7280;
954
+ }
955
+
956
+ /* Token Selector */
957
+ .wallet-modal-send-token-selector-wrapper {
958
+ position: relative;
959
+ width: 100%;
960
+ }
961
+
962
+ .wallet-modal-send-token-selector {
963
+ width: 100%;
964
+ padding: 14px 16px;
965
+ border-radius: 12px;
966
+ border: 1px solid;
967
+ background: transparent;
968
+ cursor: pointer;
969
+ transition: all 0.2s;
970
+ display: flex;
971
+ align-items: center;
972
+ justify-content: space-between;
973
+ gap: 12px;
974
+ }
975
+
976
+ .wallet-modal-send-chain-dropdown {
977
+ position: absolute;
978
+ top: calc(100% + 8px);
979
+ left: 0;
980
+ right: 0;
981
+ width: 100%;
982
+ z-index: 10001;
983
+ border-radius: 12px;
984
+ border: 1px solid;
985
+ overflow: hidden;
986
+ box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
987
+ }
988
+
989
+ .wallet-modal-theme-dark .wallet-modal-send-chain-dropdown {
990
+ background: #1a1a1a;
991
+ border-color: #3a3a3a;
992
+ }
993
+
994
+ .wallet-modal-theme-light .wallet-modal-send-chain-dropdown {
995
+ background: #ffffff;
996
+ border-color: #e5e7eb;
997
+ }
998
+
999
+ .wallet-modal-theme-dark .wallet-modal-send-token-selector {
1000
+ border-color: #3a3a3a;
1001
+ background: #2a2a2a;
1002
+ color: #ffffff;
1003
+ }
1004
+
1005
+ .wallet-modal-theme-light .wallet-modal-send-token-selector {
1006
+ border-color: #e5e7eb;
1007
+ background: #f9fafb;
1008
+ color: #111827;
1009
+ }
1010
+
1011
+ .wallet-modal-theme-dark .wallet-modal-send-token-selector:hover {
1012
+ background: #3a3a3a;
1013
+ border-color: #4a4a4a;
1014
+ }
1015
+
1016
+ .wallet-modal-theme-light .wallet-modal-send-token-selector:hover {
1017
+ background: #f3f4f6;
1018
+ border-color: #d1d5db;
1019
+ }
1020
+
1021
+ .wallet-modal-send-token-info {
1022
+ display: flex;
1023
+ align-items: center;
1024
+ gap: 12px;
1025
+ flex: 1;
1026
+ min-width: 0;
1027
+ }
1028
+
1029
+ .wallet-modal-send-token-name {
1030
+ font-size: 15px;
1031
+ font-weight: 500;
1032
+ }
1033
+
1034
+ /* Amount Input */
1035
+ .wallet-modal-send-amount-wrapper {
1036
+ display: flex;
1037
+ align-items: center;
1038
+ border-radius: 12px;
1039
+ border: 1px solid;
1040
+ overflow: hidden;
1041
+ background: transparent;
1042
+ }
1043
+
1044
+ .wallet-modal-theme-dark .wallet-modal-send-amount-wrapper {
1045
+ border-color: #3a3a3a;
1046
+ background: #2a2a2a;
1047
+ }
1048
+
1049
+ .wallet-modal-theme-light .wallet-modal-send-amount-wrapper {
1050
+ border-color: #e5e7eb;
1051
+ background: #f9fafb;
1052
+ }
1053
+
1054
+ .wallet-modal-send-amount-wrapper.error {
1055
+ border-color: #ef4444;
1056
+ }
1057
+
1058
+ .wallet-modal-send-amount-prefix {
1059
+ padding: 14px 16px;
1060
+ font-size: 15px;
1061
+ font-weight: 500;
1062
+ flex-shrink: 0;
1063
+ border-right: 1px solid;
1064
+ }
1065
+
1066
+ .wallet-modal-theme-dark .wallet-modal-send-amount-prefix {
1067
+ color: #ffffff;
1068
+ border-color: #3a3a3a;
1069
+ }
1070
+
1071
+ .wallet-modal-theme-light .wallet-modal-send-amount-prefix {
1072
+ color: #111827;
1073
+ border-color: #e5e7eb;
1074
+ }
1075
+
1076
+ .wallet-modal-send-amount-input {
1077
+ flex: 1;
1078
+ padding: 14px 16px;
1079
+ border: none;
1080
+ background: transparent;
1081
+ font-size: 16px;
1082
+ font-weight: 500;
1083
+ outline: none;
1084
+ min-width: 0;
1085
+ }
1086
+
1087
+ .wallet-modal-theme-dark .wallet-modal-send-amount-input {
1088
+ color: #ffffff;
1089
+ }
1090
+
1091
+ .wallet-modal-theme-light .wallet-modal-send-amount-input {
1092
+ color: #111827;
1093
+ }
1094
+
1095
+ .wallet-modal-send-amount-input::placeholder {
1096
+ opacity: 0.5;
1097
+ }
1098
+
1099
+ .wallet-modal-send-amount-suffix {
1100
+ padding: 14px 16px;
1101
+ font-size: 14px;
1102
+ flex-shrink: 0;
1103
+ opacity: 0.7;
1104
+ }
1105
+
1106
+ .wallet-modal-theme-dark .wallet-modal-send-amount-suffix {
1107
+ color: #9ca3af;
1108
+ }
1109
+
1110
+ .wallet-modal-theme-light .wallet-modal-send-amount-suffix {
1111
+ color: #6b7280;
1112
+ }
1113
+
1114
+ .wallet-modal-send-balance {
1115
+ display: flex;
1116
+ align-items: center;
1117
+ gap: 8px;
1118
+ font-size: 12px;
1119
+ margin-top: 4px;
1120
+ }
1121
+
1122
+ .wallet-modal-send-balance-label {
1123
+ opacity: 0.7;
1124
+ }
1125
+
1126
+ .wallet-modal-send-balance-value {
1127
+ font-weight: 500;
1128
+ }
1129
+
1130
+ .wallet-modal-theme-dark .wallet-modal-send-balance {
1131
+ color: #9ca3af;
1132
+ }
1133
+
1134
+ .wallet-modal-theme-light .wallet-modal-send-balance {
1135
+ color: #6b7280;
1136
+ }
1137
+
1138
+ /* Address Input */
1139
+ .wallet-modal-send-address-input {
1140
+ width: 100%;
1141
+ padding: 14px 16px;
1142
+ border-radius: 12px;
1143
+ border: 1px solid;
1144
+ background: transparent;
1145
+ font-size: 14px;
1146
+ font-family: monospace;
1147
+ outline: none;
1148
+ transition: all 0.2s;
1149
+ box-sizing: border-box;
1150
+ }
1151
+
1152
+ .wallet-modal-theme-dark .wallet-modal-send-address-input {
1153
+ border-color: #3a3a3a;
1154
+ background: #2a2a2a;
1155
+ color: #ffffff;
1156
+ }
1157
+
1158
+ .wallet-modal-theme-light .wallet-modal-send-address-input {
1159
+ border-color: #e5e7eb;
1160
+ background: #f9fafb;
1161
+ color: #111827;
1162
+ }
1163
+
1164
+ .wallet-modal-send-address-input.error {
1165
+ border-color: #ef4444;
1166
+ }
1167
+
1168
+ .wallet-modal-send-address-input:focus {
1169
+ border-color: #9333ea;
1170
+ }
1171
+
1172
+ .wallet-modal-theme-dark .wallet-modal-send-address-input:focus {
1173
+ border-color: #a855f7;
1174
+ }
1175
+
1176
+ .wallet-modal-theme-light .wallet-modal-send-address-input:focus {
1177
+ border-color: #9333ea;
1178
+ }
1179
+
1180
+ .wallet-modal-send-address-input::placeholder {
1181
+ opacity: 0.5;
1182
+ }
1183
+
1184
+ /* Error Messages */
1185
+ .wallet-modal-send-error {
1186
+ font-size: 12px;
1187
+ color: #ef4444;
1188
+ margin-top: 4px;
1189
+ text-align: left;
1190
+ }
1191
+
1192
+ /* Preview Transaction Button */
1193
+ .wallet-modal-send-preview-btn {
1194
+ width: 100%;
1195
+ padding: 14px 24px;
1196
+ border-radius: 12px;
1197
+ border: none;
1198
+ font-size: 16px;
1199
+ font-weight: 600;
1200
+ cursor: pointer;
1201
+ transition: all 0.2s;
1202
+ display: flex;
1203
+ align-items: center;
1204
+ justify-content: center;
1205
+ gap: 8px;
1206
+ margin-top: 8px;
1207
+ }
1208
+
1209
+ .wallet-modal-send-preview-btn.disabled {
1210
+ opacity: 0.5;
1211
+ cursor: not-allowed;
1212
+ }
1213
+
1214
+ .wallet-modal-theme-dark .wallet-modal-send-preview-btn {
1215
+ background: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%);
1216
+ color: #ffffff;
1217
+ }
1218
+
1219
+ .wallet-modal-theme-light .wallet-modal-send-preview-btn {
1220
+ background: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%);
1221
+ color: #ffffff;
1222
+ }
1223
+
1224
+ .wallet-modal-theme-dark .wallet-modal-send-preview-btn:hover:not(.disabled) {
1225
+ background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
1226
+ transform: translateY(-1px);
1227
+ box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
1228
+ }
1229
+
1230
+ .wallet-modal-theme-light .wallet-modal-send-preview-btn:hover:not(.disabled) {
1231
+ background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
1232
+ transform: translateY(-1px);
1233
+ box-shadow: 0 4px 12px rgba(147, 51, 234, 0.2);
1234
+ }
1235
+
1236
+ /* Preview Modal */
1237
+ .wallet-modal-preview-content {
1238
+ padding: 20px 0;
1239
+ display: flex;
1240
+ flex-direction: column;
1241
+ gap: 24px;
1242
+ }
1243
+
1244
+ .wallet-modal-preview-section {
1245
+ display: flex;
1246
+ flex-direction: column;
1247
+ gap: 16px;
1248
+ padding: 20px;
1249
+ border-radius: 12px;
1250
+ border: 1px solid;
1251
+ }
1252
+
1253
+ .wallet-modal-theme-dark .wallet-modal-preview-section {
1254
+ background: #2a2a2a;
1255
+ border-color: #3a3a3a;
1256
+ }
1257
+
1258
+ .wallet-modal-theme-light .wallet-modal-preview-section {
1259
+ background: #f9fafb;
1260
+ border-color: #e5e7eb;
1261
+ }
1262
+
1263
+ .wallet-modal-preview-item {
1264
+ display: flex;
1265
+ flex-direction: column;
1266
+ gap: 4px;
1267
+ }
1268
+
1269
+ .wallet-modal-preview-label {
1270
+ font-size: 12px;
1271
+ opacity: 0.7;
1272
+ text-align: left;
1273
+ }
1274
+
1275
+ .wallet-modal-preview-value {
1276
+ font-size: 14px;
1277
+ font-weight: 500;
1278
+ word-break: break-all;
1279
+ text-align: left;
1280
+ }
1281
+
1282
+ .wallet-modal-theme-dark .wallet-modal-preview-label,
1283
+ .wallet-modal-theme-dark .wallet-modal-preview-value {
1284
+ color: #ffffff;
1285
+ }
1286
+
1287
+ .wallet-modal-theme-light .wallet-modal-preview-label,
1288
+ .wallet-modal-theme-light .wallet-modal-preview-value {
1289
+ color: #111827;
1290
+ }
1291
+
1292
+ .wallet-modal-preview-actions {
1293
+ display: flex;
1294
+ flex-direction: column;
1295
+ gap: 12px;
1296
+ }
1297
+
1298
+ .wallet-modal-preview-btn {
1299
+ width: 100%;
1300
+ padding: 14px 24px;
1301
+ border-radius: 12px;
1302
+ border: none;
1303
+ font-size: 16px;
1304
+ font-weight: 600;
1305
+ cursor: pointer;
1306
+ transition: all 0.2s;
1307
+ display: flex;
1308
+ align-items: center;
1309
+ justify-content: center;
1310
+ gap: 8px;
1311
+ }
1312
+
1313
+ .wallet-modal-preview-btn:disabled {
1314
+ opacity: 0.5;
1315
+ cursor: not-allowed;
1316
+ }
1317
+
1318
+ .wallet-modal-preview-btn-primary {
1319
+ background: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%);
1320
+ color: #ffffff;
1321
+ }
1322
+
1323
+ .wallet-modal-preview-btn-primary:hover:not(:disabled) {
1324
+ background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
1325
+ transform: translateY(-1px);
1326
+ box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
1327
+ }
1328
+
1329
+ .wallet-modal-preview-btn-secondary {
1330
+ background: transparent;
1331
+ border: 1px solid;
1332
+ }
1333
+
1334
+ .wallet-modal-theme-dark .wallet-modal-preview-btn-secondary {
1335
+ border-color: #3a3a3a;
1336
+ color: #ffffff;
1337
+ }
1338
+
1339
+ .wallet-modal-theme-light .wallet-modal-preview-btn-secondary {
1340
+ border-color: #e5e7eb;
1341
+ color: #111827;
1342
+ }
1343
+
1344
+ .wallet-modal-theme-dark .wallet-modal-preview-btn-secondary:hover:not(:disabled) {
1345
+ background: #3a3a3a;
1346
+ }
1347
+
1348
+ .wallet-modal-theme-light .wallet-modal-preview-btn-secondary:hover:not(:disabled) {
1349
+ background: #f3f4f6;
1350
+ }
1351
+
1352
+ /* Success Modal */
1353
+ .wallet-modal-success-content {
1354
+ padding: 40px 20px;
1355
+ display: flex;
1356
+ flex-direction: column;
1357
+ align-items: center;
1358
+ gap: 20px;
1359
+ text-align: center;
1360
+ }
1361
+
1362
+ .wallet-modal-success-icon {
1363
+ width: 64px;
1364
+ height: 64px;
1365
+ display: flex;
1366
+ align-items: center;
1367
+ justify-content: center;
1368
+ }
1369
+
1370
+ .wallet-modal-success-title {
1371
+ font-size: 24px;
1372
+ font-weight: 600;
1373
+ margin: 0;
1374
+ }
1375
+
1376
+ .wallet-modal-theme-dark .wallet-modal-success-title {
1377
+ color: #ffffff;
1378
+ }
1379
+
1380
+ .wallet-modal-theme-light .wallet-modal-success-title {
1381
+ color: #111827;
1382
+ }
1383
+
1384
+ .wallet-modal-success-message {
1385
+ font-size: 14px;
1386
+ opacity: 0.7;
1387
+ margin: 0;
1388
+ }
1389
+
1390
+ .wallet-modal-theme-dark .wallet-modal-success-message {
1391
+ color: #9ca3af;
1392
+ }
1393
+
1394
+ .wallet-modal-theme-light .wallet-modal-success-message {
1395
+ color: #6b7280;
1396
+ }
1397
+
1398
+ .wallet-modal-success-link {
1399
+ font-size: 14px;
1400
+ text-decoration: none;
1401
+ padding: 8px 16px;
1402
+ border-radius: 8px;
1403
+ transition: all 0.2s;
1404
+ }
1405
+
1406
+ .wallet-modal-theme-dark .wallet-modal-success-link {
1407
+ color: #a855f7;
1408
+ background: rgba(147, 51, 234, 0.1);
1409
+ }
1410
+
1411
+ .wallet-modal-theme-light .wallet-modal-success-link {
1412
+ color: #9333ea;
1413
+ background: rgba(147, 51, 234, 0.1);
1414
+ }
1415
+
1416
+ .wallet-modal-success-link:hover {
1417
+ background: rgba(147, 51, 234, 0.2);
1418
+ }
1419
+
1420
+ .wallet-modal-success-btn {
1421
+ width: 100%;
1422
+ padding: 14px 24px;
1423
+ border-radius: 12px;
1424
+ border: none;
1425
+ font-size: 16px;
1426
+ font-weight: 600;
1427
+ cursor: pointer;
1428
+ transition: all 0.2s;
1429
+ background: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%);
1430
+ color: #ffffff;
1431
+ }
1432
+
1433
+ .wallet-modal-success-btn:hover {
1434
+ background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
1435
+ transform: translateY(-1px);
1436
+ box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
1437
+ }
1438
+
1439
+ .wallet-modal-action-btn-primary {
1440
+ padding: 14px 24px;
1441
+ border-radius: 12px;
1442
+ border: none;
1443
+ font-size: 15px;
1444
+ font-weight: 600;
1445
+ cursor: pointer;
1446
+ transition: all 0.2s;
1447
+ background: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%);
1448
+ color: #ffffff;
1449
+ }
1450
+
1451
+ .wallet-modal-action-btn-primary:hover {
1452
+ transform: translateY(-2px);
1453
+ box-shadow: 0 4px 12px rgba(147, 51, 234, 0.4);
1454
+ }
1455
+
1456
+ /* Manage Modal */
1457
+ .wallet-modal-manage-content {
1458
+ display: flex;
1459
+ flex-direction: column;
1460
+ gap: 32px;
1461
+ }
1462
+
1463
+ .wallet-modal-manage-section {
1464
+ display: flex;
1465
+ flex-direction: column;
1466
+ gap: 20px;
1467
+ }
1468
+
1469
+ .wallet-modal-manage-section-title {
1470
+ font-size: 16px;
1471
+ font-weight: 600;
1472
+ margin: 0;
1473
+ text-align: left;
1474
+ letter-spacing: -0.01em;
1475
+ }
1476
+
1477
+ .wallet-modal-theme-dark .wallet-modal-manage-section-title {
1478
+ color: #ffffff;
1479
+ }
1480
+
1481
+ .wallet-modal-theme-light .wallet-modal-manage-section-title {
1482
+ color: #111827;
1483
+ }
1484
+
1485
+ .wallet-modal-manage-item {
1486
+ display: flex;
1487
+ flex-direction: column;
1488
+ gap: 8px;
1489
+ padding: 16px 0;
1490
+ border-bottom: 1px solid;
1491
+ }
1492
+
1493
+ .wallet-modal-theme-dark .wallet-modal-manage-item {
1494
+ border-color: #3a3a3a;
1495
+ }
1496
+
1497
+ .wallet-modal-theme-light .wallet-modal-manage-item {
1498
+ border-color: #e5e7eb;
1499
+ }
1500
+
1501
+ .wallet-modal-manage-item:last-child {
1502
+ border-bottom: none;
1503
+ }
1504
+
1505
+ .wallet-modal-manage-label {
1506
+ font-size: 13px;
1507
+ font-weight: 500;
1508
+ text-align: left;
1509
+ letter-spacing: 0.01em;
1510
+ }
1511
+
1512
+ .wallet-modal-theme-dark .wallet-modal-manage-label {
1513
+ color: #9ca3af;
1514
+ }
1515
+
1516
+ .wallet-modal-theme-light .wallet-modal-manage-label {
1517
+ color: #6b7280;
1518
+ }
1519
+
1520
+ .wallet-modal-manage-value {
1521
+ font-size: 15px;
1522
+ font-weight: 500;
1523
+ display: flex;
1524
+ align-items: center;
1525
+ justify-content: space-between;
1526
+ gap: 12px;
1527
+ text-align: left;
1528
+ word-break: break-word;
1529
+ }
1530
+
1531
+ .wallet-modal-theme-dark .wallet-modal-manage-value {
1532
+ color: #ffffff;
1533
+ }
1534
+
1535
+ .wallet-modal-theme-light .wallet-modal-manage-value {
1536
+ color: #111827;
1537
+ }
1538
+
1539
+ .wallet-modal-manage-value > span:not(.wallet-modal-manage-address-text) {
1540
+ flex: 1;
1541
+ text-align: left;
1542
+ min-width: 0;
1543
+ }
1544
+
1545
+ .wallet-modal-manage-address-text {
1546
+ flex: 1;
1547
+ font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', 'Courier New', monospace;
1548
+ font-size: 14px;
1549
+ word-break: break-all;
1550
+ min-width: 0;
1551
+ }
1552
+
1553
+ .wallet-modal-manage-copy-btn {
1554
+ display: flex;
1555
+ align-items: center;
1556
+ gap: 6px;
1557
+ background: transparent;
1558
+ border: 1px solid;
1559
+ cursor: pointer;
1560
+ padding: 6px 12px;
1561
+ border-radius: 8px;
1562
+ transition: all 0.2s;
1563
+ font-size: 13px;
1564
+ font-weight: 500;
1565
+ flex-shrink: 0;
1566
+ white-space: nowrap;
1567
+ }
1568
+
1569
+ .wallet-modal-theme-dark .wallet-modal-manage-copy-btn {
1570
+ color: #9ca3af;
1571
+ border-color: #3a3a3a;
1572
+ }
1573
+
1574
+ .wallet-modal-theme-light .wallet-modal-manage-copy-btn {
1575
+ color: #6b7280;
1576
+ border-color: #e5e7eb;
1577
+ }
1578
+
1579
+ .wallet-modal-theme-dark .wallet-modal-manage-copy-btn:hover {
1580
+ background: #2a2a2a;
1581
+ border-color: #4a4a4a;
1582
+ color: #ffffff;
1583
+ }
1584
+
1585
+ .wallet-modal-theme-light .wallet-modal-manage-copy-btn:hover {
1586
+ background: #f3f4f6;
1587
+ border-color: #d1d5db;
1588
+ color: #111827;
1589
+ }
1590
+
1591
+ .wallet-modal-manage-copy-btn.copied {
1592
+ background: #10b981;
1593
+ border-color: #10b981;
1594
+ color: #ffffff;
1595
+ }
1596
+
1597
+ .wallet-modal-manage-copy-btn svg {
1598
+ flex-shrink: 0;
1599
+ }
1600
+
1601
+ /* Responsive */
1602
+ @media (max-width: 480px) {
1603
+ .wallet-modal-content {
1604
+ width: 100%;
1605
+ max-width: 100%;
1606
+ border-radius: 16px 16px 0 0;
1607
+ max-height: 95vh;
1608
+ padding: 20px;
1609
+ }
1610
+
1611
+ .wallet-modal-overlay {
1612
+ align-items: flex-end;
1613
+ }
1614
+
1615
+ .wallet-modal-qr-container {
1616
+ padding: 16px;
1617
+ }
1618
+
1619
+ .wallet-modal-address-display {
1620
+ flex-direction: column;
1621
+ align-items: stretch;
1622
+ }
1623
+
1624
+ .wallet-modal-copy-btn {
1625
+ width: 100%;
1626
+ justify-content: center;
1627
+ }
1628
+ }
1629
+
1630
+ /* Export & Backup Section */
1631
+ .wallet-modal-manage-action-item {
1632
+ display: flex;
1633
+ align-items: center;
1634
+ gap: 12px;
1635
+ padding: 16px;
1636
+ border-radius: 12px;
1637
+ border: 1px solid;
1638
+ cursor: pointer;
1639
+ transition: all 0.2s;
1640
+ width: 100%;
1641
+ text-align: left;
1642
+ background: transparent;
1643
+ }
1644
+
1645
+ .wallet-modal-theme-dark .wallet-modal-manage-action-item {
1646
+ background: #2a2a2a;
1647
+ border-color: #3a3a3a;
1648
+ color: #ffffff;
1649
+ }
1650
+
1651
+ .wallet-modal-theme-light .wallet-modal-manage-action-item {
1652
+ background: #f9fafb;
1653
+ border-color: #e5e7eb;
1654
+ color: #111827;
1655
+ }
1656
+
1657
+ .wallet-modal-theme-dark .wallet-modal-manage-action-item:hover {
1658
+ background: #3a3a3a;
1659
+ border-color: #4a4a4a;
1660
+ transform: translateY(-1px);
1661
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
1662
+ }
1663
+
1664
+ .wallet-modal-theme-light .wallet-modal-manage-action-item:hover {
1665
+ background: #f3f4f6;
1666
+ border-color: #d1d5db;
1667
+ transform: translateY(-1px);
1668
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
1669
+ }
1670
+
1671
+ .wallet-modal-manage-action-icon {
1672
+ flex-shrink: 0;
1673
+ display: flex;
1674
+ align-items: center;
1675
+ justify-content: center;
1676
+ width: 40px;
1677
+ height: 40px;
1678
+ border-radius: 10px;
1679
+ transition: all 0.2s;
1680
+ }
1681
+
1682
+ .wallet-modal-theme-dark .wallet-modal-manage-action-icon {
1683
+ color: #9ca3af;
1684
+ background: rgba(147, 51, 234, 0.1);
1685
+ }
1686
+
1687
+ .wallet-modal-theme-light .wallet-modal-manage-action-icon {
1688
+ color: #6b7280;
1689
+ background: rgba(147, 51, 234, 0.05);
1690
+ }
1691
+
1692
+ .wallet-modal-theme-dark .wallet-modal-manage-action-item:hover .wallet-modal-manage-action-icon {
1693
+ background: rgba(147, 51, 234, 0.2);
1694
+ color: #a855f7;
1695
+ }
1696
+
1697
+ .wallet-modal-theme-light .wallet-modal-manage-action-item:hover .wallet-modal-manage-action-icon {
1698
+ background: rgba(147, 51, 234, 0.1);
1699
+ color: #9333ea;
1700
+ }
1701
+
1702
+ .wallet-modal-manage-action-label {
1703
+ flex: 1;
1704
+ font-size: 15px;
1705
+ font-weight: 500;
1706
+ }
1707
+
1708
+ .wallet-modal-theme-dark .wallet-modal-manage-action-label {
1709
+ color: #ffffff;
1710
+ }
1711
+
1712
+ .wallet-modal-theme-light .wallet-modal-manage-action-label {
1713
+ color: #111827;
1714
+ }
1715
+
1716
+ .wallet-modal-manage-action-arrow {
1717
+ flex-shrink: 0;
1718
+ transition: transform 0.2s;
1719
+ }
1720
+
1721
+ .wallet-modal-theme-dark .wallet-modal-manage-action-arrow {
1722
+ color: #9ca3af;
1723
+ }
1724
+
1725
+ .wallet-modal-theme-light .wallet-modal-manage-action-arrow {
1726
+ color: #6b7280;
1727
+ }
1728
+
1729
+ .wallet-modal-manage-action-item:hover .wallet-modal-manage-action-arrow {
1730
+ transform: translateX(2px);
1731
+ }
1732
+
1733
+ .wallet-modal-theme-dark .wallet-modal-manage-action-item:hover .wallet-modal-manage-action-arrow {
1734
+ color: #ffffff;
1735
+ }
1736
+
1737
+ .wallet-modal-theme-light .wallet-modal-manage-action-item:hover .wallet-modal-manage-action-arrow {
1738
+ color: #111827;
1739
+ }
1740
+
1741
+ /* Chain Selector Section */
1742
+ .wallet-modal-chain-selector-section {
1743
+ width: 100%;
1744
+ margin-top: 16px;
1745
+ margin-bottom: 16px;
1746
+ }
1747
+
1748
+ .wallet-modal-chain-selector {
1749
+ position: relative;
1750
+ width: 100%;
1751
+ }
1752
+
1753
+ .wallet-modal-chain-selector-btn {
1754
+ width: 100%;
1755
+ padding: 12px 16px;
1756
+ border-radius: 12px;
1757
+ border: 1px solid;
1758
+ background: transparent;
1759
+ cursor: pointer;
1760
+ transition: all 0.2s;
1761
+ display: flex;
1762
+ align-items: center;
1763
+ justify-content: space-between;
1764
+ gap: 12px;
1765
+ }
1766
+
1767
+ .wallet-modal-theme-dark .wallet-modal-chain-selector-btn {
1768
+ border-color: #3a3a3a;
1769
+ background: #2a2a2a;
1770
+ color: #ffffff;
1771
+ }
1772
+
1773
+ .wallet-modal-theme-light .wallet-modal-chain-selector-btn {
1774
+ border-color: #e5e7eb;
1775
+ background: #f9fafb;
1776
+ color: #111827;
1777
+ }
1778
+
1779
+ .wallet-modal-theme-dark .wallet-modal-chain-selector-btn:hover {
1780
+ background: #3a3a3a;
1781
+ border-color: #4a4a4a;
1782
+ }
1783
+
1784
+ .wallet-modal-theme-light .wallet-modal-chain-selector-btn:hover {
1785
+ background: #f3f4f6;
1786
+ border-color: #d1d5db;
1787
+ }
1788
+
1789
+ .wallet-modal-chain-selector-current {
1790
+ display: flex;
1791
+ align-items: center;
1792
+ gap: 12px;
1793
+ flex: 1;
1794
+ min-width: 0;
1795
+ }
1796
+
1797
+ .wallet-modal-chain-icon {
1798
+ width: 24px;
1799
+ height: 24px;
1800
+ border-radius: 6px;
1801
+ display: flex;
1802
+ align-items: center;
1803
+ justify-content: center;
1804
+ flex-shrink: 0;
1805
+ background: rgba(147, 51, 234, 0.1);
1806
+ }
1807
+
1808
+ .wallet-modal-theme-dark .wallet-modal-chain-icon {
1809
+ color: #a855f7;
1810
+ }
1811
+
1812
+ .wallet-modal-theme-light .wallet-modal-chain-icon {
1813
+ color: #9333ea;
1814
+ }
1815
+
1816
+ .wallet-modal-chain-info {
1817
+ display: flex;
1818
+ flex-direction: column;
1819
+ gap: 2px;
1820
+ flex: 1;
1821
+ min-width: 0;
1822
+ text-align: left;
1823
+ }
1824
+
1825
+ .wallet-modal-chain-name {
1826
+ font-size: 15px;
1827
+ font-weight: 500;
1828
+ }
1829
+
1830
+ .wallet-modal-theme-dark .wallet-modal-chain-name {
1831
+ color: #ffffff;
1832
+ }
1833
+
1834
+ .wallet-modal-theme-light .wallet-modal-chain-name {
1835
+ color: #111827;
1836
+ }
1837
+
1838
+ .wallet-modal-chain-type {
1839
+ font-size: 12px;
1840
+ font-weight: 400;
1841
+ opacity: 0.7;
1842
+ }
1843
+
1844
+ .wallet-modal-theme-dark .wallet-modal-chain-type {
1845
+ color: #9ca3af;
1846
+ }
1847
+
1848
+ .wallet-modal-theme-light .wallet-modal-chain-type {
1849
+ color: #6b7280;
1850
+ }
1851
+
1852
+ .wallet-modal-chain-arrow {
1853
+ flex-shrink: 0;
1854
+ transition: transform 0.2s;
1855
+ }
1856
+
1857
+ .wallet-modal-chain-arrow.open {
1858
+ transform: rotate(180deg);
1859
+ }
1860
+
1861
+ .wallet-modal-chain-selector-placeholder {
1862
+ padding: 12px 16px;
1863
+ border-radius: 12px;
1864
+ border: 1px solid;
1865
+ text-align: left;
1866
+ font-size: 15px;
1867
+ width: 100%;
1868
+ }
1869
+
1870
+ .wallet-modal-theme-dark .wallet-modal-chain-selector-placeholder {
1871
+ border-color: #3a3a3a;
1872
+ background: #2a2a2a;
1873
+ color: #9ca3af;
1874
+ }
1875
+
1876
+ .wallet-modal-theme-light .wallet-modal-chain-selector-placeholder {
1877
+ border-color: #e5e7eb;
1878
+ background: #f9fafb;
1879
+ color: #6b7280;
1880
+ }
1881
+
1882
+ .wallet-modal-chain-dropdown {
1883
+ position: absolute;
1884
+ top: calc(100% + 8px);
1885
+ left: 0;
1886
+ right: 0;
1887
+ width: 100%;
1888
+ z-index: 10001;
1889
+ border-radius: 12px;
1890
+ border: 1px solid;
1891
+ overflow: hidden;
1892
+ box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
1893
+ }
1894
+
1895
+ .wallet-modal-theme-dark .wallet-modal-chain-dropdown {
1896
+ background: #1a1a1a;
1897
+ border-color: #3a3a3a;
1898
+ }
1899
+
1900
+ .wallet-modal-theme-light .wallet-modal-chain-dropdown {
1901
+ background: #ffffff;
1902
+ border-color: #e5e7eb;
1903
+ }
1904
+
1905
+ .wallet-modal-chain-tabs {
1906
+ display: flex;
1907
+ border-bottom: 1px solid;
1908
+ padding: 8px;
1909
+ gap: 4px;
1910
+ }
1911
+
1912
+ .wallet-modal-theme-dark .wallet-modal-chain-tabs {
1913
+ border-color: #3a3a3a;
1914
+ }
1915
+
1916
+ .wallet-modal-theme-light .wallet-modal-chain-tabs {
1917
+ border-color: #e5e7eb;
1918
+ }
1919
+
1920
+ .wallet-modal-chain-tab {
1921
+ flex: 1;
1922
+ padding: 8px 12px;
1923
+ border-radius: 8px;
1924
+ border: none;
1925
+ background: transparent;
1926
+ cursor: pointer;
1927
+ font-size: 13px;
1928
+ font-weight: 500;
1929
+ transition: all 0.2s;
1930
+ }
1931
+
1932
+ .wallet-modal-theme-dark .wallet-modal-chain-tab {
1933
+ color: #9ca3af;
1934
+ }
1935
+
1936
+ .wallet-modal-theme-light .wallet-modal-chain-tab {
1937
+ color: #6b7280;
1938
+ }
1939
+
1940
+ .wallet-modal-theme-dark .wallet-modal-chain-tab.active {
1941
+ background: #2a2a2a;
1942
+ color: #ffffff;
1943
+ }
1944
+
1945
+ .wallet-modal-theme-light .wallet-modal-chain-tab.active {
1946
+ background: #f3f4f6;
1947
+ color: #111827;
1948
+ }
1949
+
1950
+ .wallet-modal-chain-list {
1951
+ max-height: 300px;
1952
+ overflow-y: auto;
1953
+ padding: 4px;
1954
+ }
1955
+
1956
+ .wallet-modal-chain-item {
1957
+ width: 100%;
1958
+ padding: 12px;
1959
+ border-radius: 8px;
1960
+ border: none;
1961
+ background: transparent;
1962
+ cursor: pointer;
1963
+ display: flex;
1964
+ align-items: center;
1965
+ gap: 12px;
1966
+ transition: all 0.2s;
1967
+ text-align: left;
1968
+ }
1969
+
1970
+ .wallet-modal-theme-dark .wallet-modal-chain-item {
1971
+ color: #ffffff;
1972
+ }
1973
+
1974
+ .wallet-modal-theme-light .wallet-modal-chain-item {
1975
+ color: #111827;
1976
+ }
1977
+
1978
+ .wallet-modal-theme-dark .wallet-modal-chain-item:hover {
1979
+ background: #2a2a2a;
1980
+ }
1981
+
1982
+ .wallet-modal-theme-light .wallet-modal-chain-item:hover {
1983
+ background: #f3f4f6;
1984
+ }
1985
+
1986
+ .wallet-modal-theme-dark .wallet-modal-chain-item.active {
1987
+ background: rgba(147, 51, 234, 0.15);
1988
+ }
1989
+
1990
+ .wallet-modal-theme-light .wallet-modal-chain-item.active {
1991
+ background: rgba(147, 51, 234, 0.1);
1992
+ }
1993
+
1994
+ .wallet-modal-chain-item .wallet-modal-chain-icon {
1995
+ width: 28px;
1996
+ height: 28px;
1997
+ }
1998
+
1999
+ .wallet-modal-chain-item .wallet-modal-chain-info {
2000
+ flex: 1;
2001
+ min-width: 0;
2002
+ }
2003
+
2004
+ .wallet-modal-chain-item .wallet-modal-chain-name {
2005
+ font-size: 14px;
2006
+ }
2007
+
2008
+ .wallet-modal-chain-badge {
2009
+ font-size: 10px;
2010
+ font-weight: 500;
2011
+ padding: 2px 6px;
2012
+ border-radius: 4px;
2013
+ text-transform: uppercase;
2014
+ letter-spacing: 0.5px;
2015
+ }
2016
+
2017
+ .wallet-modal-theme-dark .wallet-modal-chain-badge {
2018
+ background: rgba(251, 191, 36, 0.2);
2019
+ color: #fbbf24;
2020
+ }
2021
+
2022
+ .wallet-modal-theme-light .wallet-modal-chain-badge {
2023
+ background: rgba(251, 191, 36, 0.15);
2024
+ color: #d97706;
2025
+ }
2026
+
2027
+ .wallet-modal-chain-item svg:last-child {
2028
+ flex-shrink: 0;
2029
+ color: #10b981;
2030
+ }
2031
+
2032
+ /* Export Warning Modal */
2033
+ .wallet-modal-export-warning {
2034
+ /* Same size as other modals - no max-width override */
2035
+ }
2036
+
2037
+ .wallet-modal-export-warning-content {
2038
+ display: flex;
2039
+ flex-direction: column;
2040
+ align-items: flex-start;
2041
+ gap: 20px;
2042
+ text-align: left;
2043
+ width: 100%;
2044
+ min-width: 0;
2045
+ box-sizing: border-box;
2046
+ }
2047
+
2048
+ .wallet-modal-export-warning-illustration {
2049
+ display: flex;
2050
+ align-items: center;
2051
+ justify-content: center;
2052
+ width: 120px;
2053
+ height: 120px;
2054
+ border-radius: 50%;
2055
+ margin-bottom: 8px;
2056
+ align-self: center;
2057
+ }
2058
+
2059
+ .wallet-modal-theme-dark .wallet-modal-export-warning-illustration {
2060
+ background: rgba(59, 130, 246, 0.1);
2061
+ }
2062
+
2063
+ .wallet-modal-theme-light .wallet-modal-export-warning-illustration {
2064
+ background: rgba(59, 130, 246, 0.1);
2065
+ }
2066
+
2067
+ .wallet-modal-export-warning-icon-bg {
2068
+ display: flex;
2069
+ align-items: center;
2070
+ justify-content: center;
2071
+ width: 80px;
2072
+ height: 80px;
2073
+ border-radius: 50%;
2074
+ background: rgba(59, 130, 246, 0.2);
2075
+ }
2076
+
2077
+ .wallet-modal-theme-dark .wallet-modal-export-warning-icon-bg {
2078
+ color: #3b82f6;
2079
+ }
2080
+
2081
+ .wallet-modal-theme-light .wallet-modal-export-warning-icon-bg {
2082
+ color: #2563eb;
2083
+ }
2084
+
2085
+ .wallet-modal-export-warning-badge {
2086
+ display: inline-block;
2087
+ padding: 4px 12px;
2088
+ border-radius: 12px;
2089
+ font-size: 12px;
2090
+ font-weight: 500;
2091
+ align-self: center;
2092
+ }
2093
+
2094
+ .wallet-modal-theme-dark .wallet-modal-export-warning-badge {
2095
+ background: #2a2a2a;
2096
+ color: #9ca3af;
2097
+ }
2098
+
2099
+ .wallet-modal-theme-light .wallet-modal-export-warning-badge {
2100
+ background: #f3f4f6;
2101
+ color: #6b7280;
2102
+ }
2103
+
2104
+ .wallet-modal-export-warning-heading {
2105
+ font-size: 18px;
2106
+ font-weight: 600;
2107
+ margin: 0;
2108
+ line-height: 1.5;
2109
+ text-align: left;
2110
+ width: 100%;
2111
+ min-width: 0;
2112
+ word-wrap: break-word;
2113
+ overflow-wrap: break-word;
2114
+ }
2115
+
2116
+ .wallet-modal-theme-dark .wallet-modal-export-warning-heading {
2117
+ color: #ffffff;
2118
+ }
2119
+
2120
+ .wallet-modal-theme-light .wallet-modal-export-warning-heading {
2121
+ color: #111827;
2122
+ }
2123
+
2124
+ .wallet-modal-export-warning-info-cards {
2125
+ display: flex;
2126
+ flex-direction: column;
2127
+ gap: 12px;
2128
+ width: 100%;
2129
+ margin-top: 8px;
2130
+ }
2131
+
2132
+ .wallet-modal-export-warning-info-card {
2133
+ display: flex;
2134
+ align-items: flex-start;
2135
+ gap: 12px;
2136
+ padding: 16px;
2137
+ border-radius: 12px;
2138
+ text-align: left;
2139
+ width: 100%;
2140
+ min-width: 0;
2141
+ box-sizing: border-box;
2142
+ }
2143
+
2144
+ .wallet-modal-theme-dark .wallet-modal-export-warning-info-card {
2145
+ background: #2a2a2a;
2146
+ color: #ffffff;
2147
+ }
2148
+
2149
+ .wallet-modal-theme-light .wallet-modal-export-warning-info-card {
2150
+ background: #f9fafb;
2151
+ color: #111827;
2152
+ }
2153
+
2154
+ .wallet-modal-export-warning-info-card svg {
2155
+ flex-shrink: 0;
2156
+ margin-top: 2px;
2157
+ }
2158
+
2159
+ .wallet-modal-theme-dark .wallet-modal-export-warning-info-card svg {
2160
+ color: #9ca3af;
2161
+ }
2162
+
2163
+ .wallet-modal-theme-light .wallet-modal-export-warning-info-card svg {
2164
+ color: #6b7280;
2165
+ }
2166
+
2167
+ .wallet-modal-export-warning-info-card span {
2168
+ font-size: 14px;
2169
+ line-height: 1.5;
2170
+ flex: 1;
2171
+ min-width: 0;
2172
+ word-wrap: break-word;
2173
+ overflow-wrap: break-word;
2174
+ }
2175
+
2176
+ .wallet-modal-export-warning-checkbox {
2177
+ display: flex;
2178
+ align-items: flex-start;
2179
+ gap: 12px;
2180
+ cursor: pointer;
2181
+ width: 100%;
2182
+ min-width: 0;
2183
+ padding: 16px;
2184
+ border-radius: 12px;
2185
+ transition: all 0.2s;
2186
+ box-sizing: border-box;
2187
+ }
2188
+
2189
+ .wallet-modal-theme-dark .wallet-modal-export-warning-checkbox {
2190
+ background: #2a2a2a;
2191
+ }
2192
+
2193
+ .wallet-modal-theme-light .wallet-modal-export-warning-checkbox {
2194
+ background: #f9fafb;
2195
+ }
2196
+
2197
+ .wallet-modal-export-warning-checkbox-input {
2198
+ width: 20px;
2199
+ height: 20px;
2200
+ margin-top: 2px;
2201
+ cursor: pointer;
2202
+ flex-shrink: 0;
2203
+ appearance: none;
2204
+ -webkit-appearance: none;
2205
+ -moz-appearance: none;
2206
+ border: 2px solid;
2207
+ border-radius: 6px;
2208
+ position: relative;
2209
+ transition: all 0.2s;
2210
+ }
2211
+
2212
+ .wallet-modal-theme-dark .wallet-modal-export-warning-checkbox-input {
2213
+ border-color: #4a4a4a;
2214
+ background: #2a2a2a;
2215
+ }
2216
+
2217
+ .wallet-modal-theme-light .wallet-modal-export-warning-checkbox-input {
2218
+ border-color: #d1d5db;
2219
+ background: #ffffff;
2220
+ }
2221
+
2222
+ .wallet-modal-export-warning-checkbox-input:checked {
2223
+ background: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%);
2224
+ border-color: #9333ea;
2225
+ }
2226
+
2227
+ .wallet-modal-theme-dark .wallet-modal-export-warning-checkbox-input:checked {
2228
+ background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
2229
+ border-color: #a855f7;
2230
+ }
2231
+
2232
+ .wallet-modal-export-warning-checkbox-input:checked::after {
2233
+ content: '';
2234
+ position: absolute;
2235
+ left: 6px;
2236
+ top: 2px;
2237
+ width: 5px;
2238
+ height: 10px;
2239
+ border: solid white;
2240
+ border-width: 0 2px 2px 0;
2241
+ transform: rotate(45deg);
2242
+ }
2243
+
2244
+ .wallet-modal-export-warning-checkbox-input:hover {
2245
+ border-color: #9333ea;
2246
+ }
2247
+
2248
+ .wallet-modal-theme-dark .wallet-modal-export-warning-checkbox-input:hover {
2249
+ border-color: #a855f7;
2250
+ }
2251
+
2252
+ .wallet-modal-export-warning-checkbox span {
2253
+ font-size: 14px;
2254
+ line-height: 1.5;
2255
+ flex: 1;
2256
+ min-width: 0;
2257
+ word-wrap: break-word;
2258
+ overflow-wrap: break-word;
2259
+ }
2260
+
2261
+ .wallet-modal-theme-dark .wallet-modal-export-warning-checkbox span {
2262
+ color: #ffffff;
2263
+ }
2264
+
2265
+ .wallet-modal-theme-light .wallet-modal-export-warning-checkbox span {
2266
+ color: #111827;
2267
+ }
2268
+
2269
+ .wallet-modal-export-warning-reveal {
2270
+ width: 100%;
2271
+ min-width: 0;
2272
+ padding: 14px 24px;
2273
+ border-radius: 12px;
2274
+ border: none;
2275
+ font-size: 16px;
2276
+ font-weight: 600;
2277
+ cursor: pointer;
2278
+ transition: all 0.2s;
2279
+ background: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%);
2280
+ color: #ffffff;
2281
+ box-sizing: border-box;
2282
+ display: flex;
2283
+ align-items: center;
2284
+ justify-content: center;
2285
+ gap: 8px;
2286
+ }
2287
+
2288
+ .wallet-modal-theme-dark .wallet-modal-export-warning-reveal:not(.disabled) {
2289
+ background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
2290
+ }
2291
+
2292
+ .wallet-modal-export-warning-reveal:hover:not(.disabled) {
2293
+ transform: translateY(-2px);
2294
+ }
2295
+
2296
+ .wallet-modal-theme-dark .wallet-modal-export-warning-reveal:hover:not(.disabled) {
2297
+ box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
2298
+ }
2299
+
2300
+ .wallet-modal-theme-light .wallet-modal-export-warning-reveal:hover:not(.disabled) {
2301
+ box-shadow: 0 4px 12px rgba(147, 51, 234, 0.4);
2302
+ }
2303
+
2304
+ .wallet-modal-loading-spinner {
2305
+ animation: spin 1s linear infinite;
2306
+ width: 16px;
2307
+ height: 16px;
2308
+ }
2309
+
2310
+ @keyframes spin {
2311
+ from {
2312
+ transform: rotate(0deg);
2313
+ }
2314
+ to {
2315
+ transform: rotate(360deg);
2316
+ }
2317
+ }
2318
+
2319
+ .wallet-modal-export-warning-reveal.disabled {
2320
+ opacity: 0.5;
2321
+ cursor: not-allowed;
2322
+ background: #9ca3af;
2323
+ }
2324
+
2325
+ .wallet-modal-theme-dark .wallet-modal-export-warning-reveal.disabled {
2326
+ background: #3a3a3a;
2327
+ color: #6b7280;
2328
+ }
2329
+
2330
+ .wallet-modal-theme-light .wallet-modal-export-warning-reveal.disabled {
2331
+ background: #e5e7eb;
2332
+ color: #9ca3af;
2333
+ }
2334
+
2335
+ /* Export Key Modal */
2336
+ .wallet-modal-export-key {
2337
+ max-width: 480px;
2338
+ }
2339
+
2340
+ .wallet-modal-export-header {
2341
+ display: flex;
2342
+ align-items: center;
2343
+ justify-content: space-between;
2344
+ margin-bottom: 24px;
2345
+ }
2346
+
2347
+ .wallet-modal-export-title {
2348
+ font-size: 20px;
2349
+ font-weight: 600;
2350
+ margin: 0;
2351
+ }
2352
+
2353
+ .wallet-modal-theme-dark .wallet-modal-export-title {
2354
+ color: #ffffff;
2355
+ }
2356
+
2357
+ .wallet-modal-theme-light .wallet-modal-export-title {
2358
+ color: #111827;
2359
+ }
2360
+
2361
+ .wallet-modal-export-content {
2362
+ display: flex;
2363
+ flex-direction: column;
2364
+ gap: 20px;
2365
+ }
2366
+
2367
+ .wallet-modal-export-key-display {
2368
+ padding: 16px;
2369
+ border-radius: 12px;
2370
+ font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', 'Courier New', monospace;
2371
+ font-size: 13px;
2372
+ line-height: 1.6;
2373
+ word-break: break-all;
2374
+ text-align: left;
2375
+ position: relative;
2376
+ transition: filter 0.3s ease;
2377
+ user-select: none;
2378
+ }
2379
+
2380
+ .wallet-modal-export-key-display.blurred {
2381
+ filter: blur(8px);
2382
+ -webkit-filter: blur(8px);
2383
+ user-select: none;
2384
+ -webkit-user-select: none;
2385
+ -moz-user-select: none;
2386
+ -ms-user-select: none;
2387
+ }
2388
+
2389
+ .wallet-modal-export-key-display:not(.blurred) {
2390
+ user-select: text;
2391
+ -webkit-user-select: text;
2392
+ -moz-user-select: text;
2393
+ -ms-user-select: text;
2394
+ }
2395
+
2396
+ .wallet-modal-theme-dark .wallet-modal-export-key-display {
2397
+ background: #2a2a2a;
2398
+ color: #ffffff;
2399
+ border: 1px solid #3a3a3a;
2400
+ }
2401
+
2402
+ .wallet-modal-theme-light .wallet-modal-export-key-display {
2403
+ background: #f9fafb;
2404
+ color: #111827;
2405
+ border: 1px solid #e5e7eb;
2406
+ }
2407
+
2408
+ .wallet-modal-export-key-hint {
2409
+ font-size: 13px;
2410
+ text-align: center;
2411
+ margin: -12px 0 0 0;
2412
+ padding: 0;
2413
+ }
2414
+
2415
+ .wallet-modal-theme-dark .wallet-modal-export-key-hint {
2416
+ color: #9ca3af;
2417
+ }
2418
+
2419
+ .wallet-modal-theme-light .wallet-modal-export-key-hint {
2420
+ color: #6b7280;
2421
+ }
2422
+
2423
+ .wallet-modal-export-copy-btn {
2424
+ display: flex;
2425
+ align-items: center;
2426
+ justify-content: center;
2427
+ gap: 8px;
2428
+ width: 100%;
2429
+ padding: 12px 24px;
2430
+ border-radius: 12px;
2431
+ border: 1px solid;
2432
+ font-size: 15px;
2433
+ font-weight: 500;
2434
+ cursor: pointer;
2435
+ transition: all 0.2s;
2436
+ background: transparent;
2437
+ }
2438
+
2439
+ .wallet-modal-export-copy-btn:disabled {
2440
+ opacity: 0.5;
2441
+ cursor: not-allowed;
2442
+ }
2443
+
2444
+ .wallet-modal-theme-dark .wallet-modal-export-copy-btn {
2445
+ color: #ffffff;
2446
+ border-color: #3a3a3a;
2447
+ }
2448
+
2449
+ .wallet-modal-theme-light .wallet-modal-export-copy-btn {
2450
+ color: #111827;
2451
+ border-color: #e5e7eb;
2452
+ }
2453
+
2454
+ .wallet-modal-theme-dark .wallet-modal-export-copy-btn:hover {
2455
+ background: #2a2a2a;
2456
+ border-color: #4a4a4a;
2457
+ }
2458
+
2459
+ .wallet-modal-theme-light .wallet-modal-export-copy-btn:hover {
2460
+ background: #f3f4f6;
2461
+ border-color: #d1d5db;
2462
+ }
2463
+
2464
+ .wallet-modal-export-copy-btn svg {
2465
+ flex-shrink: 0;
2466
+ }
2467
+
2468
+ .wallet-modal-export-done-btn {
2469
+ width: 100%;
2470
+ padding: 14px 24px;
2471
+ border-radius: 12px;
2472
+ border: none;
2473
+ font-size: 16px;
2474
+ font-weight: 600;
2475
+ cursor: pointer;
2476
+ transition: all 0.2s;
2477
+ color: #ffffff;
2478
+ }
2479
+
2480
+ .wallet-modal-theme-dark .wallet-modal-export-done-btn {
2481
+ background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
2482
+ }
2483
+
2484
+ .wallet-modal-theme-light .wallet-modal-export-done-btn {
2485
+ background: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%);
2486
+ }
2487
+
2488
+ .wallet-modal-export-done-btn:hover {
2489
+ transform: translateY(-2px);
2490
+ }
2491
+
2492
+ .wallet-modal-theme-dark .wallet-modal-export-done-btn:hover {
2493
+ box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
2494
+ }
2495
+
2496
+ .wallet-modal-theme-light .wallet-modal-export-done-btn:hover {
2497
+ box-shadow: 0 4px 12px rgba(147, 51, 234, 0.4);
548
2498
  }
549
2499