codex-endpoint-switcher 1.1.0 → 1.2.0

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.
@@ -21,8 +21,14 @@
21
21
  box-sizing: border-box;
22
22
  }
23
23
 
24
+ html,
25
+ body {
26
+ height: 100%;
27
+ }
28
+
24
29
  body {
25
30
  margin: 0;
31
+ overflow: hidden;
26
32
  min-height: 100vh;
27
33
  color: var(--text);
28
34
  font-family: "Segoe UI Variable", "Microsoft YaHei UI", "PingFang SC", sans-serif;
@@ -48,10 +54,28 @@ code {
48
54
  position: relative;
49
55
  max-width: 1440px;
50
56
  margin: 0 auto;
51
- padding: 28px;
57
+ height: 100vh;
58
+ padding: 16px;
59
+ overflow: hidden;
60
+ }
61
+
62
+ .app-shell {
63
+ height: 100%;
64
+ display: grid;
65
+ grid-template-rows: auto minmax(0, 1fr);
66
+ gap: 16px;
52
67
  }
53
68
 
54
- .hero-card,
69
+ .mobile-section-nav {
70
+ display: none;
71
+ }
72
+
73
+ .app-shell[hidden],
74
+ .auth-gate[hidden] {
75
+ display: none;
76
+ }
77
+
78
+ .workspace-bar,
55
79
  .panel {
56
80
  backdrop-filter: blur(18px);
57
81
  -webkit-backdrop-filter: blur(18px);
@@ -60,15 +84,6 @@ code {
60
84
  box-shadow: var(--shadow);
61
85
  }
62
86
 
63
- .hero-card {
64
- display: grid;
65
- grid-template-columns: 1.6fr 0.9fr;
66
- gap: 20px;
67
- overflow: hidden;
68
- padding: 34px;
69
- border-radius: var(--radius-xl);
70
- }
71
-
72
87
  .eyebrow,
73
88
  .panel-kicker {
74
89
  margin: 0 0 10px;
@@ -78,49 +93,101 @@ code {
78
93
  font-weight: 700;
79
94
  }
80
95
 
81
- .hero-copy h1,
96
+ .workspace-copy h1,
82
97
  .panel-header h2,
83
- .profile-heading h3 {
98
+ .profile-heading h3,
99
+ .modal-header h2 {
84
100
  margin: 0;
85
101
  font-family: "Bahnschrift", "Microsoft YaHei UI", sans-serif;
86
102
  letter-spacing: 0.01em;
87
103
  }
88
104
 
89
- .hero-copy h1 {
90
- font-size: clamp(2rem, 3vw, 3.3rem);
91
- line-height: 1.05;
105
+ .auth-gate {
106
+ height: 100%;
107
+ display: grid;
108
+ place-items: center;
92
109
  }
93
110
 
94
- .hero-text {
95
- max-width: 620px;
96
- margin: 16px 0 0;
97
- color: var(--muted);
98
- font-size: 1rem;
99
- line-height: 1.7;
111
+ .auth-card {
112
+ width: min(560px, 100%);
113
+ min-height: auto;
114
+ padding: 20px;
115
+ border-radius: 36px;
116
+ display: block;
117
+ background:
118
+ radial-gradient(circle at top left, rgba(216, 97, 53, 0.18), transparent 34%),
119
+ radial-gradient(circle at bottom right, rgba(46, 139, 139, 0.16), transparent 32%),
120
+ rgba(255, 249, 243, 0.9);
121
+ }
122
+
123
+ .auth-form-card {
124
+ display: grid;
125
+ align-content: center;
126
+ gap: 14px;
127
+ padding: 14px;
128
+ border-radius: 30px;
129
+ background: rgba(255, 252, 248, 0.82);
130
+ border: 1px solid rgba(47, 36, 30, 0.08);
131
+ }
132
+
133
+ .auth-panel-header {
134
+ margin-bottom: 0;
135
+ }
136
+
137
+ .auth-form {
138
+ margin-top: 0;
139
+ }
140
+
141
+ .auth-form .field-hint,
142
+ .auth-status {
143
+ margin-top: 2px;
144
+ }
145
+
146
+ .workspace-bar {
147
+ display: grid;
148
+ gap: 14px;
149
+ padding: 18px 20px;
150
+ border-radius: var(--radius-xl);
151
+ background:
152
+ linear-gradient(135deg, rgba(255, 252, 248, 0.94), rgba(247, 238, 230, 0.9)),
153
+ var(--panel);
100
154
  }
101
155
 
102
- .hero-actions {
156
+ .workspace-main {
157
+ display: grid;
158
+ grid-template-columns: minmax(0, 1fr) auto;
159
+ gap: 18px;
160
+ align-items: start;
161
+ }
162
+
163
+ .workspace-copy h1 {
164
+ font-size: clamp(1.5rem, 2.2vw, 2.2rem);
165
+ line-height: 1.05;
166
+ }
167
+
168
+ .workspace-title-row {
103
169
  display: flex;
104
- flex-wrap: wrap;
170
+ align-items: center;
171
+ justify-content: space-between;
105
172
  gap: 12px;
106
- margin-top: 24px;
107
173
  }
108
174
 
109
- .hero-side {
110
- position: relative;
111
- min-height: 220px;
112
- border-radius: 28px;
113
- background:
114
- linear-gradient(145deg, rgba(216, 97, 53, 0.18), rgba(46, 139, 139, 0.16)),
115
- rgba(255, 255, 255, 0.42);
116
- border: 1px solid rgba(255, 255, 255, 0.3);
117
- overflow: hidden;
175
+ .workspace-text {
176
+ max-width: 760px;
177
+ margin: 10px 0 0;
178
+ color: var(--muted);
179
+ font-size: 0.94rem;
180
+ line-height: 1.55;
181
+ }
182
+
183
+ .workspace-actions {
184
+ display: flex;
185
+ flex-wrap: wrap;
186
+ justify-content: flex-end;
187
+ gap: 10px;
118
188
  }
119
189
 
120
190
  .hero-badge {
121
- position: absolute;
122
- right: 22px;
123
- bottom: 22px;
124
191
  display: inline-flex;
125
192
  align-items: center;
126
193
  padding: 12px 18px;
@@ -131,55 +198,37 @@ code {
131
198
  font-weight: 700;
132
199
  }
133
200
 
134
- .orb {
135
- position: absolute;
136
- border-radius: 999px;
137
- filter: blur(2px);
138
- animation: drift 9s ease-in-out infinite;
139
- }
140
-
141
- .orb-a {
142
- top: 28px;
143
- left: 36px;
144
- width: 180px;
145
- height: 180px;
146
- background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.92), rgba(216, 97, 53, 0.6));
147
- }
148
-
149
- .orb-b {
150
- right: 32px;
151
- top: 84px;
152
- width: 140px;
153
- height: 140px;
154
- background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(46, 139, 139, 0.65));
155
- animation-delay: -3s;
201
+ .workspace-badge {
202
+ flex: 0 0 auto;
203
+ padding: 10px 14px;
204
+ white-space: nowrap;
156
205
  }
157
206
 
158
207
  .content-grid {
159
208
  display: grid;
160
- grid-template-columns: 1.15fr 0.85fr;
209
+ grid-template-columns: 0.84fr 1.16fr;
210
+ height: 100%;
161
211
  gap: 20px;
162
- margin-top: 22px;
163
- }
164
-
165
- .panel {
166
- padding: 24px;
167
- border-radius: var(--radius-lg);
212
+ min-height: 0;
213
+ overflow: hidden;
168
214
  }
169
215
 
170
- .current-panel,
171
- .profiles-panel,
172
- .footer-panel {
173
- grid-column: 1 / 2;
216
+ .left-column {
217
+ min-height: 0;
218
+ display: grid;
219
+ grid-template-rows: minmax(0, 0.9fr) minmax(0, 1.1fr);
220
+ gap: 20px;
221
+ overflow: hidden;
174
222
  }
175
223
 
176
- .action-panel {
177
- grid-column: 2 / 3;
178
- grid-row: 1 / 3;
224
+ .left-column > .panel {
225
+ align-self: stretch;
179
226
  }
180
227
 
181
- .footer-panel {
182
- grid-column: 1 / 3;
228
+ .panel {
229
+ padding: 18px;
230
+ border-radius: var(--radius-lg);
231
+ min-height: 0;
183
232
  }
184
233
 
185
234
  .panel-header {
@@ -187,7 +236,15 @@ code {
187
236
  justify-content: space-between;
188
237
  gap: 16px;
189
238
  align-items: start;
190
- margin-bottom: 18px;
239
+ margin-bottom: 14px;
240
+ }
241
+
242
+ .panel-header-actions {
243
+ display: flex;
244
+ align-items: center;
245
+ justify-content: flex-end;
246
+ gap: 10px;
247
+ flex-wrap: wrap;
191
248
  }
192
249
 
193
250
  .panel-tag,
@@ -202,14 +259,34 @@ code {
202
259
  font-weight: 700;
203
260
  }
204
261
 
262
+ .mobile-section-button {
263
+ height: 40px;
264
+ padding: 0 14px;
265
+ border: 1px solid rgba(47, 36, 30, 0.1);
266
+ border-radius: 999px;
267
+ background: rgba(255, 255, 255, 0.68);
268
+ color: var(--text);
269
+ cursor: pointer;
270
+ transition:
271
+ background 0.18s ease,
272
+ color 0.18s ease,
273
+ box-shadow 0.18s ease;
274
+ }
275
+
276
+ .mobile-section-button.is-active {
277
+ background: linear-gradient(135deg, #d86135, #b1431d);
278
+ color: #fff;
279
+ box-shadow: 0 12px 28px rgba(179, 67, 29, 0.24);
280
+ }
281
+
205
282
  .current-grid {
206
283
  display: grid;
207
- grid-template-columns: repeat(2, minmax(0, 1fr));
208
- gap: 14px;
284
+ grid-template-columns: repeat(4, minmax(0, 1fr));
285
+ gap: 8px;
209
286
  }
210
287
 
211
288
  .metric-card {
212
- padding: 18px;
289
+ padding: 14px;
213
290
  border-radius: var(--radius-md);
214
291
  background: var(--panel-strong);
215
292
  border: 1px solid rgba(47, 36, 30, 0.08);
@@ -222,8 +299,29 @@ code {
222
299
  word-break: break-all;
223
300
  }
224
301
 
302
+ .current-panel .panel-header {
303
+ margin-bottom: 8px;
304
+ }
305
+
306
+ .current-panel .metric-card {
307
+ padding: 6px 9px;
308
+ }
309
+
310
+ .current-panel .metric-card strong {
311
+ margin-top: 3px;
312
+ font-size: 0.9rem;
313
+ }
314
+
315
+ .current-panel .metric-label {
316
+ font-size: 0.78rem;
317
+ }
318
+
319
+ .current-panel .secondary-button {
320
+ height: 32px;
321
+ }
322
+
225
323
  .metric-card-wide {
226
- grid-column: span 2;
324
+ grid-column: 1 / -1;
227
325
  }
228
326
 
229
327
  .metric-label {
@@ -233,19 +331,31 @@ code {
233
331
 
234
332
  .stack-form {
235
333
  display: grid;
236
- gap: 14px;
237
- padding: 16px;
334
+ gap: 12px;
335
+ padding: 14px;
238
336
  border-radius: var(--radius-md);
239
337
  background: rgba(255, 255, 255, 0.45);
240
338
  border: 1px solid rgba(47, 36, 30, 0.08);
241
339
  }
242
340
 
243
341
  .stack-form + .stack-form {
244
- margin-top: 16px;
342
+ margin-top: 12px;
245
343
  }
246
344
 
247
- .stack-form-alt {
248
- background: rgba(251, 246, 240, 0.7);
345
+ #authForm {
346
+ grid-template-columns: 1fr;
347
+ }
348
+
349
+ #endpointForm {
350
+ grid-template-columns: repeat(2, minmax(0, 1fr));
351
+ }
352
+
353
+ #authForm .field-hint,
354
+ #authForm .action-row,
355
+ #endpointForm .field:nth-of-type(3),
356
+ #endpointForm .field-hint,
357
+ #endpointForm .action-row {
358
+ grid-column: 1 / -1;
249
359
  }
250
360
 
251
361
  .field {
@@ -308,37 +418,86 @@ input[readonly] {
308
418
  gap: 10px;
309
419
  }
310
420
 
311
- .sync-status-grid {
421
+ .account-primary-grid {
312
422
  display: grid;
313
423
  grid-template-columns: repeat(2, minmax(0, 1fr));
314
424
  gap: 10px;
315
425
  }
316
426
 
317
- .sync-status-card {
318
- padding: 14px;
319
- border-radius: 14px;
427
+ .account-primary-card,
428
+ .account-inline-card {
429
+ padding: 12px;
430
+ border-radius: 16px;
320
431
  background: rgba(255, 255, 255, 0.72);
321
432
  border: 1px solid rgba(47, 36, 30, 0.08);
322
433
  }
323
434
 
324
- .sync-status-card strong {
435
+ .account-primary-card {
436
+ min-height: 82px;
437
+ display: grid;
438
+ align-content: space-between;
439
+ }
440
+
441
+ .account-primary-card strong,
442
+ .account-inline-card strong {
325
443
  display: block;
326
- margin-top: 8px;
327
- word-break: break-all;
444
+ margin-top: 6px;
445
+ line-height: 1.45;
446
+ word-break: break-word;
447
+ }
448
+
449
+ .account-primary-card strong {
450
+ font-size: 1rem;
451
+ }
452
+
453
+ .account-inline-grid {
454
+ display: grid;
455
+ grid-template-columns: 180px minmax(0, 1fr);
456
+ gap: 8px;
457
+ }
458
+
459
+ .account-inline-card {
460
+ padding-top: 10px;
461
+ padding-bottom: 10px;
328
462
  }
329
463
 
330
- .sync-status-card-wide {
331
- grid-column: span 2;
464
+ .account-inline-card strong {
465
+ font-size: 0.9rem;
466
+ }
467
+
468
+ .account-inline-card-wide strong {
469
+ white-space: nowrap;
470
+ overflow: hidden;
471
+ text-overflow: ellipsis;
472
+ }
473
+
474
+ .account-actions-grid {
475
+ display: grid;
476
+ gap: 7px;
477
+ }
478
+
479
+ .account-actions-grid-compact {
480
+ grid-template-columns: repeat(2, minmax(0, 1fr));
481
+ }
482
+
483
+ .account-actions-grid-sync {
484
+ grid-template-columns: repeat(3, minmax(0, 1fr));
485
+ }
486
+
487
+ .account-actions-grid button {
488
+ min-width: 0;
489
+ height: 36px;
490
+ padding: 0 12px;
332
491
  }
333
492
 
334
493
  .metric-actions {
335
- margin-top: 12px;
494
+ margin-top: 8px;
336
495
  }
337
496
 
338
497
  .primary-button,
339
498
  .secondary-button,
340
499
  .ghost-button {
341
- height: 44px;
500
+ height: 40px;
342
501
  padding: 0 16px;
343
502
  border-radius: 999px;
344
503
  border: 1px solid transparent;
@@ -368,7 +527,7 @@ input[readonly] {
368
527
  }
369
528
 
370
529
  .danger-button {
371
- height: 44px;
530
+ height: 40px;
372
531
  padding: 0 16px;
373
532
  border-radius: 999px;
374
533
  border: 1px solid rgba(168, 52, 44, 0.15);
@@ -399,7 +558,36 @@ input[readonly] {
399
558
 
400
559
  .profiles-list {
401
560
  display: grid;
561
+ flex: 1 1 auto;
402
562
  gap: 14px;
563
+ min-height: 0;
564
+ overflow: auto;
565
+ padding-right: 6px;
566
+ }
567
+
568
+ .profiles-panel {
569
+ display: flex;
570
+ flex-direction: column;
571
+ overflow: hidden;
572
+ }
573
+
574
+ .profiles-list::-webkit-scrollbar,
575
+ .modal-card::-webkit-scrollbar {
576
+ width: 10px;
577
+ }
578
+
579
+ .profiles-list::-webkit-scrollbar-thumb,
580
+ .modal-card::-webkit-scrollbar-thumb {
581
+ background: rgba(47, 36, 30, 0.18);
582
+ border-radius: 999px;
583
+ border: 2px solid transparent;
584
+ background-clip: padding-box;
585
+ }
586
+
587
+ .profiles-list::-webkit-scrollbar-track,
588
+ .modal-card::-webkit-scrollbar-track {
589
+ background: rgba(47, 36, 30, 0.04);
590
+ border-radius: 999px;
403
591
  }
404
592
 
405
593
  .profile-card {
@@ -489,11 +677,11 @@ input[readonly] {
489
677
  }
490
678
 
491
679
  .status-box {
492
- min-height: 70px;
493
- padding: 18px;
680
+ min-height: 46px;
681
+ padding: 10px 14px;
494
682
  border-radius: var(--radius-md);
495
683
  border: 1px solid rgba(47, 36, 30, 0.08);
496
- line-height: 1.7;
684
+ line-height: 1.5;
497
685
  white-space: pre-wrap;
498
686
  }
499
687
 
@@ -512,39 +700,302 @@ input[readonly] {
512
700
  color: var(--error);
513
701
  }
514
702
 
515
- @keyframes drift {
516
- 0%,
517
- 100% {
518
- transform: translate3d(0, 0, 0) scale(1);
519
- }
520
- 50% {
521
- transform: translate3d(8px, -12px, 0) scale(1.04);
522
- }
703
+ .workspace-status {
704
+ min-height: 0;
705
+ padding: 12px 14px;
706
+ background: rgba(255, 255, 255, 0.72);
707
+ }
708
+
709
+ .account-panel {
710
+ display: grid;
711
+ gap: 7px;
712
+ align-content: start;
713
+ overflow: hidden;
714
+ }
715
+
716
+ .account-hint {
717
+ margin: -2px 0 0;
718
+ font-size: 0.82rem;
719
+ line-height: 1.35;
720
+ }
721
+
722
+ .modal-open {
723
+ overflow: hidden !important;
724
+ }
725
+
726
+ .modal-shell {
727
+ position: fixed;
728
+ inset: 0;
729
+ z-index: 40;
730
+ display: grid;
731
+ place-items: center;
732
+ padding: 24px;
733
+ }
734
+
735
+ .modal-shell[hidden] {
736
+ display: none;
737
+ }
738
+
739
+ .modal-backdrop {
740
+ position: absolute;
741
+ inset: 0;
742
+ background: rgba(47, 36, 30, 0.34);
743
+ backdrop-filter: blur(8px);
744
+ -webkit-backdrop-filter: blur(8px);
745
+ }
746
+
747
+ .modal-card {
748
+ position: relative;
749
+ z-index: 1;
750
+ width: min(720px, calc(100vw - 48px));
751
+ max-height: min(760px, calc(100vh - 48px));
752
+ padding: 22px;
753
+ border-radius: 28px;
754
+ overflow: auto;
755
+ background: rgba(255, 249, 243, 0.96);
756
+ border: 1px solid rgba(49, 40, 34, 0.12);
757
+ box-shadow: 0 36px 90px rgba(47, 36, 30, 0.24);
758
+ }
759
+
760
+ .modal-header {
761
+ display: flex;
762
+ justify-content: space-between;
763
+ gap: 16px;
764
+ align-items: start;
765
+ margin-bottom: 16px;
766
+ }
767
+
768
+ .modal-text {
769
+ margin: 8px 0 0;
770
+ color: var(--muted);
771
+ line-height: 1.6;
772
+ }
773
+
774
+ .icon-button {
775
+ width: 42px;
776
+ height: 42px;
777
+ border: 1px solid rgba(47, 36, 30, 0.12);
778
+ border-radius: 999px;
779
+ background: rgba(255, 255, 255, 0.75);
780
+ color: var(--text);
781
+ cursor: pointer;
782
+ font-size: 1.5rem;
783
+ line-height: 1;
784
+ }
785
+
786
+ .endpoint-form {
787
+ margin-top: 0;
788
+ }
789
+
790
+ #proxyModeHint {
791
+ display: none;
523
792
  }
524
793
 
525
794
  @media (max-width: 1160px) {
526
- .hero-card,
795
+ body {
796
+ overflow: auto;
797
+ }
798
+
799
+ .page-shell {
800
+ height: auto;
801
+ min-height: 100vh;
802
+ overflow: visible;
803
+ }
804
+
805
+ .auth-gate {
806
+ height: auto;
807
+ }
808
+
809
+ .workspace-main,
527
810
  .content-grid {
528
811
  grid-template-columns: 1fr;
529
812
  }
530
813
 
531
- .action-panel,
532
- .footer-panel,
533
- .profiles-panel,
534
- .current-panel {
535
- grid-column: auto;
536
- grid-row: auto;
814
+ .left-column {
815
+ grid-template-rows: auto auto;
816
+ overflow: visible;
817
+ }
818
+
819
+ #proxyModeHint {
820
+ display: block;
537
821
  }
538
822
 
539
- .hero-side {
540
- min-height: 180px;
823
+ .workspace-title-row,
824
+ .workspace-actions,
825
+ .panel-header-actions {
826
+ justify-content: flex-start;
541
827
  }
542
828
 
543
- .sync-status-grid {
829
+ .current-grid,
830
+ .account-inline-grid {
544
831
  grid-template-columns: 1fr;
545
832
  }
546
833
 
547
- .sync-status-card-wide {
548
- grid-column: auto;
834
+ .account-primary-grid {
835
+ grid-template-columns: repeat(2, minmax(0, 1fr));
836
+ }
837
+
838
+ .account-panel,
839
+ .profiles-panel {
840
+ overflow: visible;
841
+ }
842
+
843
+ .modal-shell {
844
+ padding: 16px;
845
+ }
846
+
847
+ .modal-card {
848
+ width: min(100%, 680px);
849
+ max-height: calc(100vh - 32px);
850
+ padding: 18px;
851
+ }
852
+ }
853
+
854
+ @media (max-width: 768px) {
855
+ .page-shell {
856
+ padding: 8px;
857
+ }
858
+
859
+ .app-shell {
860
+ height: auto;
861
+ min-height: 100%;
862
+ gap: 10px;
863
+ }
864
+
865
+ .auth-card {
866
+ width: 100%;
867
+ padding: 10px;
868
+ border-radius: 24px;
869
+ }
870
+
871
+ .auth-form-card,
872
+ .workspace-bar,
873
+ .panel {
874
+ border-radius: 20px;
875
+ padding: 14px;
876
+ }
877
+
878
+ .workspace-title-row {
879
+ flex-direction: column;
880
+ align-items: flex-start;
881
+ }
882
+
883
+ .workspace-text,
884
+ .account-hint {
885
+ font-size: 0.82rem;
886
+ line-height: 1.4;
887
+ }
888
+
889
+ .workspace-actions {
890
+ width: 100%;
891
+ }
892
+
893
+ .workspace-actions button,
894
+ .action-row button,
895
+ .account-actions-grid button,
896
+ .card-actions button {
897
+ flex: 1 1 calc(50% - 6px);
898
+ min-width: 0;
899
+ }
900
+
901
+ .panel-header {
902
+ gap: 12px;
903
+ }
904
+
905
+ .current-panel,
906
+ .account-panel,
907
+ .profiles-panel {
908
+ height: auto;
909
+ }
910
+
911
+ .current-grid,
912
+ .account-primary-grid,
913
+ .account-inline-grid {
914
+ grid-template-columns: 1fr;
915
+ gap: 8px;
916
+ }
917
+
918
+ .account-actions-grid-sync {
919
+ grid-template-columns: 1fr;
920
+ }
921
+
922
+ .account-actions-grid-compact {
923
+ grid-template-columns: repeat(2, minmax(0, 1fr));
924
+ }
925
+
926
+ .account-primary-card,
927
+ .account-inline-card {
928
+ padding: 10px;
929
+ min-height: auto;
930
+ }
931
+
932
+ .account-primary-card strong,
933
+ .account-inline-card strong {
934
+ font-size: 0.92rem;
935
+ line-height: 1.4;
936
+ white-space: normal;
937
+ overflow: visible;
938
+ text-overflow: clip;
939
+ }
940
+
941
+ .profile-card {
942
+ gap: 10px;
943
+ padding: 14px;
944
+ }
945
+
946
+ .profile-topline {
947
+ flex-direction: column;
948
+ }
949
+
950
+ .card-actions {
951
+ justify-content: flex-start;
952
+ width: 100%;
953
+ }
954
+
955
+ .modal-shell {
956
+ padding: 8px;
957
+ }
958
+
959
+ .modal-card {
960
+ width: 100%;
961
+ max-height: calc(100vh - 8px);
962
+ border-radius: 22px;
963
+ padding: 16px;
964
+ }
965
+ }
966
+
967
+ @media (max-height: 920px) and (min-width: 1161px) {
968
+ .page-shell {
969
+ padding: 12px;
970
+ }
971
+
972
+ .auth-card {
973
+ min-height: auto;
974
+ padding: 16px;
975
+ }
976
+
977
+ .workspace-bar {
978
+ padding: 16px 18px;
979
+ }
980
+
981
+ .panel {
982
+ padding: 16px;
983
+ }
984
+
985
+ .workspace-copy h1 {
986
+ font-size: clamp(1.35rem, 1.8vw, 1.9rem);
987
+ }
988
+
989
+ .metric-card {
990
+ padding: 12px;
991
+ }
992
+
993
+ .stack-form {
994
+ gap: 10px;
995
+ padding: 12px;
996
+ }
997
+
998
+ .content-grid {
999
+ gap: 14px;
549
1000
  }
550
1001
  }