@keenmate/pure-admin-theme-minimal 1.0.0-rc01 → 1.0.0-rc04

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/minimal.css CHANGED
@@ -107,6 +107,42 @@ label {
107
107
  font-size: inherit;
108
108
  }
109
109
 
110
+ /* Webkit browsers (Chrome, Safari, Edge) */
111
+ *::-webkit-scrollbar {
112
+ width: 6px;
113
+ height: 6px;
114
+ }
115
+
116
+ *::-webkit-scrollbar-track {
117
+ background: var(--pa-primary-bg);
118
+ border-radius: 3px;
119
+ }
120
+
121
+ *::-webkit-scrollbar-thumb {
122
+ background: #e8e8e8;
123
+ border-radius: 3px;
124
+ border: 1px solid var(--pa-primary-bg);
125
+ }
126
+
127
+ *::-webkit-scrollbar-thumb:hover {
128
+ background: #555555;
129
+ border-color: rgba(85, 85, 85, 0.1);
130
+ }
131
+
132
+ *::-webkit-scrollbar-thumb:active {
133
+ background: rgba(85, 85, 85, 0.1);
134
+ }
135
+
136
+ *::-webkit-scrollbar-corner {
137
+ background: var(--pa-primary-bg);
138
+ }
139
+
140
+ /* Firefox */
141
+ * {
142
+ scrollbar-width: thin;
143
+ scrollbar-color: var(--pa-border-color) var(--pa-primary-bg);
144
+ }
145
+
110
146
  /* ========================================
111
147
  Layout V2 - Based on Testbench Structure
112
148
  ======================================== */
@@ -2439,8 +2475,8 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
2439
2475
  }
2440
2476
 
2441
2477
  .pa-card__header {
2442
- padding: 0.8rem 1.6rem;
2443
- min-height: 5rem;
2478
+ padding: 0.8rem 1rem;
2479
+ min-height: 4rem;
2444
2480
  border-top-left-radius: 8px;
2445
2481
  border-top-right-radius: 8px;
2446
2482
  border-bottom: 1px solid var(--pa-border-color);
@@ -2501,10 +2537,11 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
2501
2537
  color: var(--pa-text-primary);
2502
2538
  font-size: 1.6rem;
2503
2539
  font-weight: 600;
2540
+ line-height: 1;
2504
2541
  }
2505
2542
 
2506
2543
  .pa-card__body {
2507
- padding: 1.6rem 1.6rem 1.6rem 1.6rem;
2544
+ padding: 1.6rem 1rem;
2508
2545
  flex: 1;
2509
2546
  }
2510
2547
 
@@ -2517,7 +2554,7 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
2517
2554
  }
2518
2555
 
2519
2556
  .pa-card__footer {
2520
- padding: 1.2rem 1.6rem;
2557
+ padding: 1.2rem 1rem;
2521
2558
  border-top: 1px solid var(--pa-border-color);
2522
2559
  border-bottom-left-radius: 8px;
2523
2560
  border-bottom-right-radius: 8px;
@@ -2626,7 +2663,7 @@ body:not(.sidebar-hidden) .pa-layout__sidebar--icon-collapse .pa-sidebar__icon {
2626
2663
  }
2627
2664
 
2628
2665
  .pa-card__tab {
2629
- padding: 1.2rem 1.6rem;
2666
+ padding: 1.2rem 1rem;
2630
2667
  border: none;
2631
2668
  background: none;
2632
2669
  color: var(--pa-text-secondary);
@@ -2933,8 +2970,23 @@ a.pa-card p {
2933
2970
  justify-content: center;
2934
2971
  }
2935
2972
 
2973
+ .pa-tabs--border-top {
2974
+ border-bottom: none;
2975
+ border-top: 1px solid var(--pa-border-color);
2976
+ }
2977
+
2978
+ .pa-tabs--border-top .pa-tabs__item {
2979
+ border-bottom: none;
2980
+ border-top: 2px solid transparent;
2981
+ }
2982
+
2983
+ .pa-tabs--border-top .pa-tabs__item--active {
2984
+ border-top-color: #555555;
2985
+ border-bottom-color: transparent;
2986
+ }
2987
+
2936
2988
  .pa-tabs--sm .pa-tabs__item {
2937
- padding: 0.6rem 1rem;
2989
+ padding: 0.8rem 1rem;
2938
2990
  font-size: 1.2rem;
2939
2991
  }
2940
2992
 
@@ -2943,7 +2995,7 @@ a.pa-card p {
2943
2995
  }
2944
2996
 
2945
2997
  .pa-tabs--lg .pa-tabs__item {
2946
- padding: 1rem 1.4rem;
2998
+ padding: 0.8rem 1.4rem;
2947
2999
  font-size: 1.8rem;
2948
3000
  }
2949
3001
 
@@ -2954,7 +3006,7 @@ a.pa-card p {
2954
3006
  .pa-tabs__container--bordered {
2955
3007
  border: 1px solid var(--pa-border-color);
2956
3008
  border-radius: 8px;
2957
- padding: 1.6rem;
3009
+ padding: 1.6rem 1rem;
2958
3010
  background-color: var(--pa-card-bg);
2959
3011
  }
2960
3012
 
@@ -2982,7 +3034,7 @@ a.pa-card p {
2982
3034
  .pa-tabs__vertical-layout--bordered {
2983
3035
  border: 1px solid var(--pa-border-color);
2984
3036
  border-radius: 8px;
2985
- padding: 1.6rem;
3037
+ padding: 1.6rem 1rem;
2986
3038
  background-color: var(--pa-card-bg);
2987
3039
  }
2988
3040
 
@@ -2994,86 +3046,6 @@ a.pa-card p {
2994
3046
  width: 100%;
2995
3047
  }
2996
3048
 
2997
- .pa-tabs .pa-tabs__item--w-1x {
2998
- min-width: 1rem;
2999
- }
3000
-
3001
- .pa-tabs .pa-tabs__item--w-2x {
3002
- min-width: 2rem;
3003
- }
3004
-
3005
- .pa-tabs .pa-tabs__item--w-3x {
3006
- min-width: 3rem;
3007
- }
3008
-
3009
- .pa-tabs .pa-tabs__item--w-4x {
3010
- min-width: 4rem;
3011
- }
3012
-
3013
- .pa-tabs .pa-tabs__item--w-5x {
3014
- min-width: 5rem;
3015
- }
3016
-
3017
- .pa-tabs .pa-tabs__item--w-6x {
3018
- min-width: 6rem;
3019
- }
3020
-
3021
- .pa-tabs .pa-tabs__item--w-7x {
3022
- min-width: 7rem;
3023
- }
3024
-
3025
- .pa-tabs .pa-tabs__item--w-8x {
3026
- min-width: 8rem;
3027
- }
3028
-
3029
- .pa-tabs .pa-tabs__item--w-9x {
3030
- min-width: 9rem;
3031
- }
3032
-
3033
- .pa-tabs .pa-tabs__item--w-10x {
3034
- min-width: 10rem;
3035
- }
3036
-
3037
- .pa-tabs .pa-tabs__item--h-1x {
3038
- min-height: 1rem;
3039
- }
3040
-
3041
- .pa-tabs .pa-tabs__item--h-2x {
3042
- min-height: 2rem;
3043
- }
3044
-
3045
- .pa-tabs .pa-tabs__item--h-3x {
3046
- min-height: 3rem;
3047
- }
3048
-
3049
- .pa-tabs .pa-tabs__item--h-4x {
3050
- min-height: 4rem;
3051
- }
3052
-
3053
- .pa-tabs .pa-tabs__item--h-5x {
3054
- min-height: 5rem;
3055
- }
3056
-
3057
- .pa-tabs .pa-tabs__item--h-6x {
3058
- min-height: 6rem;
3059
- }
3060
-
3061
- .pa-tabs .pa-tabs__item--h-7x {
3062
- min-height: 7rem;
3063
- }
3064
-
3065
- .pa-tabs .pa-tabs__item--h-8x {
3066
- min-height: 8rem;
3067
- }
3068
-
3069
- .pa-tabs .pa-tabs__item--h-9x {
3070
- min-height: 9rem;
3071
- }
3072
-
3073
- .pa-tabs .pa-tabs__item--h-10x {
3074
- min-height: 10rem;
3075
- }
3076
-
3077
3049
  /* ========================================
3078
3050
  Statistics Components
3079
3051
  Stat displays with icons, hero variant, and square variant
@@ -3149,7 +3121,7 @@ a.pa-card p {
3149
3121
  font-size: 3.2rem;
3150
3122
  font-weight: 700;
3151
3123
  color: var(--pa-text-primary);
3152
- line-height: 1;
3124
+ line-height: 1.1;
3153
3125
  margin-bottom: 0.8rem;
3154
3126
  }
3155
3127
 
@@ -3193,7 +3165,7 @@ a.pa-card p {
3193
3165
  .pa-stat--square .pa-stat__number {
3194
3166
  font-size: clamp(4.8rem, 8vw, 7.2rem);
3195
3167
  font-weight: 700;
3196
- line-height: 1;
3168
+ line-height: 1.1;
3197
3169
  color: inherit;
3198
3170
  z-index: 2px;
3199
3171
  position: relative;
@@ -3206,7 +3178,7 @@ a.pa-card p {
3206
3178
  .pa-stat--square .pa-stat__symbol {
3207
3179
  font-size: clamp(6.4rem, 10vw, 9.6rem);
3208
3180
  font-weight: 700;
3209
- line-height: 1;
3181
+ line-height: 1.1;
3210
3182
  opacity: 0.12;
3211
3183
  color: inherit;
3212
3184
  position: absolute;
@@ -3427,7 +3399,7 @@ a.pa-card p {
3427
3399
  display: flex;
3428
3400
  align-items: center;
3429
3401
  gap: 1.2rem;
3430
- padding: 1.2rem 1.6rem;
3402
+ padding: 1.2rem 1rem;
3431
3403
  border-bottom: 1px solid var(--pa-border-color);
3432
3404
  }
3433
3405
 
@@ -3578,64 +3550,6 @@ a.pa-card p {
3578
3550
  border-color: var(--pa-btn-dark-bg);
3579
3551
  }
3580
3552
 
3581
- .pa-badge--w-1x {
3582
- min-width: 1.6rem;
3583
- max-width: 1.6rem;
3584
- }
3585
-
3586
- .pa-badge--w-2x {
3587
- min-width: 3.2rem;
3588
- max-width: 3.2rem;
3589
- }
3590
-
3591
- .pa-badge--w-3x {
3592
- min-width: 4.8rem;
3593
- max-width: 4.8rem;
3594
- }
3595
-
3596
- .pa-badge--w-4x {
3597
- min-width: 6.4rem;
3598
- max-width: 6.4rem;
3599
- }
3600
-
3601
- .pa-badge--w-5x {
3602
- min-width: 8rem;
3603
- max-width: 8rem;
3604
- }
3605
-
3606
- .pa-badge--w-6x {
3607
- min-width: 9.6rem;
3608
- max-width: 9.6rem;
3609
- }
3610
-
3611
- .pa-badge--w-7x {
3612
- min-width: 11.2rem;
3613
- max-width: 11.2rem;
3614
- }
3615
-
3616
- .pa-badge--w-8x {
3617
- min-width: 12.8rem;
3618
- max-width: 12.8rem;
3619
- }
3620
-
3621
- .pa-badge--w-9x {
3622
- min-width: 14.4rem;
3623
- max-width: 14.4rem;
3624
- }
3625
-
3626
- .pa-badge--w-10x {
3627
- min-width: 16rem;
3628
- max-width: 16rem;
3629
- }
3630
-
3631
- .pa-badge[class*="--w-"] {
3632
- display: inline-block;
3633
- overflow: hidden;
3634
- text-overflow: ellipsis;
3635
- white-space: nowrap;
3636
- vertical-align: middle;
3637
- }
3638
-
3639
3553
  .pa-badge--ellipsis-left {
3640
3554
  direction: rtl;
3641
3555
  text-align: left;
@@ -3745,7 +3659,7 @@ a.pa-card p {
3745
3659
  }
3746
3660
 
3747
3661
  .pa-composite-badge--secondary .pa-composite-badge__label {
3748
- background-color: #f8f9fa;
3662
+ background-color: #fafafa;
3749
3663
  color: var(--pa-text-secondary);
3750
3664
  }
3751
3665
 
@@ -4335,27 +4249,23 @@ a.pa-card p {
4335
4249
  }
4336
4250
 
4337
4251
  .pa-btn--xs {
4338
- padding: 0.4rem 0.8rem;
4252
+ padding: 0.6rem 0.8rem;
4339
4253
  font-size: 1.2rem;
4340
- min-height: 2.8rem;
4341
4254
  }
4342
4255
 
4343
4256
  .pa-btn--sm {
4344
- padding: 0.6rem 1rem;
4257
+ padding: 0.8rem 1rem;
4345
4258
  font-size: 1.4rem;
4346
- min-height: 3.2rem;
4347
4259
  }
4348
4260
 
4349
4261
  .pa-btn--lg {
4350
- padding: 1rem 1.4rem;
4262
+ padding: 0.8rem 1.4rem;
4351
4263
  font-size: 1.6rem;
4352
- min-height: 4rem;
4353
4264
  }
4354
4265
 
4355
4266
  .pa-btn--xl {
4356
- padding: 1.2rem 1.6rem;
4267
+ padding: 0.8rem 1.6rem;
4357
4268
  font-size: 1.8rem;
4358
- min-height: 4.4rem;
4359
4269
  }
4360
4270
 
4361
4271
  .pa-btn--success {
@@ -4604,46 +4514,6 @@ a.pa-card p {
4604
4514
  margin: 0;
4605
4515
  }
4606
4516
 
4607
- .pa-btn--w-1x {
4608
- min-width: 1.6rem;
4609
- }
4610
-
4611
- .pa-btn--w-2x {
4612
- min-width: 3.2rem;
4613
- }
4614
-
4615
- .pa-btn--w-3x {
4616
- min-width: 4.8rem;
4617
- }
4618
-
4619
- .pa-btn--w-4x {
4620
- min-width: 6.4rem;
4621
- }
4622
-
4623
- .pa-btn--w-5x {
4624
- min-width: 8rem;
4625
- }
4626
-
4627
- .pa-btn--w-6x {
4628
- min-width: 9.6rem;
4629
- }
4630
-
4631
- .pa-btn--w-7x {
4632
- min-width: 11.2rem;
4633
- }
4634
-
4635
- .pa-btn--w-8x {
4636
- min-width: 12.8rem;
4637
- }
4638
-
4639
- .pa-btn--w-9x {
4640
- min-width: 14.4rem;
4641
- }
4642
-
4643
- .pa-btn--w-10x {
4644
- min-width: 16rem;
4645
- }
4646
-
4647
4517
  .pa-btn--align-left {
4648
4518
  justify-content: flex-start;
4649
4519
  }
@@ -4678,19 +4548,11 @@ a.pa-card p {
4678
4548
 
4679
4549
  .pa-btn-group {
4680
4550
  display: inline-flex;
4681
- gap: 0.32rem;
4551
+ gap: 0.3rem;
4682
4552
  flex-wrap: wrap;
4683
4553
  align-items: center;
4684
4554
  }
4685
4555
 
4686
- .pa-btn-group--compact {
4687
- gap: 0.16rem;
4688
- }
4689
-
4690
- .pa-btn-group--loose {
4691
- gap: 0.8rem;
4692
- }
4693
-
4694
4556
  .pa-btn-group--vertical {
4695
4557
  flex-direction: column;
4696
4558
  align-items: flex-start;
@@ -5381,7 +5243,7 @@ a.pa-card p {
5381
5243
  align-items: center;
5382
5244
  justify-content: space-between;
5383
5245
  padding: 0.8rem 0.3rem 0.8rem 0.8rem;
5384
- border-bottom: 1px solid #e1e5e9;
5246
+ border-bottom: 1px solid #e8e8e8;
5385
5247
  background-color: var(--pa-card-header-bg);
5386
5248
  border-radius: 4px 4px 0 0;
5387
5249
  }
@@ -5508,7 +5370,7 @@ a.pa-card p {
5508
5370
  ======================================== */
5509
5371
  .pa-alert {
5510
5372
  position: relative;
5511
- padding: 1.2rem 1.6rem;
5373
+ padding: 1.2rem 1rem;
5512
5374
  margin-bottom: 1.6rem;
5513
5375
  border: 1px solid transparent;
5514
5376
  border-radius: 4px;
@@ -5610,12 +5472,12 @@ a.pa-card p {
5610
5472
  }
5611
5473
 
5612
5474
  .pa-alert--sm {
5613
- padding: 1.2rem 1.6rem;
5475
+ padding: 1.2rem 1rem;
5614
5476
  font-size: 1.4rem;
5615
5477
  }
5616
5478
 
5617
5479
  .pa-alert--lg {
5618
- padding: 1.2rem 1.6rem;
5480
+ padding: 1.2rem 1rem;
5619
5481
  font-size: 1.6rem;
5620
5482
  }
5621
5483
 
@@ -5656,7 +5518,7 @@ a.pa-card p {
5656
5518
  top: 0;
5657
5519
  right: 0;
5658
5520
  z-index: 2px;
5659
- padding: 1.2rem 1.6rem;
5521
+ padding: 1.2rem 1rem;
5660
5522
  background: none;
5661
5523
  border: none;
5662
5524
  font-size: 2rem;
@@ -5705,6 +5567,131 @@ a.pa-card p {
5705
5567
  border-top: 1px solid rgba(0, 0, 0, 0.1);
5706
5568
  }
5707
5569
 
5570
+ /* ========================================
5571
+ Callout Components
5572
+ Documentation-style callouts with left border accent
5573
+ For tips, notes, warnings in content areas
5574
+ ======================================== */
5575
+ .pa-callout {
5576
+ position: relative;
5577
+ padding: 1.2rem 1rem;
5578
+ margin-bottom: 1.6rem;
5579
+ border-left: 0.4rem solid var(--pa-border-color);
5580
+ border-radius: 4px;
5581
+ font-size: 1.4rem;
5582
+ background-color: var(--pa-card-bg);
5583
+ }
5584
+
5585
+ .pa-card__body .pa-callout:first-child {
5586
+ margin-top: 0;
5587
+ }
5588
+
5589
+ .pa-card__body .pa-callout:last-child {
5590
+ margin-bottom: 0;
5591
+ }
5592
+
5593
+ .pa-callout--primary {
5594
+ border-left-color: var(--pa-accent);
5595
+ background-color: rgba(85, 85, 85, 0.08);
5596
+ }
5597
+
5598
+ .pa-callout--secondary {
5599
+ border-left-color: var(--pa-text-secondary);
5600
+ background-color: color-mix(in srgb, var(--pa-text-secondary) 5%, transparent);
5601
+ }
5602
+
5603
+ .pa-callout--success {
5604
+ border-left-color: var(--pa-success-bg);
5605
+ background-color: var(--pa-success-bg-subtle);
5606
+ }
5607
+
5608
+ .pa-callout--danger {
5609
+ border-left-color: var(--pa-danger-bg);
5610
+ background-color: var(--pa-danger-bg-subtle);
5611
+ }
5612
+
5613
+ .pa-callout--warning {
5614
+ border-left-color: var(--pa-warning-bg);
5615
+ background-color: var(--pa-warning-bg-subtle);
5616
+ }
5617
+
5618
+ .pa-callout--info {
5619
+ border-left-color: var(--pa-info-bg);
5620
+ background-color: var(--pa-info-bg-subtle);
5621
+ }
5622
+
5623
+ .pa-callout--sm {
5624
+ padding: 0.8rem 1.2rem;
5625
+ font-size: 1.2rem;
5626
+ }
5627
+
5628
+ .pa-callout--lg {
5629
+ padding: 2.4rem 3.2rem;
5630
+ font-size: 1.6rem;
5631
+ }
5632
+
5633
+ .pa-callout__icon {
5634
+ float: left;
5635
+ margin-right: 0.8rem;
5636
+ font-size: 1.8rem;
5637
+ line-height: 1;
5638
+ }
5639
+
5640
+ .pa-callout__heading {
5641
+ margin: 0 0 0.8rem 0;
5642
+ font-size: 1.6rem;
5643
+ font-weight: 600;
5644
+ }
5645
+
5646
+ .pa-callout__content::after {
5647
+ content: "";
5648
+ display: table;
5649
+ clear: both;
5650
+ }
5651
+
5652
+ .pa-callout > *:last-child {
5653
+ margin-bottom: 0;
5654
+ }
5655
+
5656
+ .pa-callout p {
5657
+ margin: 0 0 0.8rem 0;
5658
+ }
5659
+
5660
+ .pa-callout p:last-child {
5661
+ margin-bottom: 0;
5662
+ }
5663
+
5664
+ .pa-callout ul, .pa-callout ol {
5665
+ margin: 0.8rem 0;
5666
+ padding-left: 2.4rem;
5667
+ }
5668
+
5669
+ .pa-callout ul:last-child, .pa-callout ol:last-child {
5670
+ margin-bottom: 0;
5671
+ }
5672
+
5673
+ .pa-callout code {
5674
+ background-color: rgba(0, 0, 0, 0.08);
5675
+ padding: 0.1em 0.3em;
5676
+ border-radius: 2px;
5677
+ font-size: 0.9em;
5678
+ }
5679
+
5680
+ .pa-callout a {
5681
+ color: inherit;
5682
+ text-decoration: underline;
5683
+ font-weight: 500;
5684
+ }
5685
+
5686
+ .pa-callout a:hover {
5687
+ text-decoration: none;
5688
+ }
5689
+
5690
+ .pa-callout h1, .pa-callout h2, .pa-callout h3, .pa-callout h4, .pa-callout h5, .pa-callout h6 {
5691
+ color: inherit;
5692
+ margin-top: 0;
5693
+ }
5694
+
5708
5695
  /* ========================================
5709
5696
  Form Components
5710
5697
  Form groups, inputs, selects, textareas, checkboxes, radio buttons, states
@@ -6713,7 +6700,7 @@ web-daterangepicker {
6713
6700
  /* Input colors */
6714
6701
  --drp-input-background: var(--pa-input-bg);
6715
6702
  --drp-input-color: var(--pa-text-primary);
6716
- --drp-input-border-color: #e8e8e8;
6703
+ --drp-input-border-color: 1px solid #e8e8e8;
6717
6704
  --drp-input-border-color-hover: #555555;
6718
6705
  --drp-input-border-color-focus: #555555;
6719
6706
  --drp-input-placeholder-color: var(--pa-text-secondary);
@@ -6854,7 +6841,7 @@ web-daterangepicker {
6854
6841
  --drp-button-apply-color: #ffffff;
6855
6842
  --drp-button-apply-border: #555555;
6856
6843
  /* Button sizing */
6857
- --drp-button-padding: 0.6rem 1rem;
6844
+ --drp-button-padding: 0.8rem 1rem;
6858
6845
  --drp-button-font-size: 1.4rem;
6859
6846
  --drp-button-border-radius: 4px;
6860
6847
  --drp-button-gap: 0.8rem;
@@ -8289,18 +8276,6 @@ web-daterangepicker {
8289
8276
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
8290
8277
  }
8291
8278
  }
8292
- .text-success {
8293
- color: var(--pa-success-bg);
8294
- }
8295
-
8296
- .text-danger {
8297
- color: var(--pa-danger-bg);
8298
- }
8299
-
8300
- .text-warning {
8301
- color: var(--pa-warning-bg);
8302
- }
8303
-
8304
8279
  /* ========================================
8305
8280
  Comparison Table Component
8306
8281
  Two-column and three-column comparison tables for version control, data changes, and merge operations
@@ -8746,7 +8721,7 @@ code {
8746
8721
 
8747
8722
  .pa-header__profile-name {
8748
8723
  font-weight: 500;
8749
- color: #2c3e50;
8724
+ color: #333333;
8750
8725
  }
8751
8726
 
8752
8727
  .pa-profile-panel {
@@ -8807,6 +8782,10 @@ code {
8807
8782
  position: relative;
8808
8783
  }
8809
8784
 
8785
+ .pa-profile-panel__header--no-avatar .pa-profile-panel__avatar {
8786
+ display: none;
8787
+ }
8788
+
8810
8789
  .pa-profile-panel__avatar {
8811
8790
  width: 6.4rem;
8812
8791
  height: 6.4rem;
@@ -8820,12 +8799,13 @@ code {
8820
8799
 
8821
8800
  .pa-profile-panel__avatar-icon {
8822
8801
  font-size: 3.2rem;
8823
- color: #555555;
8802
+ color: var(--pa-accent);
8824
8803
  }
8825
8804
 
8826
8805
  .pa-profile-panel__info {
8827
8806
  flex: 1;
8828
8807
  min-width: 0;
8808
+ padding-right: 3.2rem;
8829
8809
  }
8830
8810
 
8831
8811
  .pa-profile-panel__name {
@@ -8833,6 +8813,9 @@ code {
8833
8813
  font-size: 1.8rem;
8834
8814
  font-weight: 600;
8835
8815
  color: var(--pa-text-primary);
8816
+ overflow: hidden;
8817
+ text-overflow: ellipsis;
8818
+ white-space: nowrap;
8836
8819
  }
8837
8820
 
8838
8821
  .pa-profile-panel__email {
@@ -8885,7 +8868,7 @@ code {
8885
8868
 
8886
8869
  .pa-profile-panel__body {
8887
8870
  flex: 1;
8888
- padding: 2.4rem;
8871
+ padding: 2.4rem 0;
8889
8872
  display: flex;
8890
8873
  flex-direction: column;
8891
8874
  gap: 3.2rem;
@@ -8906,7 +8889,7 @@ code {
8906
8889
  display: flex;
8907
8890
  align-items: center;
8908
8891
  gap: 1.2rem;
8909
- padding: 1.2rem 1.6rem;
8892
+ padding: 0.8rem 1.6rem;
8910
8893
  color: var(--pa-text-primary);
8911
8894
  text-decoration: none;
8912
8895
  border-radius: 4px;
@@ -8925,9 +8908,12 @@ code {
8925
8908
  }
8926
8909
 
8927
8910
  .pa-profile-panel__nav-icon {
8928
- font-size: 1.8rem;
8911
+ font-size: 1.6rem;
8929
8912
  width: 2.4rem;
8930
- text-align: center;
8913
+ height: 2.4rem;
8914
+ display: flex;
8915
+ align-items: center;
8916
+ justify-content: center;
8931
8917
  }
8932
8918
 
8933
8919
  .pa-profile-panel__actions {
@@ -8935,53 +8921,128 @@ code {
8935
8921
  flex-direction: column;
8936
8922
  gap: 1.2rem;
8937
8923
  margin-top: auto;
8924
+ padding: 0 1.6rem;
8938
8925
  }
8939
8926
 
8940
- @media (max-width: 768px) {
8941
- .pa-profile-panel__content {
8942
- width: 85vw;
8943
- max-width: 40rem;
8944
- }
8945
- .pa-header__profile-name {
8946
- display: none;
8947
- }
8927
+ .pa-profile-panel__footer {
8928
+ flex-shrink: 0;
8929
+ padding: 2.4rem;
8930
+ border-top: 1px solid var(--pa-border-color);
8931
+ background-color: var(--pa-card-bg);
8932
+ display: flex;
8933
+ flex-direction: column;
8934
+ gap: 1.2rem;
8948
8935
  }
8949
- /* Webkit browsers (Chrome, Safari, Edge) */
8950
- *::-webkit-scrollbar {
8951
- width: 10px;
8952
- height: 10px;
8936
+
8937
+ .pa-profile-panel__tabs {
8938
+ padding: 0 1.6rem;
8939
+ border-bottom: 1px solid var(--pa-border-color);
8940
+ background-color: var(--pa-header-bg);
8953
8941
  }
8954
8942
 
8955
- *::-webkit-scrollbar-track {
8956
- background: var(--pa-primary-bg);
8957
- border-radius: 4px;
8943
+ .pa-profile-panel__tabs .pa-tabs {
8944
+ border-bottom: none;
8945
+ margin-bottom: 0;
8958
8946
  }
8959
8947
 
8960
- *::-webkit-scrollbar-thumb {
8961
- background: #e8e8e8;
8948
+ .pa-profile-panel__tabs .pa-tabs__item {
8949
+ color: var(--pa-header-text-secondary);
8950
+ border-bottom-color: transparent;
8951
+ }
8952
+
8953
+ .pa-profile-panel__tabs .pa-tabs__item:hover {
8954
+ color: var(--pa-header-text);
8955
+ background-color: var(--pa-accent-light);
8956
+ }
8957
+
8958
+ .pa-profile-panel__tabs .pa-tabs__item--active {
8959
+ color: var(--pa-header-text);
8960
+ border-bottom-color: var(--pa-accent);
8961
+ }
8962
+
8963
+ .pa-profile-panel__favorites ul {
8964
+ list-style: none;
8965
+ margin: 0;
8966
+ padding: 0;
8967
+ }
8968
+
8969
+ .pa-profile-panel__favorites li {
8970
+ margin-bottom: 0.8rem;
8971
+ }
8972
+
8973
+ .pa-profile-panel__favorite-item {
8974
+ display: flex;
8975
+ align-items: center;
8976
+ gap: 1.2rem;
8977
+ padding: 0.8rem 1.6rem;
8978
+ color: var(--pa-text-primary);
8979
+ text-decoration: none;
8962
8980
  border-radius: 4px;
8963
- border: 1px solid var(--pa-primary-bg);
8981
+ cursor: pointer;
8982
+ transition: background-color 0.1s ease-out, color 0.1s ease-out;
8983
+ font-weight: 500;
8964
8984
  }
8965
8985
 
8966
- *::-webkit-scrollbar-thumb:hover {
8967
- background: #555555;
8968
- border-color: rgba(85, 85, 85, 0.1);
8986
+ .pa-profile-panel__favorite-item:hover {
8987
+ background-color: var(--pa-accent-light);
8988
+ color: var(--pa-accent);
8969
8989
  }
8970
8990
 
8971
- *::-webkit-scrollbar-thumb:active {
8972
- background: rgba(85, 85, 85, 0.1);
8991
+ .pa-profile-panel__favorite-item:focus {
8992
+ outline: 2px solid var(--pa-accent);
8993
+ outline-offset: 2px;
8973
8994
  }
8974
8995
 
8975
- *::-webkit-scrollbar-corner {
8976
- background: var(--pa-primary-bg);
8996
+ .pa-profile-panel__favorite-icon {
8997
+ font-size: 1.6rem;
8998
+ width: 2.4rem;
8999
+ height: 2.4rem;
9000
+ display: flex;
9001
+ align-items: center;
9002
+ justify-content: center;
8977
9003
  }
8978
9004
 
8979
- /* Firefox */
8980
- * {
8981
- scrollbar-width: auto;
8982
- scrollbar-color: var(--pa-border-color) var(--pa-primary-bg);
9005
+ .pa-profile-panel__favorite-label {
9006
+ flex: 1;
9007
+ }
9008
+
9009
+ .pa-profile-panel__favorite-remove {
9010
+ opacity: 0;
9011
+ margin-left: auto;
9012
+ background: none;
9013
+ border: none;
9014
+ padding: 0.4rem;
9015
+ color: var(--pa-text-secondary);
9016
+ cursor: pointer;
9017
+ border-radius: 4px;
9018
+ font-size: 1.4rem;
9019
+ line-height: 1;
9020
+ transition: opacity 0.1s ease-out, color 0.1s ease-out, background-color 0.1s ease-out;
9021
+ }
9022
+
9023
+ .pa-profile-panel__favorite-remove:hover {
9024
+ color: var(--pa-danger);
9025
+ background-color: var(--pa-danger-bg-light);
9026
+ }
9027
+
9028
+ .pa-profile-panel__favorite-item:hover .pa-profile-panel__favorite-remove {
9029
+ opacity: 1;
8983
9030
  }
8984
9031
 
9032
+ .pa-profile-panel__favorites-add {
9033
+ margin-top: auto;
9034
+ padding: 1.2rem 1.6rem 0;
9035
+ }
9036
+
9037
+ @media (max-width: 768px) {
9038
+ .pa-profile-panel__content {
9039
+ width: 85vw;
9040
+ max-width: 40rem;
9041
+ }
9042
+ .pa-header__profile-name {
9043
+ display: none;
9044
+ }
9045
+ }
8985
9046
  /* ========================================
8986
9047
  Modal Components
8987
9048
  Modal windows with overlay, sizes, and themed headers
@@ -10175,7 +10236,7 @@ code {
10175
10236
  flex-shrink: 0;
10176
10237
  font-size: 1.2rem;
10177
10238
  padding: 2px 0.4rem;
10178
- background-color: #e9ecef;
10239
+ background-color: #e8e8e8;
10179
10240
  color: var(--pa-text-secondary);
10180
10241
  border-radius: 2px;
10181
10242
  }
@@ -10197,7 +10258,7 @@ code {
10197
10258
 
10198
10259
  .pa-command-palette__key {
10199
10260
  padding: 2px 0.4rem;
10200
- background-color: #e9ecef;
10261
+ background-color: #e8e8e8;
10201
10262
  border: 1px solid var(--pa-border-color);
10202
10263
  border-radius: 2px;
10203
10264
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
@@ -10334,7 +10395,7 @@ code {
10334
10395
  font-size: 1rem;
10335
10396
  font-weight: 500;
10336
10397
  color: var(--pa-text-secondary);
10337
- background-color: #e9ecef;
10398
+ background-color: #e8e8e8;
10338
10399
  border: 1px solid var(--pa-border-color);
10339
10400
  border-radius: 2px;
10340
10401
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
@@ -10407,7 +10468,7 @@ code {
10407
10468
  font-size: 1rem;
10408
10469
  font-weight: 500;
10409
10470
  color: var(--pa-text-primary);
10410
- background-color: #e9ecef;
10471
+ background-color: #e8e8e8;
10411
10472
  border: 1px solid var(--pa-border-color);
10412
10473
  border-radius: 2px;
10413
10474
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
@@ -11498,6 +11559,170 @@ html.font-size-4xl {
11498
11559
  line-height: 1.8;
11499
11560
  }
11500
11561
 
11562
+ .gap-0 {
11563
+ gap: 0;
11564
+ }
11565
+
11566
+ .gap-xs {
11567
+ gap: 0.4rem;
11568
+ }
11569
+
11570
+ .gap-sm {
11571
+ gap: 0.8rem;
11572
+ }
11573
+
11574
+ .gap-md {
11575
+ gap: 1.2rem;
11576
+ }
11577
+
11578
+ .gap-base {
11579
+ gap: 1.6rem;
11580
+ }
11581
+
11582
+ .gap-lg {
11583
+ gap: 2.4rem;
11584
+ }
11585
+
11586
+ .gap-xl {
11587
+ gap: 3.2rem;
11588
+ }
11589
+
11590
+ .gap-2xl {
11591
+ gap: 4.8rem;
11592
+ }
11593
+
11594
+ .gap-1 {
11595
+ gap: 0.1rem;
11596
+ }
11597
+
11598
+ .gap-2 {
11599
+ gap: 0.2rem;
11600
+ }
11601
+
11602
+ .gap-3 {
11603
+ gap: 0.3rem;
11604
+ }
11605
+
11606
+ .gap-4 {
11607
+ gap: 0.4rem;
11608
+ }
11609
+
11610
+ .gap-5 {
11611
+ gap: 0.5rem;
11612
+ }
11613
+
11614
+ .gap-6 {
11615
+ gap: 0.6rem;
11616
+ }
11617
+
11618
+ .gap-8 {
11619
+ gap: 0.8rem;
11620
+ }
11621
+
11622
+ .gap-10 {
11623
+ gap: 1rem;
11624
+ }
11625
+
11626
+ .gap-12 {
11627
+ gap: 1.2rem;
11628
+ }
11629
+
11630
+ .gap-15 {
11631
+ gap: 1.5rem;
11632
+ }
11633
+
11634
+ .gap-20 {
11635
+ gap: 2rem;
11636
+ }
11637
+
11638
+ .row-gap-0 {
11639
+ row-gap: 0;
11640
+ }
11641
+
11642
+ .row-gap-xs {
11643
+ row-gap: 0.4rem;
11644
+ }
11645
+
11646
+ .row-gap-sm {
11647
+ row-gap: 0.8rem;
11648
+ }
11649
+
11650
+ .row-gap-md {
11651
+ row-gap: 1.2rem;
11652
+ }
11653
+
11654
+ .row-gap-base {
11655
+ row-gap: 1.6rem;
11656
+ }
11657
+
11658
+ .row-gap-lg {
11659
+ row-gap: 2.4rem;
11660
+ }
11661
+
11662
+ .column-gap-0 {
11663
+ column-gap: 0;
11664
+ }
11665
+
11666
+ .column-gap-xs {
11667
+ column-gap: 0.4rem;
11668
+ }
11669
+
11670
+ .column-gap-sm {
11671
+ column-gap: 0.8rem;
11672
+ }
11673
+
11674
+ .column-gap-md {
11675
+ column-gap: 1.2rem;
11676
+ }
11677
+
11678
+ .column-gap-base {
11679
+ column-gap: 1.6rem;
11680
+ }
11681
+
11682
+ .column-gap-lg {
11683
+ column-gap: 2.4rem;
11684
+ }
11685
+
11686
+ .text-2xs {
11687
+ font-size: 1rem;
11688
+ }
11689
+
11690
+ .text-xs {
11691
+ font-size: 1.2rem;
11692
+ }
11693
+
11694
+ .text-sm {
11695
+ font-size: 1.4rem;
11696
+ }
11697
+
11698
+ .text-md {
11699
+ font-size: 1.5rem;
11700
+ }
11701
+
11702
+ .text-base {
11703
+ font-size: 1.6rem;
11704
+ }
11705
+
11706
+ .text-lg {
11707
+ font-size: 1.8rem;
11708
+ }
11709
+
11710
+ .text-xl {
11711
+ font-size: 2rem;
11712
+ }
11713
+
11714
+ .text-2xl {
11715
+ font-size: 2.4rem;
11716
+ }
11717
+
11718
+ .text-3xl {
11719
+ font-size: 2.8rem;
11720
+ }
11721
+
11722
+ .text-4xl {
11723
+ font-size: 3.2rem;
11724
+ }
11725
+
11501
11726
  .component-showcase {
11502
11727
  display: flex;
11503
11728
  flex-wrap: wrap;
@@ -12413,48 +12638,104 @@ html.font-size-4xl {
12413
12638
  white-space: nowrap !important;
12414
12639
  }
12415
12640
 
12416
- .w-25 {
12417
- width: 25% !important;
12641
+ .w-5 {
12642
+ width: 5% !important;
12418
12643
  }
12419
12644
 
12420
- .w-33 {
12421
- width: 33.333333% !important;
12645
+ .w-10 {
12646
+ width: 10% !important;
12422
12647
  }
12423
12648
 
12424
- .w-50 {
12425
- width: 50% !important;
12649
+ .w-15 {
12650
+ width: 15% !important;
12426
12651
  }
12427
12652
 
12428
- .w-66 {
12429
- width: 66.666667% !important;
12653
+ .w-20 {
12654
+ width: 20% !important;
12430
12655
  }
12431
12656
 
12432
- .w-75 {
12433
- width: 75% !important;
12657
+ .w-25 {
12658
+ width: 25% !important;
12434
12659
  }
12435
12660
 
12436
- .w-100 {
12437
- width: 100% !important;
12661
+ .w-30 {
12662
+ width: 30% !important;
12438
12663
  }
12439
12664
 
12440
- .w-auto {
12441
- width: auto !important;
12665
+ .w-35 {
12666
+ width: 35% !important;
12442
12667
  }
12443
12668
 
12444
- .mw-25 {
12445
- min-width: 25% !important;
12669
+ .w-40 {
12670
+ width: 40% !important;
12446
12671
  }
12447
12672
 
12448
- .mw-33 {
12449
- min-width: 33.333333% !important;
12673
+ .w-45 {
12674
+ width: 45% !important;
12450
12675
  }
12451
12676
 
12452
- .mw-50 {
12453
- min-width: 50% !important;
12677
+ .w-50 {
12678
+ width: 50% !important;
12454
12679
  }
12455
12680
 
12456
- .mw-66 {
12457
- min-width: 66.666667% !important;
12681
+ .w-55 {
12682
+ width: 55% !important;
12683
+ }
12684
+
12685
+ .w-60 {
12686
+ width: 60% !important;
12687
+ }
12688
+
12689
+ .w-65 {
12690
+ width: 65% !important;
12691
+ }
12692
+
12693
+ .w-70 {
12694
+ width: 70% !important;
12695
+ }
12696
+
12697
+ .w-75 {
12698
+ width: 75% !important;
12699
+ }
12700
+
12701
+ .w-80 {
12702
+ width: 80% !important;
12703
+ }
12704
+
12705
+ .w-85 {
12706
+ width: 85% !important;
12707
+ }
12708
+
12709
+ .w-90 {
12710
+ width: 90% !important;
12711
+ }
12712
+
12713
+ .w-95 {
12714
+ width: 95% !important;
12715
+ }
12716
+
12717
+ .w-100 {
12718
+ width: 100% !important;
12719
+ }
12720
+
12721
+ .w-auto {
12722
+ width: auto !important;
12723
+ }
12724
+
12725
+ .w-1-3 {
12726
+ width: 33.333333% !important;
12727
+ }
12728
+
12729
+ .w-2-3 {
12730
+ width: 66.666667% !important;
12731
+ }
12732
+
12733
+ .mw-25 {
12734
+ min-width: 25% !important;
12735
+ }
12736
+
12737
+ .mw-50 {
12738
+ min-width: 50% !important;
12458
12739
  }
12459
12740
 
12460
12741
  .mw-75 {
@@ -12469,26 +12750,24 @@ html.font-size-4xl {
12469
12750
  min-width: auto !important;
12470
12751
  }
12471
12752
 
12753
+ .mw-1-3 {
12754
+ min-width: 33.333333% !important;
12755
+ }
12756
+
12757
+ .mw-2-3 {
12758
+ min-width: 66.666667% !important;
12759
+ }
12760
+
12472
12761
  .w-25-fixed {
12473
12762
  min-width: 25% !important;
12474
12763
  width: 25% !important;
12475
12764
  }
12476
12765
 
12477
- .w-33-fixed {
12478
- min-width: 33.333333% !important;
12479
- width: 33.333333% !important;
12480
- }
12481
-
12482
12766
  .w-50-fixed {
12483
12767
  min-width: 50% !important;
12484
12768
  width: 50% !important;
12485
12769
  }
12486
12770
 
12487
- .w-66-fixed {
12488
- min-width: 66.666667% !important;
12489
- width: 66.666667% !important;
12490
- }
12491
-
12492
12771
  .w-75-fixed {
12493
12772
  min-width: 75% !important;
12494
12773
  width: 75% !important;
@@ -12499,6 +12778,16 @@ html.font-size-4xl {
12499
12778
  width: 100% !important;
12500
12779
  }
12501
12780
 
12781
+ .w-1-3-fixed {
12782
+ min-width: 33.333333% !important;
12783
+ width: 33.333333% !important;
12784
+ }
12785
+
12786
+ .w-2-3-fixed {
12787
+ min-width: 66.666667% !important;
12788
+ width: 66.666667% !important;
12789
+ }
12790
+
12502
12791
  .h-25 {
12503
12792
  height: 25% !important;
12504
12793
  }
@@ -12519,6 +12808,670 @@ html.font-size-4xl {
12519
12808
  height: auto !important;
12520
12809
  }
12521
12810
 
12811
+ .wr-1 {
12812
+ width: 1rem !important;
12813
+ }
12814
+
12815
+ .wr-2 {
12816
+ width: 2rem !important;
12817
+ }
12818
+
12819
+ .wr-3 {
12820
+ width: 3rem !important;
12821
+ }
12822
+
12823
+ .wr-4 {
12824
+ width: 4rem !important;
12825
+ }
12826
+
12827
+ .wr-5 {
12828
+ width: 5rem !important;
12829
+ }
12830
+
12831
+ .wr-6 {
12832
+ width: 6rem !important;
12833
+ }
12834
+
12835
+ .wr-7 {
12836
+ width: 7rem !important;
12837
+ }
12838
+
12839
+ .wr-8 {
12840
+ width: 8rem !important;
12841
+ }
12842
+
12843
+ .wr-9 {
12844
+ width: 9rem !important;
12845
+ }
12846
+
12847
+ .wr-10 {
12848
+ width: 10rem !important;
12849
+ }
12850
+
12851
+ .wr-15 {
12852
+ width: 15rem !important;
12853
+ }
12854
+
12855
+ .wr-20 {
12856
+ width: 20rem !important;
12857
+ }
12858
+
12859
+ .wr-25 {
12860
+ width: 25rem !important;
12861
+ }
12862
+
12863
+ .minwr-1 {
12864
+ min-width: 1rem !important;
12865
+ }
12866
+
12867
+ .minwr-2 {
12868
+ min-width: 2rem !important;
12869
+ }
12870
+
12871
+ .minwr-3 {
12872
+ min-width: 3rem !important;
12873
+ }
12874
+
12875
+ .minwr-4 {
12876
+ min-width: 4rem !important;
12877
+ }
12878
+
12879
+ .minwr-5 {
12880
+ min-width: 5rem !important;
12881
+ }
12882
+
12883
+ .minwr-6 {
12884
+ min-width: 6rem !important;
12885
+ }
12886
+
12887
+ .minwr-7 {
12888
+ min-width: 7rem !important;
12889
+ }
12890
+
12891
+ .minwr-8 {
12892
+ min-width: 8rem !important;
12893
+ }
12894
+
12895
+ .minwr-9 {
12896
+ min-width: 9rem !important;
12897
+ }
12898
+
12899
+ .minwr-10 {
12900
+ min-width: 10rem !important;
12901
+ }
12902
+
12903
+ .minwr-15 {
12904
+ min-width: 15rem !important;
12905
+ }
12906
+
12907
+ .minwr-20 {
12908
+ min-width: 20rem !important;
12909
+ }
12910
+
12911
+ .minwr-25 {
12912
+ min-width: 25rem !important;
12913
+ }
12914
+
12915
+ .maxwr-1 {
12916
+ max-width: 1rem !important;
12917
+ }
12918
+
12919
+ .maxwr-2 {
12920
+ max-width: 2rem !important;
12921
+ }
12922
+
12923
+ .maxwr-3 {
12924
+ max-width: 3rem !important;
12925
+ }
12926
+
12927
+ .maxwr-4 {
12928
+ max-width: 4rem !important;
12929
+ }
12930
+
12931
+ .maxwr-5 {
12932
+ max-width: 5rem !important;
12933
+ }
12934
+
12935
+ .maxwr-6 {
12936
+ max-width: 6rem !important;
12937
+ }
12938
+
12939
+ .maxwr-7 {
12940
+ max-width: 7rem !important;
12941
+ }
12942
+
12943
+ .maxwr-8 {
12944
+ max-width: 8rem !important;
12945
+ }
12946
+
12947
+ .maxwr-9 {
12948
+ max-width: 9rem !important;
12949
+ }
12950
+
12951
+ .maxwr-10 {
12952
+ max-width: 10rem !important;
12953
+ }
12954
+
12955
+ .maxwr-15 {
12956
+ max-width: 15rem !important;
12957
+ }
12958
+
12959
+ .maxwr-20 {
12960
+ max-width: 20rem !important;
12961
+ }
12962
+
12963
+ .maxwr-25 {
12964
+ max-width: 25rem !important;
12965
+ }
12966
+
12967
+ .hr-1 {
12968
+ height: 1rem !important;
12969
+ }
12970
+
12971
+ .hr-2 {
12972
+ height: 2rem !important;
12973
+ }
12974
+
12975
+ .hr-3 {
12976
+ height: 3rem !important;
12977
+ }
12978
+
12979
+ .hr-4 {
12980
+ height: 4rem !important;
12981
+ }
12982
+
12983
+ .hr-5 {
12984
+ height: 5rem !important;
12985
+ }
12986
+
12987
+ .hr-6 {
12988
+ height: 6rem !important;
12989
+ }
12990
+
12991
+ .hr-7 {
12992
+ height: 7rem !important;
12993
+ }
12994
+
12995
+ .hr-8 {
12996
+ height: 8rem !important;
12997
+ }
12998
+
12999
+ .hr-9 {
13000
+ height: 9rem !important;
13001
+ }
13002
+
13003
+ .hr-10 {
13004
+ height: 10rem !important;
13005
+ }
13006
+
13007
+ .hr-15 {
13008
+ height: 15rem !important;
13009
+ }
13010
+
13011
+ .hr-20 {
13012
+ height: 20rem !important;
13013
+ }
13014
+
13015
+ .hr-25 {
13016
+ height: 25rem !important;
13017
+ }
13018
+
13019
+ .minhr-1 {
13020
+ min-height: 1rem !important;
13021
+ }
13022
+
13023
+ .minhr-2 {
13024
+ min-height: 2rem !important;
13025
+ }
13026
+
13027
+ .minhr-3 {
13028
+ min-height: 3rem !important;
13029
+ }
13030
+
13031
+ .minhr-4 {
13032
+ min-height: 4rem !important;
13033
+ }
13034
+
13035
+ .minhr-5 {
13036
+ min-height: 5rem !important;
13037
+ }
13038
+
13039
+ .minhr-6 {
13040
+ min-height: 6rem !important;
13041
+ }
13042
+
13043
+ .minhr-7 {
13044
+ min-height: 7rem !important;
13045
+ }
13046
+
13047
+ .minhr-8 {
13048
+ min-height: 8rem !important;
13049
+ }
13050
+
13051
+ .minhr-9 {
13052
+ min-height: 9rem !important;
13053
+ }
13054
+
13055
+ .minhr-10 {
13056
+ min-height: 10rem !important;
13057
+ }
13058
+
13059
+ .minhr-15 {
13060
+ min-height: 15rem !important;
13061
+ }
13062
+
13063
+ .minhr-20 {
13064
+ min-height: 20rem !important;
13065
+ }
13066
+
13067
+ .minhr-25 {
13068
+ min-height: 25rem !important;
13069
+ }
13070
+
13071
+ .maxhr-1 {
13072
+ max-height: 1rem !important;
13073
+ }
13074
+
13075
+ .maxhr-2 {
13076
+ max-height: 2rem !important;
13077
+ }
13078
+
13079
+ .maxhr-3 {
13080
+ max-height: 3rem !important;
13081
+ }
13082
+
13083
+ .maxhr-4 {
13084
+ max-height: 4rem !important;
13085
+ }
13086
+
13087
+ .maxhr-5 {
13088
+ max-height: 5rem !important;
13089
+ }
13090
+
13091
+ .maxhr-6 {
13092
+ max-height: 6rem !important;
13093
+ }
13094
+
13095
+ .maxhr-7 {
13096
+ max-height: 7rem !important;
13097
+ }
13098
+
13099
+ .maxhr-8 {
13100
+ max-height: 8rem !important;
13101
+ }
13102
+
13103
+ .maxhr-9 {
13104
+ max-height: 9rem !important;
13105
+ }
13106
+
13107
+ .maxhr-10 {
13108
+ max-height: 10rem !important;
13109
+ }
13110
+
13111
+ .maxhr-15 {
13112
+ max-height: 15rem !important;
13113
+ }
13114
+
13115
+ .maxhr-20 {
13116
+ max-height: 20rem !important;
13117
+ }
13118
+
13119
+ .maxhr-25 {
13120
+ max-height: 25rem !important;
13121
+ }
13122
+
13123
+ .minw-5 {
13124
+ min-width: 5% !important;
13125
+ }
13126
+
13127
+ .minw-10 {
13128
+ min-width: 10% !important;
13129
+ }
13130
+
13131
+ .minw-15 {
13132
+ min-width: 15% !important;
13133
+ }
13134
+
13135
+ .minw-20 {
13136
+ min-width: 20% !important;
13137
+ }
13138
+
13139
+ .minw-25 {
13140
+ min-width: 25% !important;
13141
+ }
13142
+
13143
+ .minw-30 {
13144
+ min-width: 30% !important;
13145
+ }
13146
+
13147
+ .minw-35 {
13148
+ min-width: 35% !important;
13149
+ }
13150
+
13151
+ .minw-40 {
13152
+ min-width: 40% !important;
13153
+ }
13154
+
13155
+ .minw-45 {
13156
+ min-width: 45% !important;
13157
+ }
13158
+
13159
+ .minw-50 {
13160
+ min-width: 50% !important;
13161
+ }
13162
+
13163
+ .minw-55 {
13164
+ min-width: 55% !important;
13165
+ }
13166
+
13167
+ .minw-60 {
13168
+ min-width: 60% !important;
13169
+ }
13170
+
13171
+ .minw-65 {
13172
+ min-width: 65% !important;
13173
+ }
13174
+
13175
+ .minw-70 {
13176
+ min-width: 70% !important;
13177
+ }
13178
+
13179
+ .minw-75 {
13180
+ min-width: 75% !important;
13181
+ }
13182
+
13183
+ .minw-80 {
13184
+ min-width: 80% !important;
13185
+ }
13186
+
13187
+ .minw-85 {
13188
+ min-width: 85% !important;
13189
+ }
13190
+
13191
+ .minw-90 {
13192
+ min-width: 90% !important;
13193
+ }
13194
+
13195
+ .minw-95 {
13196
+ min-width: 95% !important;
13197
+ }
13198
+
13199
+ .minw-100 {
13200
+ min-width: 100% !important;
13201
+ }
13202
+
13203
+ .minw-1-3 {
13204
+ min-width: 33.333333% !important;
13205
+ }
13206
+
13207
+ .minw-2-3 {
13208
+ min-width: 66.666667% !important;
13209
+ }
13210
+
13211
+ .maxw-5 {
13212
+ max-width: 5% !important;
13213
+ }
13214
+
13215
+ .maxw-10 {
13216
+ max-width: 10% !important;
13217
+ }
13218
+
13219
+ .maxw-15 {
13220
+ max-width: 15% !important;
13221
+ }
13222
+
13223
+ .maxw-20 {
13224
+ max-width: 20% !important;
13225
+ }
13226
+
13227
+ .maxw-25 {
13228
+ max-width: 25% !important;
13229
+ }
13230
+
13231
+ .maxw-30 {
13232
+ max-width: 30% !important;
13233
+ }
13234
+
13235
+ .maxw-35 {
13236
+ max-width: 35% !important;
13237
+ }
13238
+
13239
+ .maxw-40 {
13240
+ max-width: 40% !important;
13241
+ }
13242
+
13243
+ .maxw-45 {
13244
+ max-width: 45% !important;
13245
+ }
13246
+
13247
+ .maxw-50 {
13248
+ max-width: 50% !important;
13249
+ }
13250
+
13251
+ .maxw-55 {
13252
+ max-width: 55% !important;
13253
+ }
13254
+
13255
+ .maxw-60 {
13256
+ max-width: 60% !important;
13257
+ }
13258
+
13259
+ .maxw-65 {
13260
+ max-width: 65% !important;
13261
+ }
13262
+
13263
+ .maxw-70 {
13264
+ max-width: 70% !important;
13265
+ }
13266
+
13267
+ .maxw-75 {
13268
+ max-width: 75% !important;
13269
+ }
13270
+
13271
+ .maxw-80 {
13272
+ max-width: 80% !important;
13273
+ }
13274
+
13275
+ .maxw-85 {
13276
+ max-width: 85% !important;
13277
+ }
13278
+
13279
+ .maxw-90 {
13280
+ max-width: 90% !important;
13281
+ }
13282
+
13283
+ .maxw-95 {
13284
+ max-width: 95% !important;
13285
+ }
13286
+
13287
+ .maxw-100 {
13288
+ max-width: 100% !important;
13289
+ }
13290
+
13291
+ .maxw-1-3 {
13292
+ max-width: 33.333333% !important;
13293
+ }
13294
+
13295
+ .maxw-2-3 {
13296
+ max-width: 66.666667% !important;
13297
+ }
13298
+
13299
+ .minh-5 {
13300
+ min-height: 5% !important;
13301
+ }
13302
+
13303
+ .minh-10 {
13304
+ min-height: 10% !important;
13305
+ }
13306
+
13307
+ .minh-15 {
13308
+ min-height: 15% !important;
13309
+ }
13310
+
13311
+ .minh-20 {
13312
+ min-height: 20% !important;
13313
+ }
13314
+
13315
+ .minh-25 {
13316
+ min-height: 25% !important;
13317
+ }
13318
+
13319
+ .minh-30 {
13320
+ min-height: 30% !important;
13321
+ }
13322
+
13323
+ .minh-35 {
13324
+ min-height: 35% !important;
13325
+ }
13326
+
13327
+ .minh-40 {
13328
+ min-height: 40% !important;
13329
+ }
13330
+
13331
+ .minh-45 {
13332
+ min-height: 45% !important;
13333
+ }
13334
+
13335
+ .minh-50 {
13336
+ min-height: 50% !important;
13337
+ }
13338
+
13339
+ .minh-55 {
13340
+ min-height: 55% !important;
13341
+ }
13342
+
13343
+ .minh-60 {
13344
+ min-height: 60% !important;
13345
+ }
13346
+
13347
+ .minh-65 {
13348
+ min-height: 65% !important;
13349
+ }
13350
+
13351
+ .minh-70 {
13352
+ min-height: 70% !important;
13353
+ }
13354
+
13355
+ .minh-75 {
13356
+ min-height: 75% !important;
13357
+ }
13358
+
13359
+ .minh-80 {
13360
+ min-height: 80% !important;
13361
+ }
13362
+
13363
+ .minh-85 {
13364
+ min-height: 85% !important;
13365
+ }
13366
+
13367
+ .minh-90 {
13368
+ min-height: 90% !important;
13369
+ }
13370
+
13371
+ .minh-95 {
13372
+ min-height: 95% !important;
13373
+ }
13374
+
13375
+ .minh-100 {
13376
+ min-height: 100% !important;
13377
+ }
13378
+
13379
+ .minh-1-3 {
13380
+ min-height: 33.333333% !important;
13381
+ }
13382
+
13383
+ .minh-2-3 {
13384
+ min-height: 66.666667% !important;
13385
+ }
13386
+
13387
+ .maxh-5 {
13388
+ max-height: 5% !important;
13389
+ }
13390
+
13391
+ .maxh-10 {
13392
+ max-height: 10% !important;
13393
+ }
13394
+
13395
+ .maxh-15 {
13396
+ max-height: 15% !important;
13397
+ }
13398
+
13399
+ .maxh-20 {
13400
+ max-height: 20% !important;
13401
+ }
13402
+
13403
+ .maxh-25 {
13404
+ max-height: 25% !important;
13405
+ }
13406
+
13407
+ .maxh-30 {
13408
+ max-height: 30% !important;
13409
+ }
13410
+
13411
+ .maxh-35 {
13412
+ max-height: 35% !important;
13413
+ }
13414
+
13415
+ .maxh-40 {
13416
+ max-height: 40% !important;
13417
+ }
13418
+
13419
+ .maxh-45 {
13420
+ max-height: 45% !important;
13421
+ }
13422
+
13423
+ .maxh-50 {
13424
+ max-height: 50% !important;
13425
+ }
13426
+
13427
+ .maxh-55 {
13428
+ max-height: 55% !important;
13429
+ }
13430
+
13431
+ .maxh-60 {
13432
+ max-height: 60% !important;
13433
+ }
13434
+
13435
+ .maxh-65 {
13436
+ max-height: 65% !important;
13437
+ }
13438
+
13439
+ .maxh-70 {
13440
+ max-height: 70% !important;
13441
+ }
13442
+
13443
+ .maxh-75 {
13444
+ max-height: 75% !important;
13445
+ }
13446
+
13447
+ .maxh-80 {
13448
+ max-height: 80% !important;
13449
+ }
13450
+
13451
+ .maxh-85 {
13452
+ max-height: 85% !important;
13453
+ }
13454
+
13455
+ .maxh-90 {
13456
+ max-height: 90% !important;
13457
+ }
13458
+
13459
+ .maxh-95 {
13460
+ max-height: 95% !important;
13461
+ }
13462
+
13463
+ .maxh-100 {
13464
+ max-height: 100% !important;
13465
+ }
13466
+
13467
+ .maxh-1-3 {
13468
+ max-height: 33.333333% !important;
13469
+ }
13470
+
13471
+ .maxh-2-3 {
13472
+ max-height: 66.666667% !important;
13473
+ }
13474
+
12522
13475
  .position-static {
12523
13476
  position: static !important;
12524
13477
  }
@@ -12579,6 +13532,78 @@ html.font-size-4xl {
12579
13532
  border-left: 0 !important;
12580
13533
  }
12581
13534
 
13535
+ .border-solid {
13536
+ border-style: solid !important;
13537
+ }
13538
+
13539
+ .border-dashed {
13540
+ border-style: dashed !important;
13541
+ }
13542
+
13543
+ .border-dotted {
13544
+ border-style: dotted !important;
13545
+ }
13546
+
13547
+ .border-none {
13548
+ border-style: none !important;
13549
+ }
13550
+
13551
+ .text-primary {
13552
+ color: var(--pa-accent) !important;
13553
+ }
13554
+
13555
+ .text-success {
13556
+ color: var(--pa-success-text) !important;
13557
+ }
13558
+
13559
+ .text-danger {
13560
+ color: var(--pa-danger-text) !important;
13561
+ }
13562
+
13563
+ .text-warning {
13564
+ color: var(--pa-warning-text) !important;
13565
+ }
13566
+
13567
+ .text-info {
13568
+ color: var(--pa-info-text) !important;
13569
+ }
13570
+
13571
+ .text-color-1 {
13572
+ color: var(--pa-color-1) !important;
13573
+ }
13574
+
13575
+ .text-color-2 {
13576
+ color: var(--pa-color-2) !important;
13577
+ }
13578
+
13579
+ .text-color-3 {
13580
+ color: var(--pa-color-3) !important;
13581
+ }
13582
+
13583
+ .text-color-4 {
13584
+ color: var(--pa-color-4) !important;
13585
+ }
13586
+
13587
+ .text-color-5 {
13588
+ color: var(--pa-color-5) !important;
13589
+ }
13590
+
13591
+ .text-color-6 {
13592
+ color: var(--pa-color-6) !important;
13593
+ }
13594
+
13595
+ .text-color-7 {
13596
+ color: var(--pa-color-7) !important;
13597
+ }
13598
+
13599
+ .text-color-8 {
13600
+ color: var(--pa-color-8) !important;
13601
+ }
13602
+
13603
+ .text-color-9 {
13604
+ color: var(--pa-color-9) !important;
13605
+ }
13606
+
12582
13607
  .rounded {
12583
13608
  border-radius: var(--border-radius) !important;
12584
13609
  }
@@ -12640,21 +13665,27 @@ html.font-size-4xl {
12640
13665
  --base-accent-color-active: #888888;
12641
13666
  --base-accent-color-light: rgba(85, 85, 85, 0.05);
12642
13667
  --base-accent-color-light-hover: rgba(85, 85, 85, 0.08);
13668
+ --base-text-color-1: #333333;
13669
+ --base-text-color-2: #777777;
13670
+ --base-text-color-3: #e2e6ea;
13671
+ --base-text-color-4: #d8d8d8;
13672
+ --base-text-color-on-accent: #ffffff;
13673
+ --base-surface-1: #ffffff;
13674
+ --base-surface-2: #fafafa;
13675
+ --base-surface-3: #e8e8e8;
13676
+ --base-surface-inverse: #333333;
13677
+ --base-overlay-bg: rgba(0, 0, 0, 0.4);
13678
+ --base-shadow-color: rgba(0, 0, 0, 0.1);
12643
13679
  --base-primary-bg: #ffffff;
12644
13680
  --base-primary-bg-hover: rgb(242.25, 242.25, 242.25);
12645
- --base-text-color-1: #2c3e50;
12646
- --base-text-color-2: #6c757d;
12647
- --base-text-color-3: rgb(128.4, 139.2, 150);
12648
- --base-text-color-4: rgb(170.6, 177.8, 185);
12649
- --base-text-color-on-accent: #ffffff;
12650
- --base-border-color: #e1e5e9;
12651
- --base-border: 1px solid #e1e5e9;
13681
+ --base-border-color: #e8e8e8;
13682
+ --base-border: 1px solid #e8e8e8;
12652
13683
  --base-input-bg: #ffffff;
12653
- --base-input-color: #495057;
12654
- --base-input-border: 1px solid #ced4da;
12655
- --base-input-border-hover: 1px solid rgb(176.9418604651, 186.5, 196.0581395349);
12656
- --base-input-border-focus: 1px solid #007bff;
12657
- --base-input-placeholder-color: rgb(170.6, 177.8, 185);
13684
+ --base-input-color: #333333;
13685
+ --base-input-border: 1px solid #e8e8e8;
13686
+ --base-input-border-hover: 1px solid #777777;
13687
+ --base-input-border-focus: 1px solid #555555;
13688
+ --base-input-placeholder-color: #d8d8d8;
12658
13689
  --base-input-bg-disabled: rgba(255, 255, 255, 0.5);
12659
13690
  --base-input-size-xs-height: 3.1;
12660
13691
  --base-input-size-sm-height: 3.3;
@@ -12662,11 +13693,48 @@ html.font-size-4xl {
12662
13693
  --base-input-size-lg-height: 3.8;
12663
13694
  --base-input-size-xl-height: 4.1;
12664
13695
  --base-dropdown-bg: #ffffff;
12665
- --base-dropdown-border: 1px solid #e1e5e9;
12666
- --base-dropdown-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
12667
- --base-tooltip-bg: #2c3e50;
13696
+ --base-dropdown-border: #e8e8e8;
13697
+ --base-dropdown-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
13698
+ --base-tooltip-bg: #333333;
12668
13699
  --base-tooltip-text-color: #ffffff;
12669
- --base-font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
13700
+ --base-success-color: #28a745;
13701
+ --base-success-color-hover: #218838;
13702
+ --base-success-bg-light: rgba(40, 167, 69, 0.1);
13703
+ --base-success-bg-subtle: rgba(40, 167, 69, 0.08);
13704
+ --base-success-border: rgba(40, 167, 69, 0.2);
13705
+ --base-success-text: #155724;
13706
+ --base-success-text-light: #d4edda;
13707
+ --base-text-on-success: #ffffff;
13708
+ --base-danger-color: #dc3545;
13709
+ --base-danger-color-hover: #c82333;
13710
+ --base-danger-bg-light: rgba(220, 53, 69, 0.1);
13711
+ --base-danger-bg-subtle: rgba(220, 53, 69, 0.08);
13712
+ --base-danger-border: rgba(220, 53, 69, 0.2);
13713
+ --base-danger-text: #721c24;
13714
+ --base-danger-text-light: #f8d7da;
13715
+ --base-text-on-danger: #ffffff;
13716
+ --base-warning-color: #ffc107;
13717
+ --base-warning-color-hover: #e0a800;
13718
+ --base-warning-bg-light: rgba(255, 193, 7, 0.1);
13719
+ --base-warning-bg-subtle: rgba(255, 193, 7, 0.08);
13720
+ --base-warning-border: rgba(255, 193, 7, 0.2);
13721
+ --base-warning-text: #856404;
13722
+ --base-warning-text-light: #fff3cd;
13723
+ --base-text-on-warning: #212529;
13724
+ --base-info-color: #17a2b8;
13725
+ --base-info-color-hover: #138496;
13726
+ --base-info-bg-light: rgba(23, 162, 184, 0.1);
13727
+ --base-info-bg-subtle: rgba(23, 162, 184, 0.08);
13728
+ --base-info-border: rgba(23, 162, 184, 0.2);
13729
+ --base-info-text: #0c5460;
13730
+ --base-info-text-light: #d1ecf1;
13731
+ --base-text-on-info: #ffffff;
13732
+ --base-hover-overlay: rgba(0, 0, 0, 0.04);
13733
+ --base-active-overlay: rgba(0, 0, 0, 0.08);
13734
+ --base-focus-ring-color: rgba(85, 85, 85, 0.25);
13735
+ --base-focus-ring-width: 3px;
13736
+ --base-font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
13737
+ --base-font-family-mono: SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
12670
13738
  --base-font-size-2xs: 1;
12671
13739
  --base-font-size-xs: 1.2;
12672
13740
  --base-font-size-sm: 1.4;
@@ -12677,14 +13745,15 @@ html.font-size-4xl {
12677
13745
  --base-font-weight-normal: 400;
12678
13746
  --base-font-weight-medium: 500;
12679
13747
  --base-font-weight-semibold: 600;
12680
- --base-line-height-tight: 1.2;
13748
+ --base-font-weight-bold: 700;
13749
+ --base-line-height-tight: 1.25;
12681
13750
  --base-line-height-normal: 1.5;
12682
- --base-line-height-relaxed: 1.8;
13751
+ --base-line-height-relaxed: 1.75;
12683
13752
  --base-border-radius-sm: 0.4;
12684
13753
  --base-border-radius-md: 0.6;
12685
13754
  --base-border-radius-lg: 0.8;
12686
13755
  --pa-primary-bg: #ffffff;
12687
- --pa-bg-secondary: #f8f9fa;
13756
+ --pa-bg-secondary: #fafafa;
12688
13757
  --pa-content-bg: #ffffff;
12689
13758
  --pa-text-primary: #333333;
12690
13759
  --pa-text-secondary: #777777;
@@ -12693,18 +13762,18 @@ html.font-size-4xl {
12693
13762
  --pa-accent-light: rgba(85, 85, 85, 0.05);
12694
13763
  --pa-border-color: #e8e8e8;
12695
13764
  --pa-header-bg: #fafafa;
12696
- --pa-header-border-color: #e1e5e9;
12697
- --pa-header-text: #2c3e50;
12698
- --pa-header-text-secondary: #6c757d;
12699
- --pa-header-profile-name-color: #2c3e50;
13765
+ --pa-header-border-color: #e8e8e8;
13766
+ --pa-header-text: #333333;
13767
+ --pa-header-text-secondary: #777777;
13768
+ --pa-header-profile-name-color: #333333;
12700
13769
  --pa-sidebar-bg: #f8f8f8;
12701
- --pa-sidebar-text: #2c3e50;
12702
- --pa-sidebar-text-secondary: #6c757d;
13770
+ --pa-sidebar-text: #333333;
13771
+ --pa-sidebar-text-secondary: #777777;
12703
13772
  --pa-sidebar-submenu-bg: #e8e8e8;
12704
- --pa-sidebar-submenu-hover-bg: #d0d0d0;
12705
- --pa-sidebar-submenu-active-bg: #c0c0c0;
13773
+ --pa-sidebar-submenu-hover-bg: rgb(219.25, 219.25, 219.25);
13774
+ --pa-sidebar-submenu-active-bg: rgb(206.5, 206.5, 206.5);
12706
13775
  --pa-footer-bg: #fafafa;
12707
- --pa-footer-border-color: #e1e5e9;
13776
+ --pa-footer-border-color: #e8e8e8;
12708
13777
  --pa-btn-primary-bg: #555555;
12709
13778
  --pa-btn-primary-bg-hover: #444444;
12710
13779
  --pa-btn-primary-bg-light: rgba(85, 85, 85, 0.05);
@@ -12731,7 +13800,7 @@ html.font-size-4xl {
12731
13800
  --pa-btn-dark-bg-hover: #23272b;
12732
13801
  --pa-btn-dark-text: #ffffff;
12733
13802
  --pa-success-bg: #28a745;
12734
- --pa-success-bg-hover: #1e7e34;
13803
+ --pa-success-bg-hover: #218838;
12735
13804
  --pa-success-bg-light: rgba(40, 167, 69, 0.1);
12736
13805
  --pa-success-bg-subtle: rgba(40, 167, 69, 0.08);
12737
13806
  --pa-success-border: rgba(40, 167, 69, 0.2);
@@ -12752,7 +13821,7 @@ html.font-size-4xl {
12752
13821
  --pa-warning-text: #856404;
12753
13822
  --pa-warning-text-light: #fff3cd;
12754
13823
  --pa-info-bg: #17a2b8;
12755
- --pa-info-bg-hover: #117a8b;
13824
+ --pa-info-bg-hover: #138496;
12756
13825
  --pa-info-bg-light: rgba(23, 162, 184, 0.1);
12757
13826
  --pa-info-bg-subtle: rgba(23, 162, 184, 0.08);
12758
13827
  --pa-info-border: rgba(23, 162, 184, 0.2);
@@ -12763,12 +13832,12 @@ html.font-size-4xl {
12763
13832
  --pa-card-footer-bg: #fafafa;
12764
13833
  --pa-card-tabs-bg: #f8f8f8;
12765
13834
  --pa-input-bg: #ffffff;
12766
- --pa-input-border: #e8e8e8;
13835
+ --pa-input-border: 1px solid #e8e8e8;
12767
13836
  --pa-input-text: #333333;
12768
13837
  --pa-input-focus-border-color: #555555;
12769
13838
  --pa-select-focus-border-color: #555555;
12770
13839
  --pa-textarea-focus-border-color: #555555;
12771
- --pa-checkbox-border-color: #e1e5e9;
13840
+ --pa-checkbox-border-color: #e8e8e8;
12772
13841
  --pa-checkbox-border-color-hover: #555555;
12773
13842
  --pa-checkbox-border-color-checked: #555555;
12774
13843
  --pa-checkbox-bg: #ffffff;
@@ -12776,15 +13845,15 @@ html.font-size-4xl {
12776
13845
  --pa-checkbox-bg-indeterminate: #555555;
12777
13846
  --pa-checkbox-checkmark-color: white;
12778
13847
  --pa-checkbox-focus-shadow: 0 0 0 2px rgba(85, 85, 85, 0.25);
12779
- --pa-input-group-prepend-bg: #f8f9fa;
12780
- --pa-input-group-prepend-text: #6c757d;
12781
- --pa-input-group-append-bg: #f8f9fa;
12782
- --pa-input-group-append-text: #6c757d;
13848
+ --pa-input-group-prepend-bg: #fafafa;
13849
+ --pa-input-group-prepend-text: #777777;
13850
+ --pa-input-group-append-bg: #fafafa;
13851
+ --pa-input-group-append-text: #777777;
12783
13852
  --pa-table-bg: #ffffff;
12784
13853
  --pa-table-header-bg: #f8f9fa;
12785
13854
  --pa-table-stripe: #fcfcfc;
12786
13855
  --pa-table-hover-bg: #f8f9fa;
12787
- --pa-table-hover-accent-color: #007bff;
13856
+ --pa-table-hover-accent-color: #555555;
12788
13857
  --pa-modal-overlay-bg: rgba(0, 0, 0, 0.4);
12789
13858
  --pa-modal-content-bg: #ffffff;
12790
13859
  --pa-alert-success-bg: rgba(40, 167, 69, 0.08);
@@ -12808,10 +13877,10 @@ html.font-size-4xl {
12808
13877
  --pa-badge-danger-bg: #f8d7da;
12809
13878
  --pa-badge-danger-text: #721c24;
12810
13879
  --pa-composite-badge-icon-bg: #6c757d;
12811
- --pa-composite-badge-label-bg: #e9ecef;
12812
- --pa-composite-badge-label-text: #495057;
12813
- --pa-composite-badge-label-hover-bg: #dee2e6;
12814
- --pa-tooltip-bg: #2c3e50;
13880
+ --pa-composite-badge-label-bg: #e8e8e8;
13881
+ --pa-composite-badge-label-text: #333333;
13882
+ --pa-composite-badge-label-hover-bg: #e8e8e8;
13883
+ --pa-tooltip-bg: #333333;
12815
13884
  --pa-tooltip-text: #ffffff;
12816
13885
  --pa-popover-content-bg: #ffffff;
12817
13886
  --pa-popover-text-light: #ffffff;
@@ -12819,18 +13888,27 @@ html.font-size-4xl {
12819
13888
  --pa-loader-overlay-bg: rgba(255, 255, 255, 0.8);
12820
13889
  --pa-profile-overlay-bg: rgba(0, 0, 0, 0.3);
12821
13890
  --pa-command-palette-backdrop-bg: rgba(0, 0, 0, 0.5);
12822
- --pa-command-palette-item-hover-bg: rgba(0, 123, 255, 0.05);
12823
- --pa-command-palette-item-active-bg: rgba(0, 123, 255, 0.1);
12824
- --pa-command-palette-highlight-bg: rgba(0, 123, 255, 0.2);
12825
- --pa-command-palette-highlight-text: #007bff;
13891
+ --pa-command-palette-item-hover-bg: rgba(85, 85, 85, 0.05);
13892
+ --pa-command-palette-item-active-bg: rgba(85, 85, 85, 0.1);
13893
+ --pa-command-palette-highlight-bg: rgba(85, 85, 85, 0.2);
13894
+ --pa-command-palette-highlight-text: #555555;
12826
13895
  --pa-multiselect-dropdown-bg: #ffffff;
12827
- --pa-multiselect-dropdown-border: #e1e5e9;
12828
- --pa-multiselect-dropdown-text: #2c3e50;
12829
- --pa-multiselect-hint-bg: #f8f9fa;
12830
- --pa-multiselect-hint-border: #e1e5e9;
12831
- --pa-multiselect-option-hover-bg: #f8f9fa;
12832
- --pa-multiselect-pill-bg: rgba(0, 123, 255, 0.05);
12833
- --pa-multiselect-pill-border: #007bff;
13896
+ --pa-multiselect-dropdown-border: #e8e8e8;
13897
+ --pa-multiselect-dropdown-text: #333333;
13898
+ --pa-multiselect-hint-bg: #fafafa;
13899
+ --pa-multiselect-hint-border: #e8e8e8;
13900
+ --pa-multiselect-option-hover-bg: #fafafa;
13901
+ --pa-multiselect-pill-bg: rgba(85, 85, 85, 0.05);
13902
+ --pa-multiselect-pill-border: #555555;
13903
+ --pa-color-1: transparent;
13904
+ --pa-color-2: transparent;
13905
+ --pa-color-3: transparent;
13906
+ --pa-color-4: transparent;
13907
+ --pa-color-5: transparent;
13908
+ --pa-color-6: transparent;
13909
+ --pa-color-7: transparent;
13910
+ --pa-color-8: transparent;
13911
+ --pa-color-9: transparent;
12834
13912
  --drp-dropdown-bg: #ffffff;
12835
13913
  --drp-border-color: #e8e8e8;
12836
13914
  --drp-primary-bg: #fafafa;
@@ -12951,19 +14029,19 @@ html.font-size-4xl {
12951
14029
  --pa-danger-bg-light: rgba(220, 53, 69, 0.2);
12952
14030
  --pa-info-bg: #17a2b8;
12953
14031
  --pa-info-bg-light: rgba(23, 162, 184, 0.2);
12954
- --base-primary-bg: #1a1a1a;
12955
- --base-primary-bg-hover: #2e2e2e;
14032
+ --base-surface-1: #242424;
14033
+ --base-surface-2: #1a1a1a;
14034
+ --base-surface-3: #2e2e2e;
12956
14035
  --base-text-color-1: #e8e8e8;
12957
14036
  --base-text-color-2: #a0a0a0;
14037
+ --base-text-color-3: #707070;
14038
+ --base-text-color-4: #505050;
12958
14039
  --base-accent-color: #e8e8e8;
12959
14040
  --base-accent-color-hover: #ffffff;
12960
14041
  --base-accent-color-active: #ffffff;
12961
14042
  --base-accent-color-light: rgba(232, 232, 232, 0.15);
12962
14043
  --base-accent-color-light-hover: rgba(232, 232, 232, 0.2);
12963
- --base-text-color-3: #707070;
12964
- --base-text-color-4: #505050;
12965
14044
  --base-border-color: #404040;
12966
- --base-border: 1px solid #404040;
12967
14045
  --base-input-bg: #2e2e2e;
12968
14046
  --base-input-color: #e8e8e8;
12969
14047
  --base-input-border: 1px solid #404040;
@@ -12971,7 +14049,7 @@ html.font-size-4xl {
12971
14049
  --base-input-border-focus: 1px solid #e8e8e8;
12972
14050
  --base-input-placeholder-color: #606060;
12973
14051
  --base-dropdown-bg: #242424;
12974
- --base-dropdown-border: 1px solid #404040;
14052
+ --base-dropdown-border: #404040;
12975
14053
  --base-dropdown-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
12976
14054
  --base-tooltip-bg: #404040;
12977
14055
  --base-tooltip-text-color: #e8e8e8;