@metropolle/design-system 1.0.0-beta.2026.1.24.851.ed85a09 → 1.0.0-beta.2026.1.25.11.9200926

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.
@@ -3808,33 +3808,53 @@ html[data-theme="light"] .mds-profile-card__verified-trigger {
3808
3808
  }
3809
3809
 
3810
3810
  .mds-profile-card__verified-popup {
3811
+ /* Position to the LEFT of the trigger icon */
3811
3812
  position: absolute;
3812
- /* Centered on the card */
3813
3813
  top: 50%;
3814
- left: 50%;
3815
- transform: translate(-50%, -50%);
3816
- padding: 28px 32px;
3817
- /* Liquid Glass popup */
3818
- background: rgba(20, 20, 30, 0.85);
3819
- backdrop-filter: blur(20px) saturate(150%);
3820
- -webkit-backdrop-filter: blur(20px) saturate(150%);
3821
- border-radius: 18px;
3814
+ right: calc(100% + 12px);
3815
+ transform: translateY(-50%);
3816
+ padding: 32px 40px;
3817
+ /* Liquid Glass popup - increased blur for better legibility */
3818
+ background: rgba(20, 20, 30, 0.82);
3819
+ backdrop-filter: blur(40px) saturate(180%);
3820
+ -webkit-backdrop-filter: blur(40px) saturate(180%);
3821
+ border-radius: 20px;
3822
3822
  border: 1px solid rgba(255, 255, 255, 0.12);
3823
3823
  box-shadow:
3824
- 0 12px 40px rgba(0, 0, 0, 0.35),
3824
+ 0 16px 48px rgba(0, 0, 0, 0.4),
3825
3825
  inset 0 1px 0 rgba(255, 255, 255, 0.08);
3826
- min-width: 280px;
3827
- z-index: 20;
3826
+ min-width: 320px;
3827
+ z-index: 100;
3828
3828
  }
3829
3829
 
3830
3830
  html[data-theme="light"] .mds-profile-card__verified-popup {
3831
3831
  background: rgba(255, 255, 255, 0.85);
3832
+ backdrop-filter: blur(40px) saturate(180%);
3833
+ -webkit-backdrop-filter: blur(40px) saturate(180%);
3832
3834
  border: 1px solid rgba(255, 255, 255, 0.95);
3833
3835
  box-shadow:
3834
- 0 12px 40px rgba(0, 0, 0, 0.12),
3836
+ 0 16px 48px rgba(0, 0, 0, 0.12),
3835
3837
  inset 0 1px 0 rgba(255, 255, 255, 1);
3836
3838
  }
3837
3839
 
3840
+ /* Mobile: popup centered on screen */
3841
+ @media (max-width: 768px) {
3842
+ .mds-profile-card__verified-popup {
3843
+ position: fixed;
3844
+ top: 50%;
3845
+ left: 0;
3846
+ right: 0;
3847
+ bottom: auto;
3848
+ transform: translateY(-50%);
3849
+ width: 280px;
3850
+ min-width: auto;
3851
+ margin-left: auto;
3852
+ margin-right: auto;
3853
+ padding: 24px 28px;
3854
+ z-index: 1000;
3855
+ }
3856
+ }
3857
+
3838
3858
  .mds-profile-card__verified-header {
3839
3859
  font-family: 'OCR-B', 'OCR B Std', 'Courier New', monospace;
3840
3860
  font-size: 16px;
@@ -3878,6 +3898,60 @@ html[data-theme="light"] .mds-profile-card__verified-popup {
3878
3898
  color: #00d4aa;
3879
3899
  }
3880
3900
 
3901
+ /* FEAT-090: Verification Score Checks */
3902
+ .mds-profile-card__verified-checks {
3903
+ display: flex;
3904
+ flex-direction: column;
3905
+ gap: 10px;
3906
+ margin: 16px 0;
3907
+ }
3908
+
3909
+ .mds-profile-card__check-item {
3910
+ display: flex;
3911
+ align-items: center;
3912
+ gap: 10px;
3913
+ font-family: 'OCR-B', 'OCR B Std', 'Courier New', monospace;
3914
+ font-size: 12px;
3915
+ letter-spacing: 0.04em;
3916
+ }
3917
+
3918
+ .mds-profile-card__check-icon {
3919
+ width: 18px;
3920
+ height: 18px;
3921
+ display: flex;
3922
+ align-items: center;
3923
+ justify-content: center;
3924
+ border-radius: 50%;
3925
+ font-size: 11px;
3926
+ font-weight: bold;
3927
+ background: rgba(255, 255, 255, 0.05);
3928
+ color: rgba(255, 255, 255, 0.3);
3929
+ flex-shrink: 0;
3930
+ }
3931
+
3932
+ .mds-profile-card__check-icon--passed {
3933
+ background: rgba(0, 212, 170, 0.15);
3934
+ color: #00d4aa;
3935
+ }
3936
+
3937
+ html[data-theme="light"] .mds-profile-card__check-icon {
3938
+ background: rgba(0, 0, 0, 0.05);
3939
+ color: rgba(0, 0, 0, 0.3);
3940
+ }
3941
+
3942
+ html[data-theme="light"] .mds-profile-card__check-icon--passed {
3943
+ background: rgba(0, 180, 140, 0.15);
3944
+ color: #00b48c;
3945
+ }
3946
+
3947
+ .mds-profile-card__check-label {
3948
+ color: var(--mds-color-text-secondary, rgba(255, 255, 255, 0.7));
3949
+ }
3950
+
3951
+ html[data-theme="light"] .mds-profile-card__check-label {
3952
+ color: rgba(0, 0, 0, 0.7);
3953
+ }
3954
+
3881
3955
  .mds-profile-card__verified-footer {
3882
3956
  display: flex;
3883
3957
  justify-content: space-between;
@@ -3969,6 +4043,16 @@ html[data-theme="light"] .mds-profile-card__info-dot.active {
3969
4043
  transform: none;
3970
4044
  justify-content: center;
3971
4045
  margin-top: 16px;
4046
+ flex-direction: column;
4047
+ align-items: center;
4048
+ gap: 12px;
4049
+ }
4050
+
4051
+ /* Info dots: horizontal on mobile */
4052
+ .mds-profile-card__info-dots {
4053
+ flex-direction: row;
4054
+ gap: 8px;
4055
+ margin-top: 8px;
3972
4056
  }
3973
4057
 
3974
4058
  .mds-profile-card__social {
@@ -4015,11 +4099,11 @@ html[data-theme="light"] .mds-profile-card__info-dot.active {
4015
4099
  .mds-profile-card__photo-modal {
4016
4100
  position: fixed;
4017
4101
  inset: 0;
4018
- z-index: 9999;
4102
+ z-index: 99999; /* Higher z-index to cover everything including header */
4019
4103
  display: flex;
4020
4104
  align-items: center;
4021
4105
  justify-content: center;
4022
- padding: 24px;
4106
+ padding: 16px;
4023
4107
  cursor: pointer;
4024
4108
  animation: mds-photo-modal-fade-in 0.25s ease-out;
4025
4109
  }
@@ -4034,17 +4118,18 @@ html[data-theme="light"] .mds-profile-card__info-dot.active {
4034
4118
  }
4035
4119
 
4036
4120
  .mds-profile-card__photo-modal-backdrop {
4037
- position: absolute;
4121
+ position: fixed;
4038
4122
  inset: 0;
4039
- background: rgba(10, 10, 15, 0.6);
4040
- backdrop-filter: blur(20px) saturate(120%);
4041
- -webkit-backdrop-filter: blur(20px) saturate(120%);
4123
+ /* Stronger blur to cover entire page including header */
4124
+ background: rgba(0, 0, 0, 0.75);
4125
+ backdrop-filter: blur(30px) saturate(100%);
4126
+ -webkit-backdrop-filter: blur(30px) saturate(100%);
4042
4127
  }
4043
4128
 
4044
4129
  html[data-theme="light"] .mds-profile-card__photo-modal-backdrop {
4045
- background: rgba(255, 255, 255, 0.5);
4046
- backdrop-filter: blur(20px) saturate(140%);
4047
- -webkit-backdrop-filter: blur(20px) saturate(140%);
4130
+ background: rgba(255, 255, 255, 0.7);
4131
+ backdrop-filter: blur(30px) saturate(120%);
4132
+ -webkit-backdrop-filter: blur(30px) saturate(120%);
4048
4133
  }
4049
4134
 
4050
4135
  .mds-profile-card__photo-modal-content {
@@ -4052,8 +4137,11 @@ html[data-theme="light"] .mds-profile-card__photo-modal-backdrop {
4052
4137
  display: flex;
4053
4138
  align-items: center;
4054
4139
  justify-content: center;
4140
+ /* Desktop: 90% of viewport */
4055
4141
  max-width: 90vw;
4056
4142
  max-height: 90vh;
4143
+ width: auto;
4144
+ height: auto;
4057
4145
  animation: mds-photo-modal-scale-in 0.3s cubic-bezier(0.16, 1, 0.3, 1);
4058
4146
  }
4059
4147
 
@@ -4069,25 +4157,518 @@ html[data-theme="light"] .mds-profile-card__photo-modal-backdrop {
4069
4157
  }
4070
4158
 
4071
4159
  .mds-profile-card__photo-modal-image {
4072
- max-width: 100%;
4073
- max-height: 90vh;
4160
+ /* Fill available space while maintaining aspect ratio */
4161
+ width: auto;
4162
+ height: auto;
4163
+ max-width: 90vw;
4164
+ max-height: 85vh;
4074
4165
  -o-object-fit: contain;
4075
4166
  object-fit: contain;
4076
- border-radius: 20px;
4167
+ border-radius: 16px;
4077
4168
  /* Liquid Glass frame */
4078
4169
  background: rgba(255, 255, 255, 0.03);
4079
- border: 1px solid rgba(255, 255, 255, 0.1);
4170
+ border: 1px solid rgba(255, 255, 255, 0.15);
4080
4171
  box-shadow:
4081
- 0 25px 80px rgba(0, 0, 0, 0.4),
4082
- 0 10px 30px rgba(0, 0, 0, 0.2),
4172
+ 0 25px 80px rgba(0, 0, 0, 0.5),
4173
+ 0 10px 30px rgba(0, 0, 0, 0.3),
4083
4174
  inset 0 1px 0 rgba(255, 255, 255, 0.1);
4084
4175
  }
4085
4176
 
4086
4177
  html[data-theme="light"] .mds-profile-card__photo-modal-image {
4087
4178
  background: rgba(255, 255, 255, 0.1);
4088
- border-color: rgba(255, 255, 255, 0.8);
4179
+ border-color: rgba(0, 0, 0, 0.1);
4089
4180
  box-shadow:
4090
- 0 25px 80px rgba(0, 0, 0, 0.15),
4091
- 0 10px 30px rgba(0, 0, 0, 0.08),
4181
+ 0 25px 80px rgba(0, 0, 0, 0.2),
4182
+ 0 10px 30px rgba(0, 0, 0, 0.1),
4092
4183
  inset 0 1px 0 rgba(255, 255, 255, 1);
4093
4184
  }
4185
+
4186
+ /* Mobile: Photo expands to fill screen width */
4187
+ @media (max-width: 700px) {
4188
+ .mds-profile-card__photo-modal {
4189
+ padding: 12px;
4190
+ }
4191
+
4192
+ .mds-profile-card__photo-modal-content {
4193
+ max-width: 96vw;
4194
+ max-height: 85vh;
4195
+ }
4196
+
4197
+ .mds-profile-card__photo-modal-image {
4198
+ max-width: 96vw;
4199
+ max-height: 80vh;
4200
+ border-radius: 12px;
4201
+ }
4202
+ }
4203
+
4204
+ /* =============================================================================
4205
+ FEAT-090: Verification Score Components (Settings Page)
4206
+ ============================================================================= */
4207
+
4208
+ .mds-verification-score-display {
4209
+ display: flex;
4210
+ flex-direction: column;
4211
+ align-items: center;
4212
+ gap: 8px;
4213
+ padding: 24px 40px;
4214
+ border-radius: 16px;
4215
+ background: rgba(255, 255, 255, 0.05);
4216
+ border: 1px solid rgba(255, 255, 255, 0.1);
4217
+ }
4218
+
4219
+ html[data-theme="light"] .mds-verification-score-display {
4220
+ background: rgba(0, 0, 0, 0.02);
4221
+ border-color: rgba(0, 0, 0, 0.1);
4222
+ }
4223
+
4224
+ .mds-verification-score-number {
4225
+ font-family: 'OCR-B', 'OCR B Std', 'Courier New', monospace;
4226
+ font-size: 4rem;
4227
+ font-weight: bold;
4228
+ line-height: 1;
4229
+ color: #00d4aa;
4230
+ }
4231
+
4232
+ html[data-theme="light"] .mds-verification-score-number {
4233
+ color: #00b48c;
4234
+ }
4235
+
4236
+ .mds-verification-score-label {
4237
+ font-size: 0.875rem;
4238
+ text-transform: uppercase;
4239
+ letter-spacing: 0.1em;
4240
+ color: var(--mds-color-text-secondary, rgba(255, 255, 255, 0.6));
4241
+ }
4242
+
4243
+ .mds-verification-checks-grid {
4244
+ display: flex;
4245
+ flex-direction: column;
4246
+ gap: 12px;
4247
+ }
4248
+
4249
+ .mds-verification-check-card {
4250
+ display: flex;
4251
+ align-items: center;
4252
+ gap: 16px;
4253
+ padding: 16px 20px;
4254
+ border-radius: 12px;
4255
+ background: rgba(255, 255, 255, 0.03);
4256
+ border: 1px solid rgba(255, 255, 255, 0.08);
4257
+ transition: all 0.2s ease;
4258
+ }
4259
+
4260
+ html[data-theme="light"] .mds-verification-check-card {
4261
+ background: rgba(0, 0, 0, 0.02);
4262
+ border-color: rgba(0, 0, 0, 0.06);
4263
+ }
4264
+
4265
+ .mds-verification-check-card--passed {
4266
+ background: rgba(0, 212, 170, 0.05);
4267
+ border-color: rgba(0, 212, 170, 0.2);
4268
+ }
4269
+
4270
+ html[data-theme="light"] .mds-verification-check-card--passed {
4271
+ background: rgba(0, 180, 140, 0.05);
4272
+ border-color: rgba(0, 180, 140, 0.2);
4273
+ }
4274
+
4275
+ .mds-verification-check-icon {
4276
+ width: 32px;
4277
+ height: 32px;
4278
+ display: flex;
4279
+ align-items: center;
4280
+ justify-content: center;
4281
+ border-radius: 50%;
4282
+ font-size: 16px;
4283
+ font-weight: bold;
4284
+ background: rgba(255, 255, 255, 0.05);
4285
+ color: rgba(255, 255, 255, 0.3);
4286
+ flex-shrink: 0;
4287
+ }
4288
+
4289
+ .mds-verification-check-card--passed .mds-verification-check-icon {
4290
+ background: rgba(0, 212, 170, 0.15);
4291
+ color: #00d4aa;
4292
+ }
4293
+
4294
+ html[data-theme="light"] .mds-verification-check-icon {
4295
+ background: rgba(0, 0, 0, 0.05);
4296
+ color: rgba(0, 0, 0, 0.3);
4297
+ }
4298
+
4299
+ html[data-theme="light"] .mds-verification-check-card--passed .mds-verification-check-icon {
4300
+ background: rgba(0, 180, 140, 0.15);
4301
+ color: #00b48c;
4302
+ }
4303
+
4304
+ .mds-verification-check-content {
4305
+ flex: 1;
4306
+ min-width: 0;
4307
+ }
4308
+
4309
+ .mds-verification-check-action {
4310
+ flex-shrink: 0;
4311
+ }
4312
+
4313
+ /* =============================================================================
4314
+ FEAT-090: Verification Tab (Modal/Backoffice)
4315
+ ============================================================================= */
4316
+
4317
+ .mds-verification-tab {
4318
+ display: flex;
4319
+ flex-direction: column;
4320
+ gap: 20px;
4321
+ padding: 8px 0;
4322
+ }
4323
+
4324
+ .mds-verification-score-header {
4325
+ display: flex;
4326
+ align-items: center;
4327
+ gap: 20px;
4328
+ padding: 20px;
4329
+ background: rgba(0, 212, 170, 0.05);
4330
+ border: 1px solid rgba(0, 212, 170, 0.15);
4331
+ border-radius: 12px;
4332
+ }
4333
+
4334
+ .mds-verification-score-badge {
4335
+ display: flex;
4336
+ flex-direction: column;
4337
+ align-items: center;
4338
+ gap: 4px;
4339
+ padding: 16px 24px;
4340
+ background: rgba(0, 212, 170, 0.1);
4341
+ border-radius: 10px;
4342
+ }
4343
+
4344
+ .mds-verification-score-badge .mds-verification-score-number {
4345
+ display: block;
4346
+ font-family: 'OCR-B', 'OCR B Std', 'Courier New', monospace;
4347
+ font-size: 2.5rem;
4348
+ font-weight: bold;
4349
+ line-height: 1;
4350
+ color: #00d4aa;
4351
+ text-align: center;
4352
+ }
4353
+
4354
+ .mds-verification-score-badge .mds-verification-score-label {
4355
+ display: block;
4356
+ font-size: 0.75rem;
4357
+ text-transform: uppercase;
4358
+ letter-spacing: 0.1em;
4359
+ color: var(--mds-color-text-secondary, rgba(255, 255, 255, 0.6));
4360
+ text-align: center;
4361
+ margin-top: 4px;
4362
+ }
4363
+
4364
+ .mds-verification-score-info {
4365
+ flex: 1;
4366
+ }
4367
+
4368
+ .mds-verification-checks-list {
4369
+ display: flex;
4370
+ flex-direction: column;
4371
+ gap: 10px;
4372
+ }
4373
+
4374
+ .mds-verification-check-item {
4375
+ display: flex;
4376
+ align-items: center;
4377
+ gap: 14px;
4378
+ padding: 14px 16px;
4379
+ background: rgba(255, 255, 255, 0.03);
4380
+ border: 1px solid rgba(255, 255, 255, 0.08);
4381
+ border-radius: 10px;
4382
+ transition: all 0.2s ease;
4383
+ }
4384
+
4385
+ .mds-verification-check-item--passed {
4386
+ background: rgba(0, 212, 170, 0.05);
4387
+ border-color: rgba(0, 212, 170, 0.2);
4388
+ }
4389
+
4390
+ .mds-verification-check-status {
4391
+ display: flex;
4392
+ align-items: center;
4393
+ justify-content: center;
4394
+ width: 28px;
4395
+ height: 28px;
4396
+ border-radius: 50%;
4397
+ background: rgba(255, 255, 255, 0.05);
4398
+ color: rgba(255, 255, 255, 0.3);
4399
+ flex-shrink: 0;
4400
+ }
4401
+
4402
+ .mds-verification-check-item--passed .mds-verification-check-status {
4403
+ background: rgba(0, 212, 170, 0.15);
4404
+ color: #00d4aa;
4405
+ }
4406
+
4407
+ .mds-verification-check-content {
4408
+ flex: 1;
4409
+ min-width: 0;
4410
+ }
4411
+
4412
+ .mds-verification-check-item .mds-btn {
4413
+ flex-shrink: 0;
4414
+ margin-left: auto;
4415
+ }
4416
+
4417
+ .mds-verification-check-item .mds-btn--sm {
4418
+ padding: 6px 12px;
4419
+ font-size: 0.75rem;
4420
+ }
4421
+
4422
+ html[data-theme="light"] .mds-verification-score-header {
4423
+ background: rgba(0, 180, 140, 0.05);
4424
+ border-color: rgba(0, 180, 140, 0.15);
4425
+ }
4426
+
4427
+ html[data-theme="light"] .mds-verification-score-badge {
4428
+ background: rgba(0, 180, 140, 0.1);
4429
+ }
4430
+
4431
+ html[data-theme="light"] .mds-verification-score-badge .mds-verification-score-number {
4432
+ color: #00b48c;
4433
+ }
4434
+
4435
+ html[data-theme="light"] .mds-verification-check-item {
4436
+ background: rgba(0, 0, 0, 0.02);
4437
+ border-color: rgba(0, 0, 0, 0.06);
4438
+ }
4439
+
4440
+ html[data-theme="light"] .mds-verification-check-item--passed {
4441
+ background: rgba(0, 180, 140, 0.05);
4442
+ border-color: rgba(0, 180, 140, 0.15);
4443
+ }
4444
+
4445
+ html[data-theme="light"] .mds-verification-check-status {
4446
+ background: rgba(0, 0, 0, 0.05);
4447
+ color: rgba(0, 0, 0, 0.3);
4448
+ }
4449
+
4450
+ html[data-theme="light"] .mds-verification-check-item--passed .mds-verification-check-status {
4451
+ background: rgba(0, 180, 140, 0.15);
4452
+ color: #00b48c;
4453
+ }
4454
+
4455
+ /* =============================================================================
4456
+ FEAT-090: VerificationScoreCard Component (Unified)
4457
+ Used by ProfileCard popup, @front settings, @back UserIdentityModal
4458
+ ============================================================================= */
4459
+
4460
+ /* Compact Popup Variant (ProfileCard) */
4461
+ .mds-verification-popup {
4462
+ min-width: 200px;
4463
+ }
4464
+
4465
+ .mds-verification-popup__header {
4466
+ font-size: 0.875rem;
4467
+ font-weight: 600;
4468
+ color: var(--mds-color-text-primary, #fff);
4469
+ padding-bottom: 12px;
4470
+ margin-bottom: 12px;
4471
+ border-bottom: 1px solid rgba(255, 255, 255, 0.1);
4472
+ }
4473
+
4474
+ html[data-theme="light"] .mds-verification-popup__header {
4475
+ color: var(--mds-color-text-primary, #1f2937);
4476
+ border-bottom-color: rgba(0, 0, 0, 0.1);
4477
+ }
4478
+
4479
+ .mds-verification-popup__checks {
4480
+ display: flex;
4481
+ flex-direction: column;
4482
+ gap: 8px;
4483
+ }
4484
+
4485
+ .mds-verification-popup__footer {
4486
+ display: flex;
4487
+ justify-content: space-between;
4488
+ align-items: center;
4489
+ padding-top: 12px;
4490
+ margin-top: 12px;
4491
+ border-top: 1px solid rgba(255, 255, 255, 0.1);
4492
+ font-size: 0.75rem;
4493
+ color: var(--mds-color-text-secondary, rgba(255, 255, 255, 0.6));
4494
+ }
4495
+
4496
+ html[data-theme="light"] .mds-verification-popup__footer {
4497
+ border-top-color: rgba(0, 0, 0, 0.1);
4498
+ color: var(--mds-color-text-secondary, rgba(0, 0, 0, 0.6));
4499
+ }
4500
+
4501
+ .mds-verification-popup__sequence,
4502
+ .mds-verification-popup__date {
4503
+ font-family: 'OCR-B', 'OCR B Std', 'Courier New', monospace;
4504
+ }
4505
+
4506
+ /* Compact Check Item (for popup) */
4507
+ .mds-verification-check-item--compact {
4508
+ display: flex;
4509
+ align-items: center;
4510
+ gap: 8px;
4511
+ padding: 4px 0;
4512
+ }
4513
+
4514
+ .mds-verification-check-icon {
4515
+ width: 18px;
4516
+ height: 18px;
4517
+ display: flex;
4518
+ align-items: center;
4519
+ justify-content: center;
4520
+ font-size: 12px;
4521
+ font-weight: bold;
4522
+ color: rgba(255, 255, 255, 0.3);
4523
+ }
4524
+
4525
+ .mds-verification-check-icon--passed {
4526
+ color: #00d4aa;
4527
+ }
4528
+
4529
+ html[data-theme="light"] .mds-verification-check-icon {
4530
+ color: rgba(0, 0, 0, 0.3);
4531
+ }
4532
+
4533
+ html[data-theme="light"] .mds-verification-check-icon--passed {
4534
+ color: #00b48c;
4535
+ }
4536
+
4537
+ .mds-verification-check-label {
4538
+ font-size: 0.8125rem;
4539
+ color: var(--mds-color-text-primary, #fff);
4540
+ }
4541
+
4542
+ html[data-theme="light"] .mds-verification-check-label {
4543
+ color: var(--mds-color-text-primary, #1f2937);
4544
+ }
4545
+
4546
+ /* Full Card Variant */
4547
+ .mds-verification-card {
4548
+ display: flex;
4549
+ flex-direction: column;
4550
+ gap: 20px;
4551
+ }
4552
+
4553
+ .mds-verification-card__header {
4554
+ display: flex;
4555
+ align-items: center;
4556
+ gap: 20px;
4557
+ padding: 20px;
4558
+ background: rgba(0, 212, 170, 0.05);
4559
+ border: 1px solid rgba(0, 212, 170, 0.15);
4560
+ border-radius: 12px;
4561
+ }
4562
+
4563
+ html[data-theme="light"] .mds-verification-card__header {
4564
+ background: rgba(0, 180, 140, 0.05);
4565
+ border-color: rgba(0, 180, 140, 0.15);
4566
+ }
4567
+
4568
+ .mds-verification-card__badge {
4569
+ display: flex;
4570
+ flex-direction: column;
4571
+ align-items: center;
4572
+ gap: 4px;
4573
+ padding: 16px 24px;
4574
+ background: rgba(0, 212, 170, 0.1);
4575
+ border-radius: 10px;
4576
+ }
4577
+
4578
+ html[data-theme="light"] .mds-verification-card__badge {
4579
+ background: rgba(0, 180, 140, 0.1);
4580
+ }
4581
+
4582
+ .mds-verification-card__badge-label {
4583
+ font-size: 0.75rem;
4584
+ text-transform: uppercase;
4585
+ letter-spacing: 0.1em;
4586
+ color: var(--mds-color-text-secondary, rgba(255, 255, 255, 0.6));
4587
+ }
4588
+
4589
+ .mds-verification-card__badge-score {
4590
+ font-family: 'OCR-B', 'OCR B Std', 'Courier New', monospace;
4591
+ font-size: 2.5rem;
4592
+ font-weight: bold;
4593
+ line-height: 1;
4594
+ color: #00d4aa;
4595
+ }
4596
+
4597
+ html[data-theme="light"] .mds-verification-card__badge-score {
4598
+ color: #00b48c;
4599
+ }
4600
+
4601
+ .mds-verification-card__title {
4602
+ flex: 1;
4603
+ }
4604
+
4605
+ .mds-verification-card__heading {
4606
+ margin: 0 0 4px 0;
4607
+ font-size: 1.125rem;
4608
+ font-weight: 600;
4609
+ color: var(--mds-color-text-primary, #fff);
4610
+ }
4611
+
4612
+ html[data-theme="light"] .mds-verification-card__heading {
4613
+ color: var(--mds-color-text-primary, #1f2937);
4614
+ }
4615
+
4616
+ .mds-verification-card__subtitle {
4617
+ margin: 0;
4618
+ font-size: 0.875rem;
4619
+ color: var(--mds-color-text-secondary, rgba(255, 255, 255, 0.6));
4620
+ }
4621
+
4622
+ html[data-theme="light"] .mds-verification-card__subtitle {
4623
+ color: var(--mds-color-text-secondary, rgba(0, 0, 0, 0.6));
4624
+ }
4625
+
4626
+ .mds-verification-card__error {
4627
+ padding: 12px 16px;
4628
+ background: rgba(220, 38, 38, 0.1);
4629
+ border: 1px solid rgba(220, 38, 38, 0.2);
4630
+ border-radius: 8px;
4631
+ color: #ef4444;
4632
+ font-size: 0.875rem;
4633
+ }
4634
+
4635
+ .mds-verification-card__checks {
4636
+ display: flex;
4637
+ flex-direction: column;
4638
+ gap: 10px;
4639
+ }
4640
+
4641
+ .mds-verification-check-description {
4642
+ display: block;
4643
+ font-size: 0.9375rem;
4644
+ color: var(--mds-color-text-primary, #fff);
4645
+ }
4646
+
4647
+ html[data-theme="light"] .mds-verification-check-description {
4648
+ color: var(--mds-color-text-primary, #1f2937);
4649
+ }
4650
+
4651
+ .mds-verification-check-points {
4652
+ display: block;
4653
+ font-size: 0.8125rem;
4654
+ color: var(--mds-color-text-secondary, rgba(255, 255, 255, 0.6));
4655
+ margin-top: 2px;
4656
+ }
4657
+
4658
+ html[data-theme="light"] .mds-verification-check-points {
4659
+ color: var(--mds-color-text-secondary, rgba(0, 0, 0, 0.6));
4660
+ }
4661
+
4662
+ .mds-verification-card__info {
4663
+ margin: 0;
4664
+ padding: 16px;
4665
+ background: rgba(255, 255, 255, 0.03);
4666
+ border-radius: 8px;
4667
+ font-size: 0.875rem;
4668
+ color: var(--mds-color-text-secondary, rgba(255, 255, 255, 0.6));
4669
+ }
4670
+
4671
+ html[data-theme="light"] .mds-verification-card__info {
4672
+ background: rgba(0, 0, 0, 0.02);
4673
+ color: var(--mds-color-text-secondary, rgba(0, 0, 0, 0.6));
4674
+ }