signer-test-sdk-react 0.0.11 → 0.0.12

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.
@@ -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,6 +114,14 @@
95
114
  flex-shrink: 0;
96
115
  }
97
116
 
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
+
98
125
  .wallet-modal-avatar-icon {
99
126
  width: 32px;
100
127
  height: 32px;
@@ -109,12 +136,18 @@
109
136
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
110
137
  }
111
138
 
139
+ .wallet-modal-avatar-icon svg {
140
+ display: block;
141
+ }
142
+
112
143
  .wallet-modal-user-details {
113
144
  display: flex;
114
145
  flex-direction: column;
115
146
  gap: 4px;
116
147
  flex: 1;
117
148
  min-width: 0;
149
+ text-align: left;
150
+ align-items: flex-start;
118
151
  }
119
152
 
120
153
  .wallet-modal-address {
@@ -161,6 +194,44 @@
161
194
  color: #111827;
162
195
  }
163
196
 
197
+ .wallet-modal-copy-notification {
198
+ font-size: 12px;
199
+ font-weight: 500;
200
+ padding: 2px 6px;
201
+ border-radius: 4px;
202
+ flex-shrink: 0;
203
+ animation: fadeInOut 2s ease-in-out;
204
+ }
205
+
206
+ .wallet-modal-theme-dark .wallet-modal-copy-notification {
207
+ color: #10b981;
208
+ background: rgba(16, 185, 129, 0.1);
209
+ }
210
+
211
+ .wallet-modal-theme-light .wallet-modal-copy-notification {
212
+ color: #059669;
213
+ background: rgba(5, 150, 105, 0.1);
214
+ }
215
+
216
+ @keyframes fadeInOut {
217
+ 0% {
218
+ opacity: 0;
219
+ transform: scale(0.9);
220
+ }
221
+ 15% {
222
+ opacity: 1;
223
+ transform: scale(1);
224
+ }
225
+ 85% {
226
+ opacity: 1;
227
+ transform: scale(1);
228
+ }
229
+ 100% {
230
+ opacity: 0;
231
+ transform: scale(0.9);
232
+ }
233
+ }
234
+
164
235
  .wallet-modal-email {
165
236
  font-size: 14px;
166
237
  overflow: hidden;
@@ -222,13 +293,14 @@
222
293
  padding: 16px;
223
294
  display: flex;
224
295
  flex-direction: column;
225
- align-items: center;
296
+ align-items: flex-start;
226
297
  gap: 8px;
227
298
  cursor: pointer;
228
299
  transition: all 0.2s;
229
300
  font-size: 14px;
230
301
  font-weight: 500;
231
302
  border: 1px solid;
303
+ text-align: left;
232
304
  }
233
305
 
234
306
  .wallet-modal-theme-dark .wallet-modal-action-btn {
@@ -256,6 +328,14 @@
256
328
  }
257
329
 
258
330
  .wallet-modal-action-btn svg {
331
+ flex-shrink: 0;
332
+ }
333
+
334
+ .wallet-modal-theme-dark .wallet-modal-action-btn svg {
335
+ color: #a855f7;
336
+ }
337
+
338
+ .wallet-modal-theme-light .wallet-modal-action-btn svg {
259
339
  color: #9333ea;
260
340
  }
261
341
 
@@ -419,7 +499,11 @@
419
499
  color: #6b7280;
420
500
  }
421
501
 
422
- .wallet-modal-menu-item:hover svg {
502
+ .wallet-modal-theme-dark .wallet-modal-menu-item:hover svg {
503
+ color: #a855f7;
504
+ }
505
+
506
+ .wallet-modal-theme-light .wallet-modal-menu-item:hover svg {
423
507
  color: #9333ea;
424
508
  }
425
509
 
@@ -466,6 +550,7 @@
466
550
  padding: 14px 16px;
467
551
  display: flex;
468
552
  align-items: center;
553
+ justify-content: flex-start;
469
554
  gap: 12px;
470
555
  color: #ef4444;
471
556
  cursor: pointer;
@@ -475,6 +560,7 @@
475
560
  width: 100%;
476
561
  margin-top: 8px;
477
562
  border: 1px solid;
563
+ text-align: left;
478
564
  }
479
565
 
480
566
  .wallet-modal-theme-dark .wallet-modal-disconnect {
@@ -532,18 +618,1356 @@
532
618
  background: #9ca3af;
533
619
  }
534
620
 
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
- }
621
+ /* Balance Display */
622
+ .wallet-modal-balance {
623
+ border-radius: 12px;
624
+ padding: 20px;
625
+ display: flex;
626
+ flex-direction: column;
627
+ gap: 8px;
628
+ margin-top: 8px;
629
+ border: 1px solid;
630
+ background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(126, 34, 206, 0.1) 100%);
631
+ text-align: left;
632
+ }
544
633
 
545
- .wallet-modal-overlay {
546
- align-items: flex-end;
547
- }
634
+ .wallet-modal-theme-dark .wallet-modal-balance {
635
+ border-color: #3a3a3a;
636
+ background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(147, 51, 234, 0.15) 100%);
637
+ }
638
+
639
+ .wallet-modal-theme-light .wallet-modal-balance {
640
+ border-color: #e5e7eb;
641
+ background: linear-gradient(135deg, rgba(147, 51, 234, 0.05) 0%, rgba(126, 34, 206, 0.05) 100%);
642
+ }
643
+
644
+ .wallet-modal-balance-label {
645
+ font-size: 14px;
646
+ font-weight: 500;
647
+ text-align: left;
648
+ }
649
+
650
+ .wallet-modal-theme-dark .wallet-modal-balance-label {
651
+ color: #9ca3af;
652
+ }
653
+
654
+ .wallet-modal-theme-light .wallet-modal-balance-label {
655
+ color: #6b7280;
656
+ }
657
+
658
+ .wallet-modal-balance-value {
659
+ font-size: 28px;
660
+ font-weight: 700;
661
+ display: flex;
662
+ align-items: center;
663
+ gap: 8px;
664
+ font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', 'Courier New', monospace;
665
+ text-align: left;
666
+ }
667
+
668
+ .wallet-modal-theme-dark .wallet-modal-balance-value {
669
+ color: #ffffff;
670
+ }
671
+
672
+ .wallet-modal-theme-light .wallet-modal-balance-value {
673
+ color: #111827;
674
+ }
675
+
676
+ /* Receive Modal */
677
+ .wallet-modal-receive-header {
678
+ display: flex;
679
+ align-items: center;
680
+ justify-content: space-between;
681
+ margin-bottom: 24px;
682
+ }
683
+
684
+ .wallet-modal-back {
685
+ background: transparent;
686
+ border: none;
687
+ cursor: pointer;
688
+ padding: 8px;
689
+ display: flex;
690
+ align-items: center;
691
+ justify-content: center;
692
+ border-radius: 8px;
693
+ transition: all 0.2s;
694
+ width: 40px;
695
+ height: 40px;
696
+ }
697
+
698
+ .wallet-modal-theme-dark .wallet-modal-back {
699
+ color: #9ca3af;
700
+ }
701
+
702
+ .wallet-modal-theme-light .wallet-modal-back {
703
+ color: #6b7280;
704
+ }
705
+
706
+ .wallet-modal-theme-dark .wallet-modal-back:hover {
707
+ background: #2a2a2a;
708
+ color: #ffffff;
709
+ }
710
+
711
+ .wallet-modal-theme-light .wallet-modal-back:hover {
712
+ background: #f3f4f6;
713
+ color: #111827;
714
+ }
715
+
716
+ .wallet-modal-settings {
717
+ width: 40px;
718
+ height: 40px;
719
+ display: flex;
720
+ align-items: center;
721
+ justify-content: center;
722
+ background: transparent;
723
+ border: none;
724
+ cursor: pointer;
725
+ border-radius: 8px;
726
+ transition: all 0.2s ease;
727
+ padding: 0;
728
+ color: inherit;
729
+ }
730
+
731
+ .wallet-modal-theme-dark .wallet-modal-settings {
732
+ color: #9ca3af;
733
+ }
734
+
735
+ .wallet-modal-theme-light .wallet-modal-settings {
736
+ color: #6b7280;
737
+ }
738
+
739
+ .wallet-modal-theme-dark .wallet-modal-settings:hover {
740
+ background: #2a2a2a;
741
+ color: #ffffff;
742
+ }
743
+
744
+ .wallet-modal-theme-light .wallet-modal-settings:hover {
745
+ background: #f3f4f6;
746
+ color: #111827;
747
+ }
748
+
749
+ .wallet-modal-receive-title {
750
+ font-size: 20px;
751
+ font-weight: 600;
752
+ margin: 0;
753
+ }
754
+
755
+ .wallet-modal-theme-dark .wallet-modal-receive-title {
756
+ color: #ffffff;
757
+ }
758
+
759
+ .wallet-modal-theme-light .wallet-modal-receive-title {
760
+ color: #111827;
761
+ }
762
+
763
+ .wallet-modal-receive-content {
764
+ display: flex;
765
+ flex-direction: column;
766
+ align-items: center;
767
+ gap: 24px;
768
+ }
769
+
770
+ .wallet-modal-qr-container {
771
+ padding: 20px;
772
+ background: #ffffff;
773
+ border-radius: 16px;
774
+ display: flex;
775
+ align-items: center;
776
+ justify-content: center;
777
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
778
+ }
779
+
780
+ .wallet-modal-address-section {
781
+ width: 100%;
782
+ display: flex;
783
+ flex-direction: column;
784
+ gap: 12px;
785
+ }
786
+
787
+ .wallet-modal-address-label {
788
+ font-size: 14px;
789
+ font-weight: 500;
790
+ text-align: center;
791
+ }
792
+
793
+ .wallet-modal-theme-dark .wallet-modal-address-label {
794
+ color: #9ca3af;
795
+ }
796
+
797
+ .wallet-modal-theme-light .wallet-modal-address-label {
798
+ color: #6b7280;
799
+ }
800
+
801
+ .wallet-modal-address-display {
802
+ display: flex;
803
+ align-items: center;
804
+ gap: 12px;
805
+ padding: 12px 16px;
806
+ border-radius: 12px;
807
+ border: 1px solid;
808
+ }
809
+
810
+ .wallet-modal-theme-dark .wallet-modal-address-display {
811
+ background: #2a2a2a;
812
+ border-color: #3a3a3a;
813
+ }
814
+
815
+ .wallet-modal-theme-light .wallet-modal-address-display {
816
+ background: #f9fafb;
817
+ border-color: #e5e7eb;
818
+ }
819
+
820
+ .wallet-modal-address-full {
821
+ flex: 1;
822
+ font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', 'Courier New', monospace;
823
+ font-size: 14px;
824
+ word-break: break-all;
825
+ text-align: left;
826
+ }
827
+
828
+ .wallet-modal-theme-dark .wallet-modal-address-full {
829
+ color: #ffffff;
830
+ }
831
+
832
+ .wallet-modal-theme-light .wallet-modal-address-full {
833
+ color: #111827;
834
+ }
835
+
836
+ .wallet-modal-copy-btn {
837
+ display: flex;
838
+ align-items: center;
839
+ gap: 6px;
840
+ padding: 8px 12px;
841
+ border-radius: 8px;
842
+ border: 1px solid;
843
+ background: transparent;
844
+ cursor: pointer;
845
+ transition: all 0.2s;
846
+ font-size: 14px;
847
+ font-weight: 500;
848
+ white-space: nowrap;
849
+ }
850
+
851
+ .wallet-modal-theme-dark .wallet-modal-copy-btn {
852
+ color: #ffffff;
853
+ border-color: #3a3a3a;
854
+ }
855
+
856
+ .wallet-modal-theme-light .wallet-modal-copy-btn {
857
+ color: #111827;
858
+ border-color: #e5e7eb;
859
+ }
860
+
861
+ .wallet-modal-theme-dark .wallet-modal-copy-btn:hover {
862
+ background: #3a3a3a;
863
+ border-color: #4a4a4a;
864
+ }
865
+
866
+ .wallet-modal-theme-light .wallet-modal-copy-btn:hover {
867
+ background: #f3f4f6;
868
+ border-color: #d1d5db;
869
+ }
870
+
871
+ .wallet-modal-copy-btn.copied {
872
+ background: #10b981;
873
+ border-color: #10b981;
874
+ color: #ffffff;
875
+ }
876
+
877
+ .wallet-modal-address-hint {
878
+ font-size: 13px;
879
+ text-align: center;
880
+ margin: 0;
881
+ }
882
+
883
+ .wallet-modal-theme-dark .wallet-modal-address-hint {
884
+ color: #9ca3af;
885
+ }
886
+
887
+ .wallet-modal-theme-light .wallet-modal-address-hint {
888
+ color: #6b7280;
889
+ }
890
+
891
+ /* Send Modal */
892
+ .wallet-modal-send-content {
893
+ display: flex;
894
+ flex-direction: column;
895
+ gap: 20px;
896
+ padding: 20px 0;
897
+ }
898
+
899
+ .wallet-modal-send-placeholder {
900
+ text-align: center;
901
+ padding: 40px 20px;
902
+ line-height: 1.6;
903
+ }
904
+
905
+ .wallet-modal-theme-dark .wallet-modal-send-placeholder {
906
+ color: #9ca3af;
907
+ }
908
+
909
+ .wallet-modal-theme-light .wallet-modal-send-placeholder {
910
+ color: #6b7280;
911
+ }
912
+
913
+ .wallet-modal-action-btn-primary {
914
+ padding: 14px 24px;
915
+ border-radius: 12px;
916
+ border: none;
917
+ font-size: 15px;
918
+ font-weight: 600;
919
+ cursor: pointer;
920
+ transition: all 0.2s;
921
+ background: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%);
922
+ color: #ffffff;
923
+ }
924
+
925
+ .wallet-modal-action-btn-primary:hover {
926
+ transform: translateY(-2px);
927
+ box-shadow: 0 4px 12px rgba(147, 51, 234, 0.4);
928
+ }
929
+
930
+ /* Manage Modal */
931
+ .wallet-modal-manage-content {
932
+ display: flex;
933
+ flex-direction: column;
934
+ gap: 32px;
935
+ }
936
+
937
+ .wallet-modal-manage-section {
938
+ display: flex;
939
+ flex-direction: column;
940
+ gap: 20px;
941
+ }
942
+
943
+ .wallet-modal-manage-section-title {
944
+ font-size: 16px;
945
+ font-weight: 600;
946
+ margin: 0;
947
+ text-align: left;
948
+ letter-spacing: -0.01em;
949
+ }
950
+
951
+ .wallet-modal-theme-dark .wallet-modal-manage-section-title {
952
+ color: #ffffff;
953
+ }
954
+
955
+ .wallet-modal-theme-light .wallet-modal-manage-section-title {
956
+ color: #111827;
957
+ }
958
+
959
+ .wallet-modal-manage-item {
960
+ display: flex;
961
+ flex-direction: column;
962
+ gap: 8px;
963
+ padding: 16px 0;
964
+ border-bottom: 1px solid;
965
+ }
966
+
967
+ .wallet-modal-theme-dark .wallet-modal-manage-item {
968
+ border-color: #3a3a3a;
969
+ }
970
+
971
+ .wallet-modal-theme-light .wallet-modal-manage-item {
972
+ border-color: #e5e7eb;
973
+ }
974
+
975
+ .wallet-modal-manage-item:last-child {
976
+ border-bottom: none;
977
+ }
978
+
979
+ .wallet-modal-manage-label {
980
+ font-size: 13px;
981
+ font-weight: 500;
982
+ text-align: left;
983
+ letter-spacing: 0.01em;
984
+ }
985
+
986
+ .wallet-modal-theme-dark .wallet-modal-manage-label {
987
+ color: #9ca3af;
988
+ }
989
+
990
+ .wallet-modal-theme-light .wallet-modal-manage-label {
991
+ color: #6b7280;
992
+ }
993
+
994
+ .wallet-modal-manage-value {
995
+ font-size: 15px;
996
+ font-weight: 500;
997
+ display: flex;
998
+ align-items: center;
999
+ justify-content: space-between;
1000
+ gap: 12px;
1001
+ text-align: left;
1002
+ word-break: break-word;
1003
+ }
1004
+
1005
+ .wallet-modal-theme-dark .wallet-modal-manage-value {
1006
+ color: #ffffff;
1007
+ }
1008
+
1009
+ .wallet-modal-theme-light .wallet-modal-manage-value {
1010
+ color: #111827;
1011
+ }
1012
+
1013
+ .wallet-modal-manage-value > span:not(.wallet-modal-manage-address-text) {
1014
+ flex: 1;
1015
+ text-align: left;
1016
+ min-width: 0;
1017
+ }
1018
+
1019
+ .wallet-modal-manage-address-text {
1020
+ flex: 1;
1021
+ font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', 'Courier New', monospace;
1022
+ font-size: 14px;
1023
+ word-break: break-all;
1024
+ min-width: 0;
1025
+ }
1026
+
1027
+ .wallet-modal-manage-copy-btn {
1028
+ display: flex;
1029
+ align-items: center;
1030
+ gap: 6px;
1031
+ background: transparent;
1032
+ border: 1px solid;
1033
+ cursor: pointer;
1034
+ padding: 6px 12px;
1035
+ border-radius: 8px;
1036
+ transition: all 0.2s;
1037
+ font-size: 13px;
1038
+ font-weight: 500;
1039
+ flex-shrink: 0;
1040
+ white-space: nowrap;
1041
+ }
1042
+
1043
+ .wallet-modal-theme-dark .wallet-modal-manage-copy-btn {
1044
+ color: #9ca3af;
1045
+ border-color: #3a3a3a;
1046
+ }
1047
+
1048
+ .wallet-modal-theme-light .wallet-modal-manage-copy-btn {
1049
+ color: #6b7280;
1050
+ border-color: #e5e7eb;
1051
+ }
1052
+
1053
+ .wallet-modal-theme-dark .wallet-modal-manage-copy-btn:hover {
1054
+ background: #2a2a2a;
1055
+ border-color: #4a4a4a;
1056
+ color: #ffffff;
1057
+ }
1058
+
1059
+ .wallet-modal-theme-light .wallet-modal-manage-copy-btn:hover {
1060
+ background: #f3f4f6;
1061
+ border-color: #d1d5db;
1062
+ color: #111827;
1063
+ }
1064
+
1065
+ .wallet-modal-manage-copy-btn.copied {
1066
+ background: #10b981;
1067
+ border-color: #10b981;
1068
+ color: #ffffff;
1069
+ }
1070
+
1071
+ .wallet-modal-manage-copy-btn svg {
1072
+ flex-shrink: 0;
1073
+ }
1074
+
1075
+ /* Responsive */
1076
+ @media (max-width: 480px) {
1077
+ .wallet-modal-content {
1078
+ width: 100%;
1079
+ max-width: 100%;
1080
+ border-radius: 16px 16px 0 0;
1081
+ max-height: 95vh;
1082
+ padding: 20px;
1083
+ }
1084
+
1085
+ .wallet-modal-overlay {
1086
+ align-items: flex-end;
1087
+ }
1088
+
1089
+ .wallet-modal-qr-container {
1090
+ padding: 16px;
1091
+ }
1092
+
1093
+ .wallet-modal-address-display {
1094
+ flex-direction: column;
1095
+ align-items: stretch;
1096
+ }
1097
+
1098
+ .wallet-modal-copy-btn {
1099
+ width: 100%;
1100
+ justify-content: center;
1101
+ }
1102
+ }
1103
+
1104
+ /* Export & Backup Section */
1105
+ .wallet-modal-manage-action-item {
1106
+ display: flex;
1107
+ align-items: center;
1108
+ gap: 12px;
1109
+ padding: 16px;
1110
+ border-radius: 12px;
1111
+ border: 1px solid;
1112
+ cursor: pointer;
1113
+ transition: all 0.2s;
1114
+ width: 100%;
1115
+ text-align: left;
1116
+ background: transparent;
1117
+ }
1118
+
1119
+ .wallet-modal-theme-dark .wallet-modal-manage-action-item {
1120
+ background: #2a2a2a;
1121
+ border-color: #3a3a3a;
1122
+ color: #ffffff;
1123
+ }
1124
+
1125
+ .wallet-modal-theme-light .wallet-modal-manage-action-item {
1126
+ background: #f9fafb;
1127
+ border-color: #e5e7eb;
1128
+ color: #111827;
1129
+ }
1130
+
1131
+ .wallet-modal-theme-dark .wallet-modal-manage-action-item:hover {
1132
+ background: #3a3a3a;
1133
+ border-color: #4a4a4a;
1134
+ transform: translateY(-1px);
1135
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
1136
+ }
1137
+
1138
+ .wallet-modal-theme-light .wallet-modal-manage-action-item:hover {
1139
+ background: #f3f4f6;
1140
+ border-color: #d1d5db;
1141
+ transform: translateY(-1px);
1142
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
1143
+ }
1144
+
1145
+ .wallet-modal-manage-action-icon {
1146
+ flex-shrink: 0;
1147
+ display: flex;
1148
+ align-items: center;
1149
+ justify-content: center;
1150
+ width: 40px;
1151
+ height: 40px;
1152
+ border-radius: 10px;
1153
+ transition: all 0.2s;
1154
+ }
1155
+
1156
+ .wallet-modal-theme-dark .wallet-modal-manage-action-icon {
1157
+ color: #9ca3af;
1158
+ background: rgba(147, 51, 234, 0.1);
1159
+ }
1160
+
1161
+ .wallet-modal-theme-light .wallet-modal-manage-action-icon {
1162
+ color: #6b7280;
1163
+ background: rgba(147, 51, 234, 0.05);
1164
+ }
1165
+
1166
+ .wallet-modal-theme-dark .wallet-modal-manage-action-item:hover .wallet-modal-manage-action-icon {
1167
+ background: rgba(147, 51, 234, 0.2);
1168
+ color: #a855f7;
1169
+ }
1170
+
1171
+ .wallet-modal-theme-light .wallet-modal-manage-action-item:hover .wallet-modal-manage-action-icon {
1172
+ background: rgba(147, 51, 234, 0.1);
1173
+ color: #9333ea;
1174
+ }
1175
+
1176
+ .wallet-modal-manage-action-label {
1177
+ flex: 1;
1178
+ font-size: 15px;
1179
+ font-weight: 500;
1180
+ }
1181
+
1182
+ .wallet-modal-theme-dark .wallet-modal-manage-action-label {
1183
+ color: #ffffff;
1184
+ }
1185
+
1186
+ .wallet-modal-theme-light .wallet-modal-manage-action-label {
1187
+ color: #111827;
1188
+ }
1189
+
1190
+ .wallet-modal-manage-action-arrow {
1191
+ flex-shrink: 0;
1192
+ transition: transform 0.2s;
1193
+ }
1194
+
1195
+ .wallet-modal-theme-dark .wallet-modal-manage-action-arrow {
1196
+ color: #9ca3af;
1197
+ }
1198
+
1199
+ .wallet-modal-theme-light .wallet-modal-manage-action-arrow {
1200
+ color: #6b7280;
1201
+ }
1202
+
1203
+ .wallet-modal-manage-action-item:hover .wallet-modal-manage-action-arrow {
1204
+ transform: translateX(2px);
1205
+ }
1206
+
1207
+ .wallet-modal-theme-dark .wallet-modal-manage-action-item:hover .wallet-modal-manage-action-arrow {
1208
+ color: #ffffff;
1209
+ }
1210
+
1211
+ .wallet-modal-theme-light .wallet-modal-manage-action-item:hover .wallet-modal-manage-action-arrow {
1212
+ color: #111827;
1213
+ }
1214
+
1215
+ /* Chain Selector Section */
1216
+ .wallet-modal-chain-selector-section {
1217
+ width: 100%;
1218
+ margin-top: 16px;
1219
+ margin-bottom: 16px;
1220
+ }
1221
+
1222
+ .wallet-modal-chain-selector {
1223
+ position: relative;
1224
+ width: 100%;
1225
+ }
1226
+
1227
+ .wallet-modal-chain-selector-btn {
1228
+ width: 100%;
1229
+ padding: 12px 16px;
1230
+ border-radius: 12px;
1231
+ border: 1px solid;
1232
+ background: transparent;
1233
+ cursor: pointer;
1234
+ transition: all 0.2s;
1235
+ display: flex;
1236
+ align-items: center;
1237
+ justify-content: space-between;
1238
+ gap: 12px;
1239
+ }
1240
+
1241
+ .wallet-modal-theme-dark .wallet-modal-chain-selector-btn {
1242
+ border-color: #3a3a3a;
1243
+ background: #2a2a2a;
1244
+ color: #ffffff;
1245
+ }
1246
+
1247
+ .wallet-modal-theme-light .wallet-modal-chain-selector-btn {
1248
+ border-color: #e5e7eb;
1249
+ background: #f9fafb;
1250
+ color: #111827;
1251
+ }
1252
+
1253
+ .wallet-modal-theme-dark .wallet-modal-chain-selector-btn:hover {
1254
+ background: #3a3a3a;
1255
+ border-color: #4a4a4a;
1256
+ }
1257
+
1258
+ .wallet-modal-theme-light .wallet-modal-chain-selector-btn:hover {
1259
+ background: #f3f4f6;
1260
+ border-color: #d1d5db;
1261
+ }
1262
+
1263
+ .wallet-modal-chain-selector-current {
1264
+ display: flex;
1265
+ align-items: center;
1266
+ gap: 12px;
1267
+ flex: 1;
1268
+ min-width: 0;
1269
+ }
1270
+
1271
+ .wallet-modal-chain-icon {
1272
+ width: 24px;
1273
+ height: 24px;
1274
+ border-radius: 6px;
1275
+ display: flex;
1276
+ align-items: center;
1277
+ justify-content: center;
1278
+ flex-shrink: 0;
1279
+ background: rgba(147, 51, 234, 0.1);
1280
+ }
1281
+
1282
+ .wallet-modal-theme-dark .wallet-modal-chain-icon {
1283
+ color: #a855f7;
1284
+ }
1285
+
1286
+ .wallet-modal-theme-light .wallet-modal-chain-icon {
1287
+ color: #9333ea;
1288
+ }
1289
+
1290
+ .wallet-modal-chain-info {
1291
+ display: flex;
1292
+ flex-direction: column;
1293
+ gap: 2px;
1294
+ flex: 1;
1295
+ min-width: 0;
1296
+ text-align: left;
1297
+ }
1298
+
1299
+ .wallet-modal-chain-name {
1300
+ font-size: 15px;
1301
+ font-weight: 500;
1302
+ }
1303
+
1304
+ .wallet-modal-theme-dark .wallet-modal-chain-name {
1305
+ color: #ffffff;
1306
+ }
1307
+
1308
+ .wallet-modal-theme-light .wallet-modal-chain-name {
1309
+ color: #111827;
1310
+ }
1311
+
1312
+ .wallet-modal-chain-type {
1313
+ font-size: 12px;
1314
+ font-weight: 400;
1315
+ opacity: 0.7;
1316
+ }
1317
+
1318
+ .wallet-modal-theme-dark .wallet-modal-chain-type {
1319
+ color: #9ca3af;
1320
+ }
1321
+
1322
+ .wallet-modal-theme-light .wallet-modal-chain-type {
1323
+ color: #6b7280;
1324
+ }
1325
+
1326
+ .wallet-modal-chain-arrow {
1327
+ flex-shrink: 0;
1328
+ transition: transform 0.2s;
1329
+ }
1330
+
1331
+ .wallet-modal-chain-arrow.open {
1332
+ transform: rotate(180deg);
1333
+ }
1334
+
1335
+ .wallet-modal-chain-selector-placeholder {
1336
+ padding: 12px 16px;
1337
+ border-radius: 12px;
1338
+ border: 1px solid;
1339
+ text-align: left;
1340
+ font-size: 15px;
1341
+ width: 100%;
1342
+ }
1343
+
1344
+ .wallet-modal-theme-dark .wallet-modal-chain-selector-placeholder {
1345
+ border-color: #3a3a3a;
1346
+ background: #2a2a2a;
1347
+ color: #9ca3af;
1348
+ }
1349
+
1350
+ .wallet-modal-theme-light .wallet-modal-chain-selector-placeholder {
1351
+ border-color: #e5e7eb;
1352
+ background: #f9fafb;
1353
+ color: #6b7280;
1354
+ }
1355
+
1356
+ .wallet-modal-chain-dropdown {
1357
+ position: absolute;
1358
+ top: calc(100% + 8px);
1359
+ left: 0;
1360
+ right: 0;
1361
+ width: 100%;
1362
+ z-index: 10001;
1363
+ border-radius: 12px;
1364
+ border: 1px solid;
1365
+ overflow: hidden;
1366
+ box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
1367
+ }
1368
+
1369
+ .wallet-modal-theme-dark .wallet-modal-chain-dropdown {
1370
+ background: #1a1a1a;
1371
+ border-color: #3a3a3a;
1372
+ }
1373
+
1374
+ .wallet-modal-theme-light .wallet-modal-chain-dropdown {
1375
+ background: #ffffff;
1376
+ border-color: #e5e7eb;
1377
+ }
1378
+
1379
+ .wallet-modal-chain-tabs {
1380
+ display: flex;
1381
+ border-bottom: 1px solid;
1382
+ padding: 8px;
1383
+ gap: 4px;
1384
+ }
1385
+
1386
+ .wallet-modal-theme-dark .wallet-modal-chain-tabs {
1387
+ border-color: #3a3a3a;
1388
+ }
1389
+
1390
+ .wallet-modal-theme-light .wallet-modal-chain-tabs {
1391
+ border-color: #e5e7eb;
1392
+ }
1393
+
1394
+ .wallet-modal-chain-tab {
1395
+ flex: 1;
1396
+ padding: 8px 12px;
1397
+ border-radius: 8px;
1398
+ border: none;
1399
+ background: transparent;
1400
+ cursor: pointer;
1401
+ font-size: 13px;
1402
+ font-weight: 500;
1403
+ transition: all 0.2s;
1404
+ }
1405
+
1406
+ .wallet-modal-theme-dark .wallet-modal-chain-tab {
1407
+ color: #9ca3af;
1408
+ }
1409
+
1410
+ .wallet-modal-theme-light .wallet-modal-chain-tab {
1411
+ color: #6b7280;
1412
+ }
1413
+
1414
+ .wallet-modal-theme-dark .wallet-modal-chain-tab.active {
1415
+ background: #2a2a2a;
1416
+ color: #ffffff;
1417
+ }
1418
+
1419
+ .wallet-modal-theme-light .wallet-modal-chain-tab.active {
1420
+ background: #f3f4f6;
1421
+ color: #111827;
1422
+ }
1423
+
1424
+ .wallet-modal-chain-list {
1425
+ max-height: 300px;
1426
+ overflow-y: auto;
1427
+ padding: 4px;
1428
+ }
1429
+
1430
+ .wallet-modal-chain-item {
1431
+ width: 100%;
1432
+ padding: 12px;
1433
+ border-radius: 8px;
1434
+ border: none;
1435
+ background: transparent;
1436
+ cursor: pointer;
1437
+ display: flex;
1438
+ align-items: center;
1439
+ gap: 12px;
1440
+ transition: all 0.2s;
1441
+ text-align: left;
1442
+ }
1443
+
1444
+ .wallet-modal-theme-dark .wallet-modal-chain-item {
1445
+ color: #ffffff;
1446
+ }
1447
+
1448
+ .wallet-modal-theme-light .wallet-modal-chain-item {
1449
+ color: #111827;
1450
+ }
1451
+
1452
+ .wallet-modal-theme-dark .wallet-modal-chain-item:hover {
1453
+ background: #2a2a2a;
1454
+ }
1455
+
1456
+ .wallet-modal-theme-light .wallet-modal-chain-item:hover {
1457
+ background: #f3f4f6;
1458
+ }
1459
+
1460
+ .wallet-modal-theme-dark .wallet-modal-chain-item.active {
1461
+ background: rgba(147, 51, 234, 0.15);
1462
+ }
1463
+
1464
+ .wallet-modal-theme-light .wallet-modal-chain-item.active {
1465
+ background: rgba(147, 51, 234, 0.1);
1466
+ }
1467
+
1468
+ .wallet-modal-chain-item .wallet-modal-chain-icon {
1469
+ width: 28px;
1470
+ height: 28px;
1471
+ }
1472
+
1473
+ .wallet-modal-chain-item .wallet-modal-chain-info {
1474
+ flex: 1;
1475
+ min-width: 0;
1476
+ }
1477
+
1478
+ .wallet-modal-chain-item .wallet-modal-chain-name {
1479
+ font-size: 14px;
1480
+ }
1481
+
1482
+ .wallet-modal-chain-badge {
1483
+ font-size: 10px;
1484
+ font-weight: 500;
1485
+ padding: 2px 6px;
1486
+ border-radius: 4px;
1487
+ text-transform: uppercase;
1488
+ letter-spacing: 0.5px;
1489
+ }
1490
+
1491
+ .wallet-modal-theme-dark .wallet-modal-chain-badge {
1492
+ background: rgba(251, 191, 36, 0.2);
1493
+ color: #fbbf24;
1494
+ }
1495
+
1496
+ .wallet-modal-theme-light .wallet-modal-chain-badge {
1497
+ background: rgba(251, 191, 36, 0.15);
1498
+ color: #d97706;
1499
+ }
1500
+
1501
+ .wallet-modal-chain-item svg:last-child {
1502
+ flex-shrink: 0;
1503
+ color: #10b981;
1504
+ }
1505
+
1506
+ /* Export Warning Modal */
1507
+ .wallet-modal-export-warning {
1508
+ /* Same size as other modals - no max-width override */
1509
+ }
1510
+
1511
+ .wallet-modal-export-warning-content {
1512
+ display: flex;
1513
+ flex-direction: column;
1514
+ align-items: flex-start;
1515
+ gap: 20px;
1516
+ text-align: left;
1517
+ width: 100%;
1518
+ min-width: 0;
1519
+ box-sizing: border-box;
1520
+ }
1521
+
1522
+ .wallet-modal-export-warning-illustration {
1523
+ display: flex;
1524
+ align-items: center;
1525
+ justify-content: center;
1526
+ width: 120px;
1527
+ height: 120px;
1528
+ border-radius: 50%;
1529
+ margin-bottom: 8px;
1530
+ align-self: center;
1531
+ }
1532
+
1533
+ .wallet-modal-theme-dark .wallet-modal-export-warning-illustration {
1534
+ background: rgba(59, 130, 246, 0.1);
1535
+ }
1536
+
1537
+ .wallet-modal-theme-light .wallet-modal-export-warning-illustration {
1538
+ background: rgba(59, 130, 246, 0.1);
1539
+ }
1540
+
1541
+ .wallet-modal-export-warning-icon-bg {
1542
+ display: flex;
1543
+ align-items: center;
1544
+ justify-content: center;
1545
+ width: 80px;
1546
+ height: 80px;
1547
+ border-radius: 50%;
1548
+ background: rgba(59, 130, 246, 0.2);
1549
+ }
1550
+
1551
+ .wallet-modal-theme-dark .wallet-modal-export-warning-icon-bg {
1552
+ color: #3b82f6;
1553
+ }
1554
+
1555
+ .wallet-modal-theme-light .wallet-modal-export-warning-icon-bg {
1556
+ color: #2563eb;
1557
+ }
1558
+
1559
+ .wallet-modal-export-warning-badge {
1560
+ display: inline-block;
1561
+ padding: 4px 12px;
1562
+ border-radius: 12px;
1563
+ font-size: 12px;
1564
+ font-weight: 500;
1565
+ align-self: center;
1566
+ }
1567
+
1568
+ .wallet-modal-theme-dark .wallet-modal-export-warning-badge {
1569
+ background: #2a2a2a;
1570
+ color: #9ca3af;
1571
+ }
1572
+
1573
+ .wallet-modal-theme-light .wallet-modal-export-warning-badge {
1574
+ background: #f3f4f6;
1575
+ color: #6b7280;
1576
+ }
1577
+
1578
+ .wallet-modal-export-warning-heading {
1579
+ font-size: 18px;
1580
+ font-weight: 600;
1581
+ margin: 0;
1582
+ line-height: 1.5;
1583
+ text-align: left;
1584
+ width: 100%;
1585
+ min-width: 0;
1586
+ word-wrap: break-word;
1587
+ overflow-wrap: break-word;
1588
+ }
1589
+
1590
+ .wallet-modal-theme-dark .wallet-modal-export-warning-heading {
1591
+ color: #ffffff;
1592
+ }
1593
+
1594
+ .wallet-modal-theme-light .wallet-modal-export-warning-heading {
1595
+ color: #111827;
1596
+ }
1597
+
1598
+ .wallet-modal-export-warning-info-cards {
1599
+ display: flex;
1600
+ flex-direction: column;
1601
+ gap: 12px;
1602
+ width: 100%;
1603
+ margin-top: 8px;
1604
+ }
1605
+
1606
+ .wallet-modal-export-warning-info-card {
1607
+ display: flex;
1608
+ align-items: flex-start;
1609
+ gap: 12px;
1610
+ padding: 16px;
1611
+ border-radius: 12px;
1612
+ text-align: left;
1613
+ width: 100%;
1614
+ min-width: 0;
1615
+ box-sizing: border-box;
1616
+ }
1617
+
1618
+ .wallet-modal-theme-dark .wallet-modal-export-warning-info-card {
1619
+ background: #2a2a2a;
1620
+ color: #ffffff;
1621
+ }
1622
+
1623
+ .wallet-modal-theme-light .wallet-modal-export-warning-info-card {
1624
+ background: #f9fafb;
1625
+ color: #111827;
1626
+ }
1627
+
1628
+ .wallet-modal-export-warning-info-card svg {
1629
+ flex-shrink: 0;
1630
+ margin-top: 2px;
1631
+ }
1632
+
1633
+ .wallet-modal-theme-dark .wallet-modal-export-warning-info-card svg {
1634
+ color: #9ca3af;
1635
+ }
1636
+
1637
+ .wallet-modal-theme-light .wallet-modal-export-warning-info-card svg {
1638
+ color: #6b7280;
1639
+ }
1640
+
1641
+ .wallet-modal-export-warning-info-card span {
1642
+ font-size: 14px;
1643
+ line-height: 1.5;
1644
+ flex: 1;
1645
+ min-width: 0;
1646
+ word-wrap: break-word;
1647
+ overflow-wrap: break-word;
1648
+ }
1649
+
1650
+ .wallet-modal-export-warning-checkbox {
1651
+ display: flex;
1652
+ align-items: flex-start;
1653
+ gap: 12px;
1654
+ cursor: pointer;
1655
+ width: 100%;
1656
+ min-width: 0;
1657
+ padding: 16px;
1658
+ border-radius: 12px;
1659
+ transition: all 0.2s;
1660
+ box-sizing: border-box;
1661
+ }
1662
+
1663
+ .wallet-modal-theme-dark .wallet-modal-export-warning-checkbox {
1664
+ background: #2a2a2a;
1665
+ }
1666
+
1667
+ .wallet-modal-theme-light .wallet-modal-export-warning-checkbox {
1668
+ background: #f9fafb;
1669
+ }
1670
+
1671
+ .wallet-modal-export-warning-checkbox-input {
1672
+ width: 20px;
1673
+ height: 20px;
1674
+ margin-top: 2px;
1675
+ cursor: pointer;
1676
+ flex-shrink: 0;
1677
+ appearance: none;
1678
+ -webkit-appearance: none;
1679
+ -moz-appearance: none;
1680
+ border: 2px solid;
1681
+ border-radius: 6px;
1682
+ position: relative;
1683
+ transition: all 0.2s;
1684
+ }
1685
+
1686
+ .wallet-modal-theme-dark .wallet-modal-export-warning-checkbox-input {
1687
+ border-color: #4a4a4a;
1688
+ background: #2a2a2a;
1689
+ }
1690
+
1691
+ .wallet-modal-theme-light .wallet-modal-export-warning-checkbox-input {
1692
+ border-color: #d1d5db;
1693
+ background: #ffffff;
1694
+ }
1695
+
1696
+ .wallet-modal-export-warning-checkbox-input:checked {
1697
+ background: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%);
1698
+ border-color: #9333ea;
1699
+ }
1700
+
1701
+ .wallet-modal-theme-dark .wallet-modal-export-warning-checkbox-input:checked {
1702
+ background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
1703
+ border-color: #a855f7;
1704
+ }
1705
+
1706
+ .wallet-modal-export-warning-checkbox-input:checked::after {
1707
+ content: '';
1708
+ position: absolute;
1709
+ left: 6px;
1710
+ top: 2px;
1711
+ width: 5px;
1712
+ height: 10px;
1713
+ border: solid white;
1714
+ border-width: 0 2px 2px 0;
1715
+ transform: rotate(45deg);
1716
+ }
1717
+
1718
+ .wallet-modal-export-warning-checkbox-input:hover {
1719
+ border-color: #9333ea;
1720
+ }
1721
+
1722
+ .wallet-modal-theme-dark .wallet-modal-export-warning-checkbox-input:hover {
1723
+ border-color: #a855f7;
1724
+ }
1725
+
1726
+ .wallet-modal-export-warning-checkbox span {
1727
+ font-size: 14px;
1728
+ line-height: 1.5;
1729
+ flex: 1;
1730
+ min-width: 0;
1731
+ word-wrap: break-word;
1732
+ overflow-wrap: break-word;
1733
+ }
1734
+
1735
+ .wallet-modal-theme-dark .wallet-modal-export-warning-checkbox span {
1736
+ color: #ffffff;
1737
+ }
1738
+
1739
+ .wallet-modal-theme-light .wallet-modal-export-warning-checkbox span {
1740
+ color: #111827;
1741
+ }
1742
+
1743
+ .wallet-modal-export-warning-reveal {
1744
+ width: 100%;
1745
+ min-width: 0;
1746
+ padding: 14px 24px;
1747
+ border-radius: 12px;
1748
+ border: none;
1749
+ font-size: 16px;
1750
+ font-weight: 600;
1751
+ cursor: pointer;
1752
+ transition: all 0.2s;
1753
+ background: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%);
1754
+ color: #ffffff;
1755
+ box-sizing: border-box;
1756
+ display: flex;
1757
+ align-items: center;
1758
+ justify-content: center;
1759
+ gap: 8px;
1760
+ }
1761
+
1762
+ .wallet-modal-theme-dark .wallet-modal-export-warning-reveal:not(.disabled) {
1763
+ background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
1764
+ }
1765
+
1766
+ .wallet-modal-export-warning-reveal:hover:not(.disabled) {
1767
+ transform: translateY(-2px);
1768
+ }
1769
+
1770
+ .wallet-modal-theme-dark .wallet-modal-export-warning-reveal:hover:not(.disabled) {
1771
+ box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
1772
+ }
1773
+
1774
+ .wallet-modal-theme-light .wallet-modal-export-warning-reveal:hover:not(.disabled) {
1775
+ box-shadow: 0 4px 12px rgba(147, 51, 234, 0.4);
1776
+ }
1777
+
1778
+ .wallet-modal-loading-spinner {
1779
+ animation: spin 1s linear infinite;
1780
+ width: 16px;
1781
+ height: 16px;
1782
+ }
1783
+
1784
+ @keyframes spin {
1785
+ from {
1786
+ transform: rotate(0deg);
1787
+ }
1788
+ to {
1789
+ transform: rotate(360deg);
1790
+ }
1791
+ }
1792
+
1793
+ .wallet-modal-export-warning-reveal.disabled {
1794
+ opacity: 0.5;
1795
+ cursor: not-allowed;
1796
+ background: #9ca3af;
1797
+ }
1798
+
1799
+ .wallet-modal-theme-dark .wallet-modal-export-warning-reveal.disabled {
1800
+ background: #3a3a3a;
1801
+ color: #6b7280;
1802
+ }
1803
+
1804
+ .wallet-modal-theme-light .wallet-modal-export-warning-reveal.disabled {
1805
+ background: #e5e7eb;
1806
+ color: #9ca3af;
1807
+ }
1808
+
1809
+ /* Export Key Modal */
1810
+ .wallet-modal-export-key {
1811
+ max-width: 480px;
1812
+ }
1813
+
1814
+ .wallet-modal-export-header {
1815
+ display: flex;
1816
+ align-items: center;
1817
+ justify-content: space-between;
1818
+ margin-bottom: 24px;
1819
+ }
1820
+
1821
+ .wallet-modal-export-title {
1822
+ font-size: 20px;
1823
+ font-weight: 600;
1824
+ margin: 0;
1825
+ }
1826
+
1827
+ .wallet-modal-theme-dark .wallet-modal-export-title {
1828
+ color: #ffffff;
1829
+ }
1830
+
1831
+ .wallet-modal-theme-light .wallet-modal-export-title {
1832
+ color: #111827;
1833
+ }
1834
+
1835
+ .wallet-modal-export-content {
1836
+ display: flex;
1837
+ flex-direction: column;
1838
+ gap: 20px;
1839
+ }
1840
+
1841
+ .wallet-modal-export-key-display {
1842
+ padding: 16px;
1843
+ border-radius: 12px;
1844
+ font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', 'Courier New', monospace;
1845
+ font-size: 13px;
1846
+ line-height: 1.6;
1847
+ word-break: break-all;
1848
+ text-align: left;
1849
+ position: relative;
1850
+ transition: filter 0.3s ease;
1851
+ user-select: none;
1852
+ }
1853
+
1854
+ .wallet-modal-export-key-display.blurred {
1855
+ filter: blur(8px);
1856
+ -webkit-filter: blur(8px);
1857
+ user-select: none;
1858
+ -webkit-user-select: none;
1859
+ -moz-user-select: none;
1860
+ -ms-user-select: none;
1861
+ }
1862
+
1863
+ .wallet-modal-export-key-display:not(.blurred) {
1864
+ user-select: text;
1865
+ -webkit-user-select: text;
1866
+ -moz-user-select: text;
1867
+ -ms-user-select: text;
1868
+ }
1869
+
1870
+ .wallet-modal-theme-dark .wallet-modal-export-key-display {
1871
+ background: #2a2a2a;
1872
+ color: #ffffff;
1873
+ border: 1px solid #3a3a3a;
1874
+ }
1875
+
1876
+ .wallet-modal-theme-light .wallet-modal-export-key-display {
1877
+ background: #f9fafb;
1878
+ color: #111827;
1879
+ border: 1px solid #e5e7eb;
1880
+ }
1881
+
1882
+ .wallet-modal-export-key-hint {
1883
+ font-size: 13px;
1884
+ text-align: center;
1885
+ margin: -12px 0 0 0;
1886
+ padding: 0;
1887
+ }
1888
+
1889
+ .wallet-modal-theme-dark .wallet-modal-export-key-hint {
1890
+ color: #9ca3af;
1891
+ }
1892
+
1893
+ .wallet-modal-theme-light .wallet-modal-export-key-hint {
1894
+ color: #6b7280;
1895
+ }
1896
+
1897
+ .wallet-modal-export-copy-btn {
1898
+ display: flex;
1899
+ align-items: center;
1900
+ justify-content: center;
1901
+ gap: 8px;
1902
+ width: 100%;
1903
+ padding: 12px 24px;
1904
+ border-radius: 12px;
1905
+ border: 1px solid;
1906
+ font-size: 15px;
1907
+ font-weight: 500;
1908
+ cursor: pointer;
1909
+ transition: all 0.2s;
1910
+ background: transparent;
1911
+ }
1912
+
1913
+ .wallet-modal-export-copy-btn:disabled {
1914
+ opacity: 0.5;
1915
+ cursor: not-allowed;
1916
+ }
1917
+
1918
+ .wallet-modal-theme-dark .wallet-modal-export-copy-btn {
1919
+ color: #ffffff;
1920
+ border-color: #3a3a3a;
1921
+ }
1922
+
1923
+ .wallet-modal-theme-light .wallet-modal-export-copy-btn {
1924
+ color: #111827;
1925
+ border-color: #e5e7eb;
1926
+ }
1927
+
1928
+ .wallet-modal-theme-dark .wallet-modal-export-copy-btn:hover {
1929
+ background: #2a2a2a;
1930
+ border-color: #4a4a4a;
1931
+ }
1932
+
1933
+ .wallet-modal-theme-light .wallet-modal-export-copy-btn:hover {
1934
+ background: #f3f4f6;
1935
+ border-color: #d1d5db;
1936
+ }
1937
+
1938
+ .wallet-modal-export-copy-btn svg {
1939
+ flex-shrink: 0;
1940
+ }
1941
+
1942
+ .wallet-modal-export-done-btn {
1943
+ width: 100%;
1944
+ padding: 14px 24px;
1945
+ border-radius: 12px;
1946
+ border: none;
1947
+ font-size: 16px;
1948
+ font-weight: 600;
1949
+ cursor: pointer;
1950
+ transition: all 0.2s;
1951
+ color: #ffffff;
1952
+ }
1953
+
1954
+ .wallet-modal-theme-dark .wallet-modal-export-done-btn {
1955
+ background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
1956
+ }
1957
+
1958
+ .wallet-modal-theme-light .wallet-modal-export-done-btn {
1959
+ background: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%);
1960
+ }
1961
+
1962
+ .wallet-modal-export-done-btn:hover {
1963
+ transform: translateY(-2px);
1964
+ }
1965
+
1966
+ .wallet-modal-theme-dark .wallet-modal-export-done-btn:hover {
1967
+ box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
1968
+ }
1969
+
1970
+ .wallet-modal-theme-light .wallet-modal-export-done-btn:hover {
1971
+ box-shadow: 0 4px 12px rgba(147, 51, 234, 0.4);
548
1972
  }
549
1973