@j2-health/design-system 0.1.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.
Files changed (112) hide show
  1. package/README.md +113 -0
  2. package/dist/favicon.png +0 -0
  3. package/dist/index.cjs +3624 -0
  4. package/dist/index.cjs.map +1 -0
  5. package/dist/index.d.ts +43 -0
  6. package/dist/index.js +3606 -0
  7. package/dist/index.js.map +1 -0
  8. package/dist/lib.d.ts +2 -0
  9. package/dist/src/AppConfigProvider.d.ts +4 -0
  10. package/dist/src/appTheme.d.ts +2 -0
  11. package/dist/src/components/alert/Alert.d.ts +11 -0
  12. package/dist/src/components/alert/index.d.ts +1 -0
  13. package/dist/src/components/barchart/BarChart.d.ts +30 -0
  14. package/dist/src/components/barchart/index.d.ts +2 -0
  15. package/dist/src/components/breadcrumb/Breadcrumb.d.ts +14 -0
  16. package/dist/src/components/breadcrumb/index.d.ts +1 -0
  17. package/dist/src/components/bulkActionBar/BulkActionBar.d.ts +38 -0
  18. package/dist/src/components/bulkActionBar/index.d.ts +1 -0
  19. package/dist/src/components/button/Button.d.ts +4 -0
  20. package/dist/src/components/button/index.d.ts +1 -0
  21. package/dist/src/components/card/Card.d.ts +19 -0
  22. package/dist/src/components/card/index.d.ts +1 -0
  23. package/dist/src/components/checkbox/Checkbox.d.ts +7 -0
  24. package/dist/src/components/checkbox/index.d.ts +1 -0
  25. package/dist/src/components/checkboxTree/CheckboxTree.d.ts +27 -0
  26. package/dist/src/components/checkboxTree/TreeNode.d.ts +13 -0
  27. package/dist/src/components/checkboxTree/index.d.ts +1 -0
  28. package/dist/src/components/checkboxTree/utils.d.ts +9 -0
  29. package/dist/src/components/collapse/Collapse.d.ts +9 -0
  30. package/dist/src/components/collapse/index.d.ts +1 -0
  31. package/dist/src/components/drawer/Drawer.d.ts +9 -0
  32. package/dist/src/components/drawer/index.d.ts +1 -0
  33. package/dist/src/components/dropdown/Dropdown.d.ts +17 -0
  34. package/dist/src/components/dropdown/index.d.ts +1 -0
  35. package/dist/src/components/filterform/FilterGroup.d.ts +16 -0
  36. package/dist/src/components/filterform/FilterInput.d.ts +14 -0
  37. package/dist/src/components/filterform/FiltersForm.d.ts +10 -0
  38. package/dist/src/components/filterform/filterHelpers.d.ts +11 -0
  39. package/dist/src/components/filterform/index.d.ts +2 -0
  40. package/dist/src/components/filterform/types.d.ts +52 -0
  41. package/dist/src/components/filterform/useFilterField.d.ts +43 -0
  42. package/dist/src/components/filterform/useFiltersForm.d.ts +59 -0
  43. package/dist/src/components/form/Form.d.ts +7 -0
  44. package/dist/src/components/form/index.d.ts +1 -0
  45. package/dist/src/components/icons/index.d.ts +1 -0
  46. package/dist/src/components/input/AntdInput.d.ts +322 -0
  47. package/dist/src/components/input/AntdSearchInput.d.ts +327 -0
  48. package/dist/src/components/input/Input.d.ts +4 -0
  49. package/dist/src/components/input/index.d.ts +3 -0
  50. package/dist/src/components/inputnumber/InputNumber.d.ts +9 -0
  51. package/dist/src/components/inputnumber/index.d.ts +1 -0
  52. package/dist/src/components/legacyNavMenu/LegacyNavMenu.d.ts +27 -0
  53. package/dist/src/components/legacyNavMenu/UserProfile.d.ts +9 -0
  54. package/dist/src/components/legacyNavMenu/index.d.ts +4 -0
  55. package/dist/src/components/listpopover/ListPopover.d.ts +17 -0
  56. package/dist/src/components/listpopover/index.d.ts +1 -0
  57. package/dist/src/components/menu/Menu.d.ts +7 -0
  58. package/dist/src/components/menu/index.d.ts +2 -0
  59. package/dist/src/components/message/index.d.ts +2 -0
  60. package/dist/src/components/message/useMessage.d.ts +7 -0
  61. package/dist/src/components/modal/Modal.d.ts +6 -0
  62. package/dist/src/components/modal/index.d.ts +2 -0
  63. package/dist/src/components/navMenu/NavMenu.d.ts +14 -0
  64. package/dist/src/components/navMenu/index.d.ts +1 -0
  65. package/dist/src/components/notification/index.d.ts +2 -0
  66. package/dist/src/components/notification/useNotification.d.ts +10 -0
  67. package/dist/src/components/notificationModal/NotificationModal.d.ts +11 -0
  68. package/dist/src/components/notificationModal/index.d.ts +2 -0
  69. package/dist/src/components/pagination/Pagination.d.ts +18 -0
  70. package/dist/src/components/pagination/index.d.ts +1 -0
  71. package/dist/src/components/popover/Popover.d.ts +10 -0
  72. package/dist/src/components/popover/index.d.ts +1 -0
  73. package/dist/src/components/progress/Progress.d.ts +3 -0
  74. package/dist/src/components/progress/index.d.ts +1 -0
  75. package/dist/src/components/radio/Radio.d.ts +10 -0
  76. package/dist/src/components/radio/index.d.ts +1 -0
  77. package/dist/src/components/rate/Rate.d.ts +3 -0
  78. package/dist/src/components/rate/index.d.ts +1 -0
  79. package/dist/src/components/select/AntdSelect.d.ts +5 -0
  80. package/dist/src/components/select/Select.d.ts +7 -0
  81. package/dist/src/components/select/SummarizedSelect.d.ts +44 -0
  82. package/dist/src/components/select/index.d.ts +4 -0
  83. package/dist/src/components/skeleton/Skeleton.d.ts +11 -0
  84. package/dist/src/components/skeleton/index.d.ts +1 -0
  85. package/dist/src/components/spinner/Spinner.d.ts +6 -0
  86. package/dist/src/components/spinner/index.d.ts +1 -0
  87. package/dist/src/components/steps/Steps.d.ts +10 -0
  88. package/dist/src/components/steps/index.d.ts +2 -0
  89. package/dist/src/components/steps/useSteps.d.ts +17 -0
  90. package/dist/src/components/switch/Switch.d.ts +11 -0
  91. package/dist/src/components/switch/index.d.ts +1 -0
  92. package/dist/src/components/table/Table.d.ts +24 -0
  93. package/dist/src/components/table/index.d.ts +1 -0
  94. package/dist/src/components/tabs/Tabs.d.ts +3 -0
  95. package/dist/src/components/tabs/index.d.ts +1 -0
  96. package/dist/src/components/tag/Tag.d.ts +20 -0
  97. package/dist/src/components/tag/index.d.ts +1 -0
  98. package/dist/src/components/tooltip/Tooltip.d.ts +4 -0
  99. package/dist/src/components/tooltip/index.d.ts +1 -0
  100. package/dist/src/components/vennDiagram/VennDiagram.d.ts +9 -0
  101. package/dist/src/components/vennDiagram/index.d.ts +1 -0
  102. package/dist/src/index.d.ts +11 -0
  103. package/dist/src/vite-env.d.ts +1 -0
  104. package/dist/style.css +1254 -0
  105. package/dist/tailwind.cjs +170 -0
  106. package/dist/tailwind.cjs.map +1 -0
  107. package/dist/tailwind.config.d.ts +305 -0
  108. package/dist/tailwind.js +170 -0
  109. package/dist/tailwind.js.map +1 -0
  110. package/dist/vite.svg +1 -0
  111. package/package.json +125 -0
  112. package/src/stylesheets/index.css +327 -0
package/dist/style.css ADDED
@@ -0,0 +1,1254 @@
1
+ /* Target alerts without description - align icon and text midlines */
2
+ ._alert_1yhxg_2:not(.ant-alert-with-description) {
3
+ display: flex;
4
+ align-items: center;
5
+ padding-bottom: 6px; /* Reduced from default 12px to balance vertical alignment with icon */
6
+ }
7
+
8
+ ._alert_1yhxg_2:not(.ant-alert-with-description) .ant-alert-icon {
9
+ display: flex;
10
+ align-items: center;
11
+ align-self: flex-start;
12
+ margin-top: 2px; /* Fine-tune vertical position to match text midline (derived from sizeXXS / 2) */
13
+ }
14
+
15
+ ._alert_1yhxg_2:not(.ant-alert-with-description)
16
+ .ant-alert-close-icon {
17
+ display: flex;
18
+ align-items: center;
19
+ align-self: flex-start;
20
+ margin-top: 2px; /* Match icon alignment */
21
+ }
22
+
23
+ ._alert_1yhxg_2:not(.ant-alert-with-description) .ant-alert-message {
24
+ line-height: 1.5714285714285714; /* Theme line height token value */
25
+ }
26
+
27
+ /* Align close icon for alerts WITH description */
28
+ ._alert_1yhxg_2.ant-alert-with-description .ant-alert-close-icon {
29
+ align-self: flex-start;
30
+ margin-top: 4px; /* Align with larger icon */
31
+ }
32
+ ._tooltip_1g39l_1 {
33
+ padding: var(--j2-padding-sm);
34
+ border-radius: var(--j2-border-radius-lg);
35
+ box-shadow: 0px 9px 28px 8px #0000000d;
36
+ background-color: var(--j2-color-bg-elevated);
37
+ font-size: var(--j2-font-size);
38
+ font-family: var(--j2-font-family);
39
+ }
40
+ .ant-btn-default {
41
+ &:focus-visible {
42
+ border-color: var(--j2-color-primary-hover);
43
+ }
44
+ }
45
+
46
+ .ant-btn-text {
47
+ &:active {
48
+ background-color: var(--j2-gray-2) !important;
49
+ }
50
+ }
51
+
52
+ .ant-btn-icon {
53
+ display: inline-flex;
54
+ align-items: center;
55
+ }
56
+
57
+ .ant-btn-dashed {
58
+ border: none !important;
59
+ background-color: var(--j2-gray-3);
60
+
61
+ &.ant-btn-color-dangerous {
62
+ background-color: var(--j2-color-error-bg) !important;
63
+ border: 1px solid var(--j2-color-error-border) !important;
64
+ }
65
+
66
+ &:hover,
67
+ &:focus-visible {
68
+ background-color: var(--j2-gray-3) !important;
69
+ color: var(--j2-color-primary-text-hover) !important;
70
+
71
+ &.ant-btn-color-dangerous {
72
+ background-color: var(--j2-color-error-bg-hover) !important;
73
+ color: var(--j2-color-error-hover) !important;
74
+ border: 1px solid var(--j2-color-error-border-hover) !important;
75
+ }
76
+ }
77
+
78
+ &:disabled {
79
+ background-color: var(--j2-gray-3) !important;
80
+ border: 1px solid var(--j2-color-border) !important;
81
+ color: var(--j2-color-text-disabled) !important;
82
+ }
83
+ }
84
+
85
+ .ant-btn-background-ghost {
86
+ &.ant-btn-primary {
87
+ background-color: var(--j2-color-primary);
88
+ border-color: #ffffff;
89
+ color: #ffffff;
90
+
91
+ &:hover,
92
+ &:focus-visible {
93
+ &:not(:disabled) {
94
+ background-color: var(--j2-color-primary-active) !important;
95
+ color: #ffffff !important;
96
+ border-color: #ffffff !important;
97
+ }
98
+ }
99
+ }
100
+
101
+ &:hover,
102
+ &:focus-visible {
103
+ &:not(:disabled) {
104
+ border-color: var(--j2-color-primary-hover) !important;
105
+ background-color: var(--j2-gray-4) !important;
106
+ }
107
+ }
108
+ }
109
+ .ant-card:not(.ant-card-bordered) {
110
+ box-shadow: none;
111
+
112
+ .ant-card-head {
113
+ border-bottom: none;
114
+ }
115
+ }
116
+
117
+ .ant-card-type-inner {
118
+ background-color: var(--j2-color-bg-layout);
119
+ }
120
+
121
+ .j2-card {
122
+ .ant-card-head {
123
+ border-bottom: none;
124
+ min-height: 40px;
125
+ }
126
+
127
+ /* Soften Ant's default hover shadow — the stock lift is too heavy next to
128
+ j2's flatter visual language. Keeps a subtle cue without competing with
129
+ selected-state borders. Also preserve the border on hover: Ant drops it
130
+ to transparent by default, which reads as the card collapsing. */
131
+ &.ant-card-hoverable:hover {
132
+ border-color: var(--j2-color-border);
133
+ box-shadow: var(--j2-box-shadow-tertiary);
134
+ }
135
+
136
+ .ant-tabs .ant-tabs-tab {
137
+ font-size: var(--j2-font-size);
138
+ }
139
+
140
+ &.ant-card-type-inner {
141
+ &.inner-basic {
142
+ background-color: white;
143
+ > .ant-card-head {
144
+ /* restore border */
145
+ border-bottom: 1px solid var(--j2-color-border-secondary);
146
+ /* restore justify-content */
147
+ justify-content: center;
148
+ }
149
+ }
150
+ }
151
+ }
152
+
153
+ .j2-card-default {
154
+ .ant-card-head {
155
+ display: flex;
156
+ justify-content: flex-end;
157
+ }
158
+
159
+ .ant-tabs-nav-wrap {
160
+ max-height: 40px;
161
+ }
162
+ }
163
+
164
+ .j2-card-large {
165
+ padding: 0px 32px 32px 32px;
166
+
167
+ .ant-card-head {
168
+ justify-content: flex-end;
169
+ padding: 0;
170
+ }
171
+
172
+ .ant-card-body {
173
+ padding: 16px 0px 0px 0px;
174
+ }
175
+
176
+ .ant-card-head-wrapper {
177
+ min-height: 56px;
178
+ align-items: flex-end;
179
+ }
180
+ }
181
+
182
+ .j2-card-compact {
183
+ .ant-card-body {
184
+ padding: 8px 12px;
185
+ }
186
+ }
187
+
188
+ .j2-card-small {
189
+ .ant-card-head {
190
+ min-height: 38px;
191
+
192
+ .ant-card-head-wrapper {
193
+ .ant-card-head-title {
194
+ padding-top: 8px;
195
+ padding-bottom: 8px;
196
+ }
197
+ }
198
+ }
199
+ }
200
+ ._default_yukjt_1 .ant-collapse-header-text,
201
+ ._warning_yukjt_2 .ant-collapse-header-text,
202
+ ._error_yukjt_3 .ant-collapse-header-text {
203
+ display: flex;
204
+ align-items: center;
205
+ gap: var(--j2-size-xs);
206
+ }
207
+
208
+ /* Warning state */
209
+ ._warning_yukjt_2.ant-collapse {
210
+ border-color: var(--j2-color-warning-border);
211
+ background-color: var(--j2-color-warning-bg);
212
+ }
213
+
214
+ ._warning_yukjt_2 .ant-collapse-item {
215
+ border-bottom-color: var(--j2-color-warning-border) !important;
216
+ }
217
+
218
+ ._warning_yukjt_2 .ant-collapse-content {
219
+ border-top-color: var(--j2-color-warning-border) !important;
220
+ }
221
+
222
+ ._warning_yukjt_2 .ant-collapse-header {
223
+ color: var(--j2-color-text) !important;
224
+ }
225
+
226
+ /* Error state */
227
+ ._error_yukjt_3.ant-collapse {
228
+ border-color: var(--j2-color-error-border);
229
+ background-color: var(--j2-color-error-bg);
230
+ }
231
+
232
+ ._error_yukjt_3 .ant-collapse-item {
233
+ border-bottom-color: var(--j2-color-error-border) !important;
234
+ }
235
+
236
+ ._error_yukjt_3 .ant-collapse-content {
237
+ border-top-color: var(--j2-color-error-border) !important;
238
+ }
239
+
240
+ ._error_yukjt_3 .ant-collapse-header {
241
+ color: var(--j2-color-text) !important;
242
+ }
243
+ .j2-drawer {
244
+ .ant-drawer-header {
245
+ height: 64px;
246
+ }
247
+
248
+ .ant-drawer-body {
249
+ background-color: var(--j2-gray-2);
250
+ }
251
+
252
+ .ant-drawer-title {
253
+ font-size: var(--j2-font-size-heading-4);
254
+ color: var(--j2-color-primary-text);
255
+ }
256
+
257
+ .ant-drawer-footer {
258
+ display: flex;
259
+ justify-content: space-between;
260
+ align-items: center;
261
+ background-color: var(--j2-gray-3);
262
+ height: 72px;
263
+ }
264
+ }
265
+ .ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item {
266
+ color: var(--j2-color-primary-text);
267
+
268
+ &:hover {
269
+ color: var(--j2-color-primary-text-hover);
270
+ }
271
+ }
272
+
273
+ .ant-dropdown .ant-dropdown-menu .ant-dropdown-menu-item-selected {
274
+ &,
275
+ &:hover {
276
+ background-color: var(--j2-color-primary);
277
+ color: white;
278
+ }
279
+ }
280
+
281
+ .ant-dropdown-menu.j2-dropdown-slim-menu .ant-dropdown-menu-item-group-list {
282
+ margin: 0;
283
+ }
284
+ ._j2FilterForm_rdja9_1 {
285
+ ._filterFormTitle_rdja9_2 {
286
+ font-size: var(--j2-font-size-lg);
287
+ line-height: var(--j2-line-height-heading-4);
288
+ }
289
+ ._filterFormConjunction_rdja9_6 {
290
+ color: var(--j2-color-primary-text);
291
+ }
292
+
293
+ ._filterFormFieldsContainer_rdja9_10 {
294
+ background-color: var(--j2-gray-2);
295
+ border-radius: var(--j2-border-radius);
296
+ }
297
+
298
+ ._filterFormGroupContainer_rdja9_15 {
299
+ background-color: #fff;
300
+ border-radius: var(--j2-border-radius);
301
+ }
302
+ }
303
+ .ant-form-item .ant-form-item-label > label {
304
+ align-items: start;
305
+ padding-top: 8px;
306
+
307
+ &::before {
308
+ margin-top: 6px;
309
+ }
310
+ }
311
+ ._j2InputNumber_1jmfn_1.ant-input-number {
312
+ &:hover {
313
+ .ant-input-number-handler-wrap {
314
+ max-width: 100%;
315
+ width: auto;
316
+ }
317
+ }
318
+
319
+ .ant-input-number-handler-wrap {
320
+ max-width: 0;
321
+ transition: max-width 0.2s;
322
+
323
+ .ant-input-number-handler {
324
+ height: 50%;
325
+ padding: 0 12px;
326
+ color: var(--j2-color-primary);
327
+ }
328
+
329
+ .ant-input-number-handler-up {
330
+ align-items: flex-end;
331
+ }
332
+
333
+ .ant-input-number-handler-down {
334
+ border-block-start: none;
335
+ align-items: flex-start;
336
+ }
337
+ }
338
+ }
339
+ ._j2Popover_1egkj_1 {
340
+ .ant-popover-inner {
341
+ padding: var(--j2-padding-lg);
342
+ }
343
+
344
+ &._smallPadding_1egkj_6,
345
+ &._smPadding_1egkj_7 .ant-popover-inner {
346
+ padding: var(--j2-padding-sm);
347
+ }
348
+
349
+ &._xxsPadding_1egkj_11 .ant-popover-inner {
350
+ padding: var(--j2-padding-xxs);
351
+ }
352
+
353
+ &._xsPadding_1egkj_15 .ant-popover-inner {
354
+ padding: var(--j2-padding-xs);
355
+ }
356
+
357
+ &._mdPadding_1egkj_19 .ant-popover-inner {
358
+ padding: var(--j2-padding-md);
359
+ }
360
+
361
+ &._xlPadding_1egkj_23 .ant-popover-inner {
362
+ padding: var(--j2-padding-xl);
363
+ }
364
+
365
+ .ant-popover-title {
366
+ font-size: var(--j2-font-size-heading-4);
367
+ font-weight: var(--j2-font-weight-strong);
368
+ line-height: var(--j2-line-height-heading-4);
369
+ }
370
+ }
371
+
372
+ ._popoverHeader_1egkj_34 {
373
+ box-shadow: 0 2px 4px rgb(0 0 0 / 0.05);
374
+ border-radius: var(--j2-border-radius) var(--j2-border-radius) 0 0;
375
+ font-weight: bold;
376
+ }
377
+
378
+ ._scrollable_1egkj_40 {
379
+ .ant-popover-inner {
380
+ padding: 0;
381
+ }
382
+
383
+ .ant-popover-title {
384
+ top: 0;
385
+ z-index: 10;
386
+ position: sticky;
387
+ margin-bottom: 0;
388
+ background: white;
389
+ padding: var(--j2-padding-sm);
390
+ box-shadow: 0 2px 4px rgb(0 0 0 / 0.05);
391
+ font-size: var(--j2-font-size);
392
+ border-radius: var(--j2-border-radius) var(--j2-border-radius) 0 0;
393
+ }
394
+
395
+ .ant-popover-inner-content {
396
+ padding: var(--j2-padding-sm) var(--j2-padding-sm) var(--j2-padding-sm)
397
+ var(--j2-padding-sm);
398
+ overflow: auto;
399
+ max-height: 295px;
400
+ }
401
+ }
402
+ ._categoryName_jejns_1 {
403
+ color: var(--j2-color-text-secondary);
404
+ }
405
+ ._j2Menu_11mko_1 .ant-menu-submenu-selected .ant-menu-submenu-title {
406
+ color: inherit;
407
+ }
408
+
409
+ ._j2Menu_11mko_1 .ant-menu-item-divider {
410
+ margin: 0 12px;
411
+ }
412
+
413
+ ._j2Menu_11mko_1.ant-menu-light.ant-menu-root.ant-menu-inline,
414
+ ._j2Menu_11mko_1.ant-menu-light.ant-menu-root.ant-menu-vertical {
415
+ border-inline-end: none;
416
+ border-right: none;
417
+ }
418
+
419
+ ._j2Menu_11mko_1._compact_11mko_15 {
420
+ .ant-menu-submenu-selected .ant-menu-submenu-title {
421
+ color: #ffffff;
422
+ background-color: var(--j2-color-primary-active);
423
+ }
424
+
425
+ .ant-menu-item-icon {
426
+ margin-left: -2px !important;
427
+ }
428
+ }
429
+
430
+ .ant-menu-item-icon {
431
+ vertical-align: middle !important;
432
+ }
433
+ ._messageIcon_1k9xp_1 {
434
+ margin-right: 0.5rem;
435
+ }
436
+ /* Modal Component Styling */
437
+ .j2-modal .ant-modal-content {
438
+ background: var(--j2-color-bg-elevated);
439
+ border-radius: var(--j2-border-radius-lg);
440
+ padding: 0;
441
+ overflow: hidden;
442
+ }
443
+
444
+ /* Header styling */
445
+ .j2-modal .ant-modal-header {
446
+ background: transparent;
447
+ border-bottom: none;
448
+ padding: var(--j2-padding-md) var(--j2-padding-content-horizontal-lg)
449
+ var(--j2-padding-xs) var(--j2-padding-content-horizontal-lg);
450
+ margin: 0;
451
+ box-shadow:
452
+ 0px 1px 2px 0px rgba(0, 0, 0, 0.03),
453
+ 0px 1px 6px -1px rgba(0, 0, 0, 0.02),
454
+ 0px 2px 4px 0px rgba(0, 0, 0, 0.02);
455
+ }
456
+
457
+ .j2-modal .ant-modal-title {
458
+ font-family: var(--j2-font-family);
459
+ font-weight: var(--j2-font-weight-strong);
460
+ font-size: var(--j2-font-size-lg);
461
+ line-height: var(--j2-line-height-lg);
462
+ color: var(--j2-color-text-heading);
463
+ margin: 0;
464
+ }
465
+
466
+ /* Icon modal specific header styling */
467
+ .j2-modal-with-icon .ant-modal-header {
468
+ padding: var(--j2-padding-md) var(--j2-padding-content-horizontal-lg) 0
469
+ var(--j2-padding-content-horizontal-lg);
470
+ }
471
+
472
+ /* Close button styling */
473
+ .j2-modal .ant-modal-close {
474
+ top: var(--j2-padding);
475
+ right: var(--j2-padding-md);
476
+ width: 22px;
477
+ height: 22px;
478
+ color: var(--j2-color-icon);
479
+ }
480
+
481
+ .j2-modal .ant-modal-close-x {
482
+ display: flex;
483
+ align-items: center;
484
+ justify-content: center;
485
+ width: 100%;
486
+ height: 100%;
487
+ font-size: 16px;
488
+ color: var(--j2-color-icon);
489
+ }
490
+
491
+ /* Body styling */
492
+ .j2-modal .ant-modal-body {
493
+ font-family: var(--j2-font-family);
494
+ font-weight: var(--j2-font-weight-normal);
495
+ font-size: var(--j2-font-size);
496
+ line-height: var(--j2-line-height);
497
+ color: var(--j2-color-text);
498
+ }
499
+
500
+ /* Footer styling */
501
+ .j2-modal .ant-modal-footer {
502
+ background: transparent;
503
+ border-top: none;
504
+ padding: 0 var(--j2-padding-content-horizontal-lg) var(--j2-padding-md)
505
+ var(--j2-padding-content-horizontal-lg);
506
+ margin: 0;
507
+ text-align: right;
508
+ }
509
+
510
+ /* Backdrop/mask styling */
511
+ .j2-modal .ant-modal-mask {
512
+ background: var(--j2-color-bg-mask);
513
+ }
514
+ ._navMenuContainer_1ul3o_1 {
515
+ height: 100vh;
516
+ display: inline-block;
517
+
518
+ &._collapsed_1ul3o_5 {
519
+ width: 80px;
520
+
521
+ ._headerContainer_1ul3o_8 {
522
+ ._logo_1ul3o_9 {
523
+ display: block;
524
+ }
525
+
526
+ .toggle-button {
527
+ display: none;
528
+ }
529
+
530
+ &:hover {
531
+ ._logo_1ul3o_9 {
532
+ display: none;
533
+ }
534
+
535
+ .toggle-button {
536
+ display: block;
537
+ }
538
+ }
539
+ }
540
+ }
541
+ }
542
+ .ant-notification-notice-message {
543
+ font-size: var(--j2-font-size-lg);
544
+ font-weight: var(--j2-font-weight-strong);
545
+ line-height: var(--j2-line-height-lg);
546
+ color: var(--j2-color-text-heading);
547
+ }
548
+
549
+ .ant-notification-notice-description {
550
+ font-size: var(--j2-font-size);
551
+ line-height: var(--j2-line-height);
552
+ color: var(--j2-color-text);
553
+ }
554
+
555
+ ._messageOnly_1pxqk_14 {
556
+ .ant-notification-notice-message {
557
+ font-weight: var(--j2-font-weight-normal);
558
+ }
559
+ .ant-notification-notice-message {
560
+ margin-bottom: 0 !important;
561
+ }
562
+ }
563
+ ._modalTitleWithIcon_5g0kf_1 {
564
+ display: flex;
565
+ gap: var(--j2-padding-sm);
566
+ align-items: flex-start;
567
+ }
568
+
569
+ ._modalIcon_5g0kf_7 {
570
+ flex-shrink: 0;
571
+ width: 24px;
572
+ height: 24px;
573
+ display: flex;
574
+ align-items: center;
575
+ justify-content: center;
576
+ }
577
+
578
+ ._modalTitleContent_5g0kf_16 {
579
+ flex: 1;
580
+ min-width: 0;
581
+ }
582
+
583
+ ._modalTitleText_5g0kf_21 {
584
+ font-family: var(--j2-font-family);
585
+ font-weight: var(--j2-font-weight-strong);
586
+ font-size: var(--j2-font-size-lg);
587
+ line-height: var(--j2-line-height-lg);
588
+ color: var(--j2-color-text-heading);
589
+ margin: 0;
590
+ }
591
+
592
+ ._modalContentWithIcon_5g0kf_30 {
593
+ margin-left: calc(24px + var(--j2-padding-sm));
594
+ }
595
+ .ant-pagination {
596
+ gap: var(--j2-margin-xs);
597
+ }
598
+
599
+ .ant-pagination li:not(.ant-pagination-total-text) {
600
+ margin-inline-end: 0 !important;
601
+ }
602
+
603
+ .ant-pagination-item-active {
604
+ background-color: var(--j2-blue-9) !important;
605
+ }
606
+
607
+ .ant-pagination-item-active a {
608
+ color: white !important;
609
+ }
610
+
611
+ .ant-pagination-prev button,
612
+ .ant-pagination-next button {
613
+ padding: 0;
614
+ display: flex;
615
+ align-items: center;
616
+ justify-content: center;
617
+ }
618
+
619
+ .ant-pagination-prev button:hover,
620
+ .ant-pagination-next button:hover {
621
+ background-color: var(--j2-color-bg-text-hover) !important;
622
+ }
623
+
624
+ .ant-pagination-disabled button,
625
+ .ant-pagination-disabled button:hover {
626
+ cursor: not-allowed;
627
+ background-color: transparent !important;
628
+ pointer-events: none;
629
+ }
630
+
631
+ .ant-pagination-disabled button svg {
632
+ color: var(--j2-color-text-disabled) !important;
633
+ }
634
+
635
+ ._jump-button_bwjnt_41 {
636
+ padding: 0;
637
+ display: flex;
638
+ align-items: center;
639
+ justify-content: center;
640
+ }
641
+
642
+ .ant-pagination-options {
643
+ display: flex !important;
644
+ align-items: center !important;
645
+ gap: var(--j2-margin-xs);
646
+ margin-inline-start: 0 !important;
647
+ }
648
+
649
+ .ant-pagination-total-text {
650
+ color: var(--j2-color-text);
651
+ margin-inline-end: var(--j2-margin-xs) !important;
652
+ }
653
+
654
+ .ant-pagination-options-quick-jumper {
655
+ display: flex !important;
656
+ align-items: center !important;
657
+ }
658
+
659
+ .ant-pagination:not(.ant-pagination-mini) .ant-pagination-options-quick-jumper {
660
+ gap: var(--j2-margin-xs);
661
+ }
662
+
663
+ .ant-pagination-options-quick-jumper input {
664
+ margin: 0px !important;
665
+ }
666
+
667
+ .ant-pagination.ant-pagination-mini .ant-pagination-options-quick-jumper input {
668
+ margin-inline-start: var(--j2-margin-xs) !important;
669
+ }
670
+ .j2-rate.ant-rate {
671
+ color: var(--j2-gold-6);
672
+ }
673
+ .ant-tag .anticon + span {
674
+ margin-inline-start: var(--j2-margin-xxs);
675
+ }
676
+ ._hemisphericSelect_2ivoh_1 {
677
+ .ant-select-selector {
678
+ border-radius: 9999px !important;
679
+ }
680
+
681
+ .ant-select-selection-placeholder {
682
+ color: var(--j2-color-primary) !important;
683
+ }
684
+ }
685
+
686
+ ._summarizedSelect_2ivoh_11 {
687
+ .ant-select-arrow {
688
+ color: var(--j2-color-primary);
689
+ }
690
+
691
+ .ant-select-selection-item {
692
+ background: none !important;
693
+ border: none !important;
694
+ }
695
+ }
696
+
697
+ ._isActive_2ivoh_22 {
698
+ .ant-select-selector {
699
+ background: var(--j2-color-primary) !important;
700
+
701
+ .ant-select-selection-item-content {
702
+ color: white !important;
703
+ }
704
+ }
705
+
706
+ .ant-select-arrow {
707
+ color: white !important;
708
+ }
709
+ }
710
+
711
+ ._menuContainer_2ivoh_36 .ant-select-item-option-selected {
712
+ background: var(--j2-color-primary) !important;
713
+ }
714
+
715
+ ._menuContainer_2ivoh_36
716
+ .ant-select-item-option-selected
717
+ .ant-select-item-option-content {
718
+ color: white;
719
+ }
720
+
721
+ ._menuContainerMultiple_2ivoh_46 .ant-select-item-option-selected {
722
+ background: var(--j2-color-primary-bg-hover) !important;
723
+ }
724
+
725
+ ._menuContainerMultiple_2ivoh_46
726
+ .ant-select-item-option-selected
727
+ .ant-select-item-option-content {
728
+ color: inherit;
729
+ }
730
+
731
+ /*
732
+ * Headlined variant styles
733
+ * Ant Design 5 uses :where() with 0 specificity, so our class selectors override without !important
734
+ */
735
+
736
+ ._headlinedSelect_2ivoh_61.ant-select.ant-select-single {
737
+ font-size: var(--j2-font-size-heading-2);
738
+ height: 40px;
739
+ width: -moz-fit-content !important;
740
+ width: fit-content !important;
741
+ }
742
+
743
+ ._headlinedSelect_2ivoh_61.ant-select .ant-select-selector {
744
+ background: transparent;
745
+ padding-left: 0;
746
+ padding-right: 4px;
747
+ font-size: var(--j2-font-size-heading-2);
748
+ border-bottom: 1px solid transparent;
749
+ border-radius: 0;
750
+ }
751
+
752
+ ._headlinedSelect_2ivoh_61.ant-select .ant-select-arrow {
753
+ height: 16px;
754
+ width: 16px;
755
+ right: 0;
756
+ }
757
+
758
+ ._headlinedSelect_2ivoh_61.ant-select .ant-select-selection-item {
759
+ font-weight: 600;
760
+ line-height: 1.3;
761
+ }
762
+
763
+ /* Hover state - show underline */
764
+ ._headlinedSelect_2ivoh_61.ant-select:hover .ant-select-selector {
765
+ border-bottom-color: var(--j2-color-primary);
766
+ }
767
+
768
+ /* Open/focused state - keep underline and text color */
769
+ ._headlinedSelect_2ivoh_61.ant-select-open .ant-select-selector,
770
+ ._headlinedSelect_2ivoh_61.ant-select-focused .ant-select-selector {
771
+ border-bottom-color: var(--j2-color-primary);
772
+ }
773
+
774
+ ._headlinedSelect_2ivoh_61.ant-select-open .ant-select-selection-item,
775
+ ._headlinedSelect_2ivoh_61.ant-select-focused
776
+ .ant-select-selection-item {
777
+ color: inherit;
778
+ }
779
+
780
+ /* Headline dropdown styles - needs !important to override .menuContainer */
781
+ ._menuContainer_2ivoh_36._headlinedMenuContainer_2ivoh_105
782
+ .ant-select-item-option-selected {
783
+ background: var(--j2-color-primary) !important;
784
+ }
785
+
786
+ ._menuContainer_2ivoh_36._headlinedMenuContainer_2ivoh_105
787
+ .ant-select-item-option-selected
788
+ .ant-select-item-option-content {
789
+ color: white;
790
+ }
791
+
792
+ ._clearAllButton_2ivoh_116 {
793
+ color: var(--j2-color-primary);
794
+ }
795
+
796
+ ._clearAllButton_2ivoh_116:hover {
797
+ background-color: var(--j2-color-primary-bg-hover);
798
+ }
799
+ .j2Steps {
800
+ .ant-steps-item-custom > .ant-steps-icon {
801
+ display: flex;
802
+ align-items: center;
803
+ }
804
+
805
+ .ant-steps-item-custom:has(.vertical-check-icon) > .ant-steps-item-container {
806
+ align-items: flex-start;
807
+ }
808
+
809
+ .check-icon,
810
+ .vertical-check-icon {
811
+ display: flex;
812
+ justify-content: center;
813
+ border-radius: 50%;
814
+ }
815
+
816
+ .check-icon {
817
+ align-items: center !important;
818
+ }
819
+
820
+ .vertical-check-icon {
821
+ align-items: flex-start !important;
822
+ }
823
+
824
+ .check-small,
825
+ .check-default {
826
+ border-radius: 50%;
827
+ }
828
+
829
+ .check-small {
830
+ width: 24px;
831
+ height: 24px;
832
+ background-color: var(--j2-blue-1);
833
+ }
834
+
835
+ .check-default {
836
+ width: 32px;
837
+ height: 32px;
838
+ background-color: var(--j2-blue-1);
839
+ }
840
+
841
+ .check-default svg,
842
+ .check-small svg {
843
+ display: block;
844
+ margin: auto;
845
+ }
846
+
847
+ .ant-steps-item-title::after {
848
+ color: var(--j2-blue-9);
849
+ }
850
+ }
851
+ .j2-switch {
852
+ &.ant-switch {
853
+ min-width: 44px !important;
854
+ width: 44px !important;
855
+ }
856
+
857
+ &.ant-switch-small {
858
+ min-width: 28px !important;
859
+ width: 28px !important;
860
+ }
861
+
862
+ .ant-switch-inner-checked {
863
+ display: flex !important;
864
+ align-items: center !important;
865
+ justify-content: flex-start !important;
866
+ }
867
+
868
+ .ant-switch-inner-unchecked {
869
+ display: flex !important;
870
+ align-items: center !important;
871
+ justify-content: flex-end !important;
872
+ }
873
+
874
+ .ant-switch-inner-checked:has(svg) {
875
+ justify-content: flex-end !important;
876
+ padding-left: 0 !important;
877
+ }
878
+
879
+ .ant-switch-inner-unchecked:has(svg) {
880
+ justify-content: flex-start !important;
881
+ padding-left: 0 !important;
882
+ }
883
+
884
+ .ant-switch-inner-checked svg,
885
+ .ant-switch-inner-unchecked svg {
886
+ display: block !important;
887
+ -o-object-fit: contain !important;
888
+ object-fit: contain !important;
889
+ flex-shrink: 0 !important;
890
+ }
891
+ }
892
+ ._bordered_1vc5s_1 .ant-table-cell:not(.ant-table-cell-fix-left-last) {
893
+ border-left: none !important;
894
+ border-right: none !important;
895
+ }
896
+
897
+ .ant-table-cell {
898
+ vertical-align: middle;
899
+ }
900
+
901
+ .ant-table-bordered .ant-table-row .ant-table-cell {
902
+ border-bottom: 1px solid var(--j2-color-border-secondary) !important;
903
+ }
904
+
905
+ .ant-table-bordered .ant-table-container {
906
+ border-right: 1px solid var(--j2-color-border-secondary);
907
+ border-bottom: 1px solid var(--j2-color-border-secondary) !important;
908
+ border-radius: var(--j2-border-radius);
909
+ overflow: hidden;
910
+
911
+ tr {
912
+ td:last-of-type {
913
+ border-inline-end: none !important;
914
+ }
915
+ }
916
+
917
+ tr:last-of-type.ant-table-row .ant-table-cell {
918
+ border-bottom: none !important;
919
+ }
920
+ }
921
+
922
+ .ant-table-wrapper .ant-table-container
923
+ table
924
+ > thead
925
+ > tr:first-child
926
+ > *:last-child {
927
+ border-start-end-radius: var(--j2-border-radius);
928
+ border-right: none !important;
929
+ }
930
+
931
+ .ant-spin-container.ant-spin-blur th {
932
+ visibility: hidden;
933
+ }
934
+
935
+ .ant-table-thead > tr > th {
936
+ white-space: nowrap;
937
+ color: var(--j2-color-primary) !important;
938
+ }
939
+
940
+ ._alternatingRows_1vc5s_49 .ant-table-tbody > tr:nth-child(even) {
941
+ background-color: #fafafa !important;
942
+ }
943
+
944
+ ._alternatingRows_1vc5s_49
945
+ .ant-table-tbody > tr:nth-child(even) > .ant-table-cell-fix-left,
946
+ ._alternatingRows_1vc5s_49
947
+ .ant-table-tbody > tr:nth-child(even) > .ant-table-cell-fix-right {
948
+ background-color: inherit !important;
949
+ }
950
+
951
+ .ant-table-column-sorters {
952
+ margin-right: 1rem !important;
953
+ }
954
+ /* Main container */
955
+ ._navContainer_1eoor_2 {
956
+ width: 186px;
957
+ height: 100vh;
958
+ background-color: #efefef;
959
+ border-right: 1px solid #e1e1e1;
960
+ display: flex;
961
+ flex-direction: column;
962
+ justify-content: space-between;
963
+ font-family: 'Roboto', sans-serif;
964
+ }
965
+
966
+ /* Logo section */
967
+ ._logoSection_1eoor_14 {
968
+ padding: 24px 0;
969
+ }
970
+
971
+ ._logoContainer_1eoor_18 {
972
+ display: flex;
973
+ justify-content: center;
974
+ align-items: center;
975
+ padding: 0 10px;
976
+ }
977
+
978
+ ._logoLink_1eoor_25 {
979
+ display: flex;
980
+ align-items: center;
981
+ text-decoration: none;
982
+ cursor: pointer;
983
+ }
984
+
985
+ ._logo_1eoor_14 {
986
+ height: var(--logo-size, 64px);
987
+ width: auto; /* Maintains aspect ratio */
988
+ max-width: 100%;
989
+ }
990
+
991
+ /* Responsive sizing */
992
+ @media (max-width: 768px) {
993
+ ._logo_1eoor_14 {
994
+ width: 60px;
995
+ }
996
+ }
997
+
998
+ /* Navigation content */
999
+ ._navContent_1eoor_46 {
1000
+ flex: 1;
1001
+ display: flex;
1002
+ flex-direction: column;
1003
+ overflow-y: auto;
1004
+ overflow-x: hidden;
1005
+ }
1006
+
1007
+ ._navSection_1eoor_54 {
1008
+ border-bottom: 1px solid #e1e1e1;
1009
+ padding: 8px 0;
1010
+ }
1011
+
1012
+ ._sectionHeader_1eoor_59 {
1013
+ padding: 8px 0;
1014
+ }
1015
+
1016
+ ._sectionTitle_1eoor_63 {
1017
+ font-family: 'Roboto', sans-serif;
1018
+ font-size: 12px;
1019
+ font-weight: 400;
1020
+ letter-spacing: 1px;
1021
+ color: rgba(0, 0, 0, 0.87);
1022
+ padding: 0 16px;
1023
+ text-transform: uppercase;
1024
+ }
1025
+
1026
+ ._sectionItems_1eoor_73 {
1027
+ display: flex;
1028
+ flex-direction: column;
1029
+ }
1030
+
1031
+ /* Navigation items */
1032
+ ._navItem_1eoor_79 {
1033
+ display: flex;
1034
+ align-items: center;
1035
+ padding: 8px 16px;
1036
+ border: none;
1037
+ background: none;
1038
+ cursor: pointer;
1039
+ text-align: left;
1040
+ width: 100%;
1041
+ transition: background-color 0.2s ease;
1042
+ min-height: 40px;
1043
+ }
1044
+
1045
+ ._navItem_1eoor_79:hover {
1046
+ background-color: rgba(0, 0, 0, 0.04);
1047
+ }
1048
+
1049
+ ._navItem_1eoor_79._active_1eoor_96 {
1050
+ background-color: #dfe5ed;
1051
+ }
1052
+
1053
+ ._navItemIcon_1eoor_100 {
1054
+ width: 32px;
1055
+ height: 24px;
1056
+ display: flex;
1057
+ align-items: center;
1058
+ justify-content: flex-start;
1059
+ margin-right: 0;
1060
+ color: rgba(0, 0, 0, 0.87);
1061
+ }
1062
+
1063
+ ._navItemIcon_1eoor_100 svg {
1064
+ width: 24px;
1065
+ height: 24px;
1066
+ }
1067
+
1068
+ ._navItemLabel_1eoor_115 {
1069
+ font-family: 'Roboto', sans-serif;
1070
+ font-size: 16px;
1071
+ font-weight: 400;
1072
+ color: rgba(0, 0, 0, 0.87);
1073
+ letter-spacing: 0.15px;
1074
+ line-height: 1.5;
1075
+ flex: 1;
1076
+ padding: 4px 0;
1077
+ }
1078
+
1079
+ /* Legacy collapsed state support */
1080
+ ._navMenuContainer_1eoor_127 {
1081
+ height: 100vh;
1082
+ display: inline-block;
1083
+
1084
+ &._collapsed_1eoor_131 {
1085
+ width: 80px;
1086
+
1087
+ ._headerContainer_1eoor_134 {
1088
+ ._logo_1eoor_14 {
1089
+ display: block;
1090
+ }
1091
+
1092
+ .toggle-button {
1093
+ display: none;
1094
+ }
1095
+
1096
+ &:hover {
1097
+ ._logo_1eoor_14 {
1098
+ display: none;
1099
+ }
1100
+
1101
+ .toggle-button {
1102
+ display: block;
1103
+ }
1104
+ }
1105
+ }
1106
+ }
1107
+ }
1108
+ /* User section */
1109
+ ._userSection_r06sp_2 {
1110
+ padding: 12px 0;
1111
+ border-top: none;
1112
+ }
1113
+
1114
+ ._userProfile_r06sp_7 {
1115
+ display: flex;
1116
+ align-items: center;
1117
+ gap: 12px;
1118
+ padding: 8px 16px;
1119
+ border: none;
1120
+ background: none;
1121
+ cursor: pointer;
1122
+ width: 100%;
1123
+ text-align: left;
1124
+ transition: background-color 0.2s ease;
1125
+ }
1126
+
1127
+ ._userProfile_r06sp_7:hover {
1128
+ background-color: rgba(0, 0, 0, 0.04);
1129
+ }
1130
+
1131
+ ._userAvatar_r06sp_24 {
1132
+ width: 32px;
1133
+ height: 32px;
1134
+ background-color: #ab47bc;
1135
+ display: flex;
1136
+ align-items: center;
1137
+ justify-content: center;
1138
+ color: #ffffff;
1139
+ font-family: 'Rubik', sans-serif;
1140
+ font-size: 16px;
1141
+ font-weight: 400;
1142
+ line-height: 24px;
1143
+ }
1144
+
1145
+ ._avatarImage_r06sp_38 {
1146
+ width: 100%;
1147
+ height: 100%;
1148
+ -o-object-fit: cover;
1149
+ object-fit: cover;
1150
+ }
1151
+
1152
+ ._userName_r06sp_44 {
1153
+ font-family: 'Roboto', sans-serif;
1154
+ font-size: 16px;
1155
+ font-weight: 400;
1156
+ color: rgba(0, 0, 0, 0.87);
1157
+ letter-spacing: 0.15px;
1158
+ line-height: 1.5;
1159
+ width: 96px;
1160
+ }
1161
+
1162
+ /* Popover styles */
1163
+ ._popover_r06sp_55 {
1164
+ position: absolute;
1165
+ left: 186px; /* Position to the right of the nav */
1166
+ bottom: 0;
1167
+ width: 280px;
1168
+ background: white;
1169
+ box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
1170
+ border: 1px solid rgba(0, 0, 0, 0.1);
1171
+ z-index: 1000;
1172
+ overflow: hidden;
1173
+ }
1174
+
1175
+ ._popoverHeader_r06sp_67 {
1176
+ padding: 16px 20px 12px;
1177
+ font-family: 'Roboto', sans-serif;
1178
+ font-size: 12px;
1179
+ font-weight: 500;
1180
+ color: rgba(0, 0, 0, 0.6);
1181
+ letter-spacing: 1px;
1182
+ text-transform: uppercase;
1183
+ border-bottom: 1px solid rgba(0, 0, 0, 0.1);
1184
+ }
1185
+
1186
+ ._popoverUserInfo_r06sp_78 {
1187
+ display: flex;
1188
+ align-items: center;
1189
+ gap: 12px;
1190
+ padding: 16px 20px;
1191
+ border-bottom: 1px solid rgba(0, 0, 0, 0.1);
1192
+ }
1193
+
1194
+ ._popoverAvatar_r06sp_86 {
1195
+ width: 40px;
1196
+ height: 40px;
1197
+ background-color: #ab47bc;
1198
+ display: flex;
1199
+ align-items: center;
1200
+ justify-content: center;
1201
+ color: #ffffff;
1202
+ font-family: 'Rubik', sans-serif;
1203
+ font-size: 18px;
1204
+ font-weight: 400;
1205
+ }
1206
+
1207
+ ._popoverAvatar_r06sp_86 ._avatarImage_r06sp_38 {
1208
+ width: 100%;
1209
+ height: 100%;
1210
+ -o-object-fit: cover;
1211
+ object-fit: cover;
1212
+ }
1213
+
1214
+ ._popoverUserName_r06sp_105 {
1215
+ font-family: 'Roboto', sans-serif;
1216
+ font-size: 18px;
1217
+ font-weight: 400;
1218
+ color: rgba(0, 0, 0, 0.87);
1219
+ letter-spacing: 0.15px;
1220
+ }
1221
+
1222
+ ._popoverActions_r06sp_113 {
1223
+ padding: 8px 16px;
1224
+ display: flex;
1225
+ }
1226
+
1227
+ /* Base button styles for all popover buttons */
1228
+ ._popoverActions_r06sp_113 button {
1229
+ flex: 1;
1230
+ padding: 5px 15px;
1231
+ color: #2196f3;
1232
+ font-family: 'Roboto', sans-serif;
1233
+ font-size: 14px;
1234
+ font-weight: 500;
1235
+ letter-spacing: 0.5px;
1236
+ border-radius: 4px;
1237
+ cursor: pointer;
1238
+ transition: all 0.2s ease;
1239
+ white-space: nowrap;
1240
+ }
1241
+
1242
+ ._popoverActions_r06sp_113 button:hover {
1243
+ background-color: rgba(25, 118, 210, 0.04);
1244
+ }
1245
+
1246
+ /* Specific button variants */
1247
+ ._logOutButton_r06sp_138 {
1248
+ border: 1px solid #2196f3;
1249
+ background: transparent;
1250
+ }
1251
+
1252
+ ._changeClientButton_r06sp_143 {
1253
+ border: none;
1254
+ }