xmlui 0.9.21 → 0.9.25

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 (102) hide show
  1. package/dist/apiInterceptorWorker-CFF3bC6o.mjs +818 -0
  2. package/dist/{index-B3CWFAxa.mjs → index-DtxDGaqF.mjs} +11942 -3291
  3. package/dist/index.css +1301 -564
  4. package/dist/language-server-web-worker.mjs +1 -1
  5. package/dist/language-server.mjs +1 -1
  6. package/dist/lint-CYAUfk0_.mjs +168 -0
  7. package/dist/metadata-utils-CCIMqe69.mjs +466 -0
  8. package/dist/scripts/package.json +252 -0
  9. package/dist/scripts/src/components/App/AppLayoutContext.js +0 -1
  10. package/dist/scripts/src/components/App/AppNative.js +21 -9
  11. package/dist/scripts/src/components/AppHeader/AppHeader.js +1 -1
  12. package/dist/scripts/src/components/AutoComplete/AutoComplete.js +5 -2
  13. package/dist/scripts/src/components/AutoComplete/AutoCompleteNative.js +13 -10
  14. package/dist/scripts/src/components/Bookmark/BookmarkNative.js +5 -1
  15. package/dist/scripts/src/components/CodeBlock/CodeBlock.js +31 -0
  16. package/dist/scripts/src/components/CodeBlock/CodeBlockNative.js +82 -0
  17. package/dist/scripts/src/components/ComponentProvider.js +5 -0
  18. package/dist/scripts/src/components/DatePicker/DatePickerNative.js +1 -0
  19. package/dist/scripts/src/components/Form/FormContext.js +5 -4
  20. package/dist/scripts/src/components/Form/FormNative.js +41 -43
  21. package/dist/scripts/src/components/Form/formActions.js +1 -1
  22. package/dist/scripts/src/components/FormItem/FormItem.js +6 -3
  23. package/dist/scripts/src/components/FormItem/FormItemNative.js +56 -15
  24. package/dist/scripts/src/components/FormItem/ItemWithLabel.js +1 -1
  25. package/dist/scripts/src/components/Heading/Heading.js +13 -0
  26. package/dist/scripts/src/components/Heading/HeadingNative.js +1 -1
  27. package/dist/scripts/src/components/HtmlTags/HtmlTags.js +7 -3
  28. package/dist/scripts/src/components/Icon/DarkToLightIcon.js +10 -0
  29. package/dist/scripts/src/components/Icon/LightToDark.js +10 -0
  30. package/dist/scripts/src/components/IconProvider.js +4 -0
  31. package/dist/scripts/src/components/Image/ImageNative.js +1 -1
  32. package/dist/scripts/src/components/Items/ItemsNative.js +8 -6
  33. package/dist/scripts/src/components/Link/Link.js +5 -5
  34. package/dist/scripts/src/components/List/ListNative.js +1 -1
  35. package/dist/scripts/src/components/Markdown/Markdown.js +52 -16
  36. package/dist/scripts/src/components/Markdown/MarkdownNative.js +34 -73
  37. package/dist/scripts/src/components/Markdown/highlight-code.js +160 -0
  38. package/dist/scripts/src/components/Markdown/parse-binding-expr.js +60 -0
  39. package/dist/scripts/src/components/Markdown/utils.js +282 -0
  40. package/dist/scripts/src/components/ModalDialog/ConfirmationModalContextProvider.js +116 -0
  41. package/dist/scripts/src/components/ModalDialog/Dialog.js +20 -0
  42. package/dist/scripts/src/components/NavGroup/NavGroupNative.js +4 -5
  43. package/dist/scripts/src/components/NestedApp/NestedApp.js +61 -0
  44. package/dist/scripts/src/components/NestedApp/NestedAppNative.js +125 -0
  45. package/dist/scripts/src/components/NestedApp/Tooltip.js +46 -0
  46. package/dist/scripts/src/components/NumberBox/NumberBox.js +4 -1
  47. package/dist/scripts/src/components/NumberBox/NumberBoxNative.js +2 -2
  48. package/dist/scripts/src/components/Option/Option.js +3 -2
  49. package/dist/scripts/src/components/Select/Select.js +5 -3
  50. package/dist/scripts/src/components/Select/SelectNative.js +53 -40
  51. package/dist/scripts/src/components/SelectionStore/SelectionStore.js +1 -1
  52. package/dist/scripts/src/components/Spinner/Spinner.js +0 -1
  53. package/dist/scripts/src/components/TableOfContents/TableOfContents.js +1 -0
  54. package/dist/scripts/src/components/Text/Text.js +12 -1
  55. package/dist/scripts/src/components/Text/TextNative.js +5 -1
  56. package/dist/scripts/src/components/TextBox/TextBox.js +6 -1
  57. package/dist/scripts/src/components/TextBox/TextBoxNative.js +2 -2
  58. package/dist/scripts/src/components/Theme/ThemeNative.js +7 -3
  59. package/dist/scripts/src/components/ToneChangerButton/ToneChangerButton.js +1 -3
  60. package/dist/scripts/src/components-core/RestApiProxy.js +10 -7
  61. package/dist/scripts/src/components-core/TableOfContentsContext.js +1 -1
  62. package/dist/scripts/src/components-core/appContext/date-functions.js +23 -0
  63. package/dist/scripts/src/components-core/appContext/math-function.js +27 -0
  64. package/dist/scripts/src/components-core/appContext/misc-utils.js +13 -0
  65. package/dist/scripts/src/components-core/interception/ApiInterceptor.js +199 -0
  66. package/dist/scripts/src/components-core/interception/ApiInterceptorProvider.js +94 -0
  67. package/dist/scripts/src/components-core/interception/Backend.js +128 -0
  68. package/dist/scripts/src/components-core/interception/Errors.js +129 -0
  69. package/dist/scripts/src/components-core/interception/InMemoryDb.js +41 -0
  70. package/dist/scripts/src/components-core/interception/IndexedDb.js +207 -0
  71. package/dist/scripts/src/components-core/interception/ReadonlyCollection.js +145 -0
  72. package/dist/scripts/src/components-core/interception/abstractions.js +2 -0
  73. package/dist/scripts/src/components-core/interception/apiInterceptorWorker.js +46 -0
  74. package/dist/scripts/src/components-core/interception/useApiInterceptorContext.js +9 -0
  75. package/dist/scripts/src/components-core/rendering/AppContent.js +336 -0
  76. package/dist/scripts/src/components-core/rendering/AppRoot.js +84 -0
  77. package/dist/scripts/src/components-core/rendering/AppWrapper.js +49 -0
  78. package/dist/scripts/src/components-core/rendering/ComponentAdapter.js +17 -7
  79. package/dist/scripts/src/components-core/rendering/Container.js +2 -1
  80. package/dist/scripts/src/components-core/theming/ThemeProvider.js +2 -7
  81. package/dist/scripts/src/components-core/theming/themes/root.js +1 -0
  82. package/dist/scripts/src/components-core/utils/date-utils.js +78 -0
  83. package/dist/scripts/src/components-core/utils/hooks.js +26 -0
  84. package/dist/scripts/src/components-core/utils/misc.js +1 -1
  85. package/dist/scripts/src/components-core/utils/request-params.js +70 -0
  86. package/dist/scripts/src/logging/LoggerContext.js +22 -0
  87. package/dist/scripts/src/logging/LoggerInitializer.js +14 -0
  88. package/dist/scripts/src/logging/LoggerService.js +60 -0
  89. package/dist/scripts/src/parsers/xmlui-parser/transform.js +7 -0
  90. package/dist/{server-common-DW5h7Q34.mjs → server-common-9TiLMTJj.mjs} +106 -98
  91. package/dist/style.css +3314 -2823
  92. package/dist/{lint-EcgF-9Wr.mjs → transform-DC0Gy6qw.mjs} +1246 -540
  93. package/dist/xmlui-metadata.mjs +2850 -2665
  94. package/dist/xmlui-metadata.umd.js +2850 -2665
  95. package/dist/xmlui-parser.d.ts +49 -4
  96. package/dist/xmlui-parser.mjs +49 -48
  97. package/dist/xmlui-standalone.umd.js +34674 -31457
  98. package/dist/xmlui.d.ts +3 -1
  99. package/dist/xmlui.mjs +10 -10
  100. package/package.json +3 -1
  101. package/dist/apiInterceptorWorker-7aKQ2rBj.mjs +0 -8447
  102. package/dist/parser-CBXS8ft2.mjs +0 -1196
package/dist/index.css CHANGED
@@ -376,7 +376,7 @@
376
376
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
377
377
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
378
378
  */
379
- ._base_xbety_13 {
379
+ ._base_724s4_13 {
380
380
  display: flex;
381
381
  /* default flexbox alignment */
382
382
  justify-content: flex-start;
@@ -385,70 +385,74 @@
385
385
  min-width: 0;
386
386
  gap: var(--stack-gap-default);
387
387
  }
388
- ._base_xbety_13._hoverContainer_xbety_22 .display-on-hover {
388
+ ._base_724s4_13._hoverContainer_724s4_22 .display-on-hover {
389
389
  transition: opacity 0.1s;
390
390
  opacity: 0;
391
391
  visibility: hidden;
392
392
  }
393
- ._base_xbety_13._hoverContainer_xbety_22:has(.dropdown-visible) .display-on-hover {
393
+ ._base_724s4_13._hoverContainer_724s4_22:has(.dropdown-visible) .display-on-hover {
394
394
  opacity: 1;
395
395
  visibility: visible;
396
396
  }
397
- ._base_xbety_13._hoverContainer_xbety_22:hover .display-on-hover, ._base_xbety_13._hoverContainer_xbety_22:focus-within .display-on-hover {
397
+ ._base_724s4_13._hoverContainer_724s4_22:hover .display-on-hover, ._base_724s4_13._hoverContainer_724s4_22:focus-within .display-on-hover {
398
398
  opacity: 1;
399
399
  visibility: visible;
400
400
  }
401
- ._base_xbety_13._handlesClick_xbety_35 {
401
+ ._base_724s4_13._handlesClick_724s4_35 {
402
402
  cursor: pointer;
403
403
  }
404
404
 
405
- ._vertical_xbety_39 {
405
+ ._vertical_724s4_39 {
406
406
  flex-direction: column;
407
407
  min-height: 0;
408
408
  }
409
- ._vertical_xbety_39._reverse_xbety_43 {
409
+ ._vertical_724s4_39._reverse_724s4_43 {
410
410
  flex-direction: column-reverse;
411
411
  }
412
412
 
413
- ._horizontal_xbety_47 {
413
+ ._horizontal_724s4_47 {
414
414
  flex-direction: row;
415
415
  }
416
- ._horizontal_xbety_47._reverse_xbety_43 {
416
+ ._horizontal_724s4_47._reverse_724s4_43 {
417
417
  flex-direction: row-reverse;
418
418
  }
419
419
 
420
420
  /* Main axis */
421
- ._justifyItemsStart_xbety_55 {
421
+ ._justifyItemsStart_724s4_55 {
422
422
  justify-content: flex-start;
423
423
  }
424
424
 
425
- ._justifyItemsCenter_xbety_59 {
425
+ ._justifyItemsCenter_724s4_59 {
426
426
  justify-content: center;
427
427
  }
428
428
 
429
- ._justifyItemsStretch_xbety_63 {
429
+ ._justifyItemsStretch_724s4_63 {
430
430
  justify-content: stretch;
431
431
  }
432
432
 
433
- ._justifyItemsEnd_xbety_67 {
433
+ ._justifyItemsEnd_724s4_67 {
434
434
  justify-content: flex-end;
435
435
  }
436
436
 
437
437
  /* Cross axis */
438
- ._alignItemsStart_xbety_72 {
438
+ ._alignItemsStart_724s4_72 {
439
439
  align-items: flex-start;
440
440
  }
441
441
 
442
- ._alignItemsCenter_xbety_76 {
442
+ ._alignItemsCenter_724s4_76 {
443
443
  align-items: center;
444
444
  }
445
445
 
446
- ._alignItemsStretch_xbety_80 {
446
+ ._alignItemsStretch_724s4_80 {
447
447
  align-items: stretch;
448
448
  }
449
449
 
450
- ._alignItemsEnd_xbety_84 {
450
+ ._alignItemsEnd_724s4_84 {
451
451
  align-items: flex-end;
452
+ }
453
+
454
+ ._alignItemsBaseline_724s4_88 {
455
+ align-items: baseline;
452
456
  }/*
453
457
  * This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
454
458
  *
@@ -788,7 +792,7 @@
788
792
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
789
793
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
790
794
  */
791
- ._content_mnwtn_13._base_mnwtn_13 {
795
+ ._content_buj87_13._base_buj87_13 {
792
796
  border-left: var(--xmlui-borderLeft-NavLink, var(--xmlui-borderHorizontal-NavLink, var(--xmlui-border-NavLink)));
793
797
  border-right: var(--xmlui-borderRight-NavLink, var(--xmlui-borderHorizontal-NavLink, var(--xmlui-border-NavLink)));
794
798
  border-top: var(--xmlui-borderTop-NavLink, var(--xmlui-borderVertical-NavLink, var(--xmlui-border-NavLink)));
@@ -823,6 +827,7 @@
823
827
  font-size: var(--xmlui-fontSize-NavLink);
824
828
  font-weight: var(--xmlui-fontWeight-NavLink);
825
829
  font-family: var(--xmlui-fontFamily-NavLink);
830
+ word-wrap: var(--xmlui-wordWrap-NavLink);
826
831
  position: relative;
827
832
  transition: color 0.1s, background-color 0.1s;
828
833
  color: var(--xmlui-textColor-NavLink);
@@ -830,13 +835,13 @@
830
835
  flex-shrink: 0;
831
836
  white-space: nowrap;
832
837
  }
833
- ._content_mnwtn_13._base_mnwtn_13 ._icon_mnwtn_55 {
838
+ ._content_buj87_13._base_buj87_13 ._icon_buj87_56 {
834
839
  color: var(--xmlui-color-icon-NavLink);
835
840
  }
836
- ._content_mnwtn_13._base_mnwtn_13 * {
841
+ ._content_buj87_13._base_buj87_13 * {
837
842
  color: var(--xmlui-textColor-NavLink);
838
843
  }
839
- ._content_mnwtn_13._base_mnwtn_13._includeHoverIndicator_mnwtn_61:after {
844
+ ._content_buj87_13._base_buj87_13._includeHoverIndicator_buj87_62:after {
840
845
  transition: color 0.1s, background-color 0.1s;
841
846
  position: absolute;
842
847
  left: 0.1em;
@@ -846,83 +851,83 @@
846
851
  border-radius: var(--xmlui-borderRadius-indicator-NavLink);
847
852
  content: "";
848
853
  }
849
- ._content_mnwtn_13._base_mnwtn_13:hover._displayActive_mnwtn_71, ._content_mnwtn_13._base_mnwtn_13:focus-visible {
854
+ ._content_buj87_13._base_buj87_13:hover._displayActive_buj87_72, ._content_buj87_13._base_buj87_13:focus-visible {
850
855
  color: var(--xmlui-textColor-NavLink--hover);
851
856
  background-color: var(--xmlui-backgroundColor-NavLink--hover);
852
857
  }
853
- ._content_mnwtn_13._base_mnwtn_13:hover._displayActive_mnwtn_71 *, ._content_mnwtn_13._base_mnwtn_13:focus-visible * {
858
+ ._content_buj87_13._base_buj87_13:hover._displayActive_buj87_72 *, ._content_buj87_13._base_buj87_13:focus-visible * {
854
859
  color: var(--xmlui-textColor-NavLink--hover);
855
860
  }
856
- ._content_mnwtn_13._base_mnwtn_13:hover._displayActive_mnwtn_71:after, ._content_mnwtn_13._base_mnwtn_13:focus-visible:after {
861
+ ._content_buj87_13._base_buj87_13:hover._displayActive_buj87_72:after, ._content_buj87_13._base_buj87_13:focus-visible:after {
857
862
  background-color: var(--xmlui-color-indicator-NavLink--hover);
858
863
  }
859
- ._content_mnwtn_13._base_mnwtn_13:focus-visible {
864
+ ._content_buj87_13._base_buj87_13:focus-visible {
860
865
  outline-width: var(--xmlui-outlineWidth-NavLink--focus);
861
866
  outline-color: var(--xmlui-outlineColor-NavLink--focus);
862
867
  outline-style: var(--xmlui-outlineStyle-NavLink--focus);
863
868
  outline-offset: var(--xmlui-outlineOffset-NavLink--focus);
864
869
  }
865
- ._content_mnwtn_13._base_mnwtn_13[role=menuitem] {
870
+ ._content_buj87_13._base_buj87_13[role=menuitem] {
866
871
  outline: none;
867
872
  }
868
- ._content_mnwtn_13._base_mnwtn_13[role=menuitem]:not(:hover):focus-visible {
873
+ ._content_buj87_13._base_buj87_13[role=menuitem]:not(:hover):focus-visible {
869
874
  outline-width: var(--xmlui-outlineWidth-NavLink--focus);
870
875
  outline-color: var(--xmlui-outlineColor-NavLink--focus);
871
876
  outline-style: var(--xmlui-outlineStyle-NavLink--focus);
872
877
  outline-offset: var(--xmlui-outlineOffset-NavLink--focus);
873
878
  }
874
- ._content_mnwtn_13._base_mnwtn_13:active._displayActive_mnwtn_71 {
879
+ ._content_buj87_13._base_buj87_13:active._displayActive_buj87_72 {
875
880
  color: var(--xmlui-textColor-NavLink--pressed);
876
881
  background-color: var(--xmlui-backgroundColor-NavLink--pressed);
877
882
  font-weight: var(--xmlui-fontWeight-NavLink--pressed);
878
883
  }
879
- ._content_mnwtn_13._base_mnwtn_13:active._displayActive_mnwtn_71 * {
884
+ ._content_buj87_13._base_buj87_13:active._displayActive_buj87_72 * {
880
885
  font-weight: var(--xmlui-fontWeight-NavLink--pressed);
881
886
  color: var(--xmlui-textColor-NavLink--pressed);
882
887
  }
883
- ._content_mnwtn_13._base_mnwtn_13:active._displayActive_mnwtn_71:after {
888
+ ._content_buj87_13._base_buj87_13:active._displayActive_buj87_72:after {
884
889
  background-color: var(--xmlui-color-indicator-NavLink--pressed);
885
890
  }
886
- ._content_mnwtn_13._base_mnwtn_13._navItemActive_mnwtn_108 {
891
+ ._content_buj87_13._base_buj87_13._navItemActive_buj87_109 {
887
892
  color: var(--xmlui-textColor-NavLink--active);
888
893
  background-color: var(--xmlui-backgroundColor-NavLink--active);
889
894
  font-weight: var(--xmlui-fontWeight-NavLink--active);
890
895
  }
891
- ._content_mnwtn_13._base_mnwtn_13._navItemActive_mnwtn_108 * {
896
+ ._content_buj87_13._base_buj87_13._navItemActive_buj87_109 * {
892
897
  font-weight: var(--xmlui-fontWeight-NavLink--active);
893
898
  color: var(--xmlui-textColor-NavLink--active);
894
899
  }
895
- ._content_mnwtn_13._base_mnwtn_13._navItemActive_mnwtn_108 > * {
900
+ ._content_buj87_13._base_buj87_13._navItemActive_buj87_109 > * {
896
901
  z-index: 1;
897
902
  }
898
- ._content_mnwtn_13._base_mnwtn_13._navItemActive_mnwtn_108:hover {
903
+ ._content_buj87_13._base_buj87_13._navItemActive_buj87_109:hover {
899
904
  color: var(--xmlui-textColor-NavLink--hover--active);
900
905
  background-color: var(--xmlui-backgroundColor-NavLink--hover--active);
901
906
  }
902
- ._content_mnwtn_13._base_mnwtn_13._navItemActive_mnwtn_108:hover * {
907
+ ._content_buj87_13._base_buj87_13._navItemActive_buj87_109:hover * {
903
908
  color: var(--xmlui-textColor-NavLink--hover--active);
904
909
  }
905
- ._content_mnwtn_13._base_mnwtn_13._navItemActive_mnwtn_108:after {
910
+ ._content_buj87_13._base_buj87_13._navItemActive_buj87_109:after {
906
911
  z-index: 0;
907
912
  background-color: var(--xmlui-color-indicator-NavLink--active);
908
913
  }
909
- ._content_mnwtn_13._base_mnwtn_13._navItemActive_mnwtn_108:active {
914
+ ._content_buj87_13._base_buj87_13._navItemActive_buj87_109:active {
910
915
  color: var(--xmlui-textColor-NavLink--pressed--active);
911
916
  background-color: var(--xmlui-backgroundColor-NavLink--pressed--active);
912
917
  font-weight: var(--xmlui-fontWeight-NavLink--pressed);
913
918
  }
914
- ._content_mnwtn_13._base_mnwtn_13._navItemActive_mnwtn_108:active * {
919
+ ._content_buj87_13._base_buj87_13._navItemActive_buj87_109:active * {
915
920
  font-weight: var(--xmlui-fontWeight-NavLink--pressed);
916
921
  color: var(--xmlui-textColor-NavLink--pressed--active);
917
922
  }
918
- ._content_mnwtn_13._base_mnwtn_13._navItemActive_mnwtn_108:active:after {
923
+ ._content_buj87_13._base_buj87_13._navItemActive_buj87_109:active:after {
919
924
  background-color: var(--xmlui-color-indicator-NavLink--pressed);
920
925
  }
921
- ._content_mnwtn_13._base_mnwtn_13._disabled_mnwtn_143 {
926
+ ._content_buj87_13._base_buj87_13._disabled_buj87_144 {
922
927
  cursor: not-allowed;
923
928
  color: var(--xmlui-textColor--disabled);
924
929
  }
925
- ._content_mnwtn_13._base_mnwtn_13._vertical_mnwtn_147:after {
930
+ ._content_buj87_13._base_buj87_13._vertical_buj87_148:after {
926
931
  top: 0;
927
932
  bottom: 0;
928
933
  left: 0;
@@ -931,7 +936,7 @@
931
936
  height: auto;
932
937
  border-radius: var(--xmlui-borderRadius-indicator-NavLink);
933
938
  }
934
- ._content_mnwtn_13._base_mnwtn_13._indented_mnwtn_156 {
939
+ ._content_buj87_13._base_buj87_13._indented_buj87_157 {
935
940
  padding-left: 2.4em;
936
941
  flex-shrink: 0;
937
942
  }/*
@@ -968,7 +973,7 @@
968
973
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
969
974
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
970
975
  */
971
- ._wrapper_rebcu_13 {
976
+ ._wrapper_918vy_13 {
972
977
  --footer-height: 0px;
973
978
  --header-height: 0px;
974
979
  width: 100%;
@@ -978,195 +983,131 @@
978
983
  flex-direction: column;
979
984
  isolation: isolate;
980
985
  }
981
- ._wrapper_rebcu_13._vertical_rebcu_23 {
986
+ ._wrapper_918vy_13._vertical_918vy_23 {
982
987
  flex-direction: row;
983
988
  overflow: initial;
984
989
  }
985
- ._wrapper_rebcu_13._vertical_rebcu_23 ._contentWrapper_rebcu_27 {
990
+ ._wrapper_918vy_13._vertical_918vy_23 ._contentWrapper_918vy_27 {
986
991
  overflow: auto;
987
992
  scroll-padding-block: var(--xmlui-scroll-padding-block-Pages);
988
993
  position: relative;
989
994
  scrollbar-gutter: stable both-edges;
990
995
  }
991
- ._wrapper_rebcu_13._vertical_rebcu_23 ._navPanelWrapper_rebcu_33 {
996
+ ._wrapper_918vy_13._vertical_918vy_23 ._navPanelWrapper_918vy_33 {
992
997
  width: var(--xmlui-width-navPanel-App);
993
998
  flex-shrink: 0;
994
999
  }
995
- ._wrapper_rebcu_13._vertical_rebcu_23 ._PagesWrapper_rebcu_37 {
1000
+ ._wrapper_918vy_13._vertical_918vy_23 ._PagesWrapper_918vy_37 {
996
1001
  min-height: initial;
997
1002
  flex: 1;
998
1003
  }
999
- ._wrapper_rebcu_13._vertical_rebcu_23 ._footerWrapper_rebcu_41 {
1004
+ ._wrapper_918vy_13._vertical_918vy_23 ._footerWrapper_918vy_41 {
1000
1005
  position: static;
1001
1006
  }
1002
- ._wrapper_rebcu_13._vertical_rebcu_23._sticky_rebcu_44 ._contentWrapper_rebcu_27 {
1003
- scroll-padding-top: var(--header-height);
1004
- }
1005
- ._wrapper_rebcu_13._vertical_rebcu_23._sticky_rebcu_44 ._footerWrapper_rebcu_41 {
1007
+ ._wrapper_918vy_13._vertical_918vy_23._sticky_918vy_44 ._footerWrapper_918vy_41 {
1006
1008
  position: sticky;
1007
1009
  bottom: 0;
1008
1010
  }
1009
- ._wrapper_rebcu_13._horizontal_rebcu_51 {
1011
+ ._wrapper_918vy_13._horizontal_918vy_48 {
1010
1012
  overflow: auto;
1011
1013
  scroll-padding-block: var(--xmlui-scroll-padding-block-Pages);
1012
1014
  }
1013
- ._wrapper_rebcu_13._horizontal_rebcu_51 ._PagesWrapper_rebcu_37 {
1015
+ ._wrapper_918vy_13._horizontal_918vy_48 ._PagesWrapper_918vy_37 {
1014
1016
  min-height: initial;
1015
1017
  }
1016
- ._wrapper_rebcu_13._horizontal_rebcu_51 ._footerWrapper_rebcu_41 {
1018
+ ._wrapper_918vy_13._horizontal_918vy_48 ._footerWrapper_918vy_41 {
1017
1019
  position: static;
1018
1020
  }
1019
- ._wrapper_rebcu_13._horizontal_rebcu_51._sticky_rebcu_44 {
1020
- scroll-padding-top: var(--header-height);
1021
+ ._wrapper_918vy_13._horizontal_918vy_48._sticky_918vy_44 {
1021
1022
  min-height: 100%;
1022
1023
  }
1023
- ._wrapper_rebcu_13._horizontal_rebcu_51._sticky_rebcu_44 ._footerWrapper_rebcu_41 {
1024
+ ._wrapper_918vy_13._horizontal_918vy_48._sticky_918vy_44 ._footerWrapper_918vy_41 {
1024
1025
  position: sticky;
1025
1026
  bottom: 0;
1026
1027
  }
1027
- ._wrapper_rebcu_13._horizontal_rebcu_51 ._navPanelWrapper_rebcu_33 {
1028
+ ._wrapper_918vy_13._horizontal_918vy_48 ._navPanelWrapper_918vy_33 {
1028
1029
  border-bottom: var(--xmlui-borderBottom-AppHeader);
1029
1030
  justify-content: end;
1030
1031
  }
1031
- ._wrapper_rebcu_13._verticalFullHeader_rebcu_73 {
1032
- min-height: 100%;
1033
- height: 100%;
1034
- overflow: auto;
1035
- scroll-padding-block: var(--xmlui-scroll-padding-block-Pages);
1036
- }
1037
- ._wrapper_rebcu_13._verticalFullHeader_rebcu_73 ._navPanelWrapper_rebcu_33 {
1038
- width: var(--xmlui-width-navPanel-App);
1039
- position: sticky;
1040
- height: calc(var(--containerHeight, 100vh) - var(--footer-height) - var(--header-height));
1041
- top: var(--header-height);
1042
- }
1043
- ._wrapper_rebcu_13._verticalFullHeader_rebcu_73 ._PagesWrapper_rebcu_37 {
1044
- overflow: initial;
1045
- min-height: calc(var(--containerHeight, 100vh) - var(--header-height) - var(--footer-height));
1046
- height: 100%;
1047
- }
1048
- ._wrapper_rebcu_13._verticalFullHeader_rebcu_73 ._PagesWrapperInner_rebcu_90 {
1049
- height: 100%;
1050
- }
1051
- ._wrapper_rebcu_13._verticalFullHeader_rebcu_73 ._PagesWrapperInner_rebcu_90 > .xmlui-page-root {
1052
- height: 100%;
1053
- }
1054
- ._wrapper_rebcu_13._verticalFullHeader_rebcu_73 ._footerWrapper_rebcu_41 {
1055
- position: sticky;
1056
- left: 0;
1057
- right: 0;
1058
- bottom: 0;
1059
- }
1060
- ._wrapper_rebcu_13._verticalConstrained_rebcu_102 {
1032
+ ._wrapper_918vy_13._verticalFullHeader_918vy_69 {
1061
1033
  min-height: 100%;
1062
1034
  height: 100%;
1063
1035
  overflow: auto;
1064
1036
  scroll-padding-block: var(--xmlui-scroll-padding-block-Pages);
1065
1037
  }
1066
- ._wrapper_rebcu_13._verticalConstrained_rebcu_102 ._header_rebcu_108 {
1067
- max-width: var(--xmlui-maxWidth-content-App);
1068
- margin: auto;
1069
- }
1070
- ._wrapper_rebcu_13._verticalConstrained_rebcu_102 ._navPanelWrapper_rebcu_33 {
1038
+ ._wrapper_918vy_13._verticalFullHeader_918vy_69 ._navPanelWrapper_918vy_33 {
1071
1039
  width: var(--xmlui-width-navPanel-App);
1072
1040
  position: sticky;
1073
1041
  height: calc(var(--containerHeight, 100vh) - var(--footer-height) - var(--header-height));
1074
1042
  top: var(--header-height);
1075
1043
  }
1076
- ._wrapper_rebcu_13._verticalConstrained_rebcu_102 ._PagesWrapper_rebcu_37 {
1044
+ ._wrapper_918vy_13._verticalFullHeader_918vy_69 ._PagesWrapper_918vy_37 {
1077
1045
  overflow: initial;
1078
1046
  min-height: calc(var(--containerHeight, 100vh) - var(--header-height) - var(--footer-height));
1079
1047
  height: 100%;
1080
1048
  }
1081
- ._wrapper_rebcu_13._verticalConstrained_rebcu_102 ._PagesWrapperInner_rebcu_90 {
1049
+ ._wrapper_918vy_13._verticalFullHeader_918vy_69 ._PagesWrapperInner_918vy_86 {
1082
1050
  height: 100%;
1083
1051
  }
1084
- ._wrapper_rebcu_13._verticalConstrained_rebcu_102 ._PagesWrapperInner_rebcu_90 > .xmlui-page-root {
1052
+ ._wrapper_918vy_13._verticalFullHeader_918vy_69 ._PagesWrapperInner_918vy_86 > .xmlui-page-root {
1085
1053
  height: 100%;
1086
1054
  }
1087
- ._wrapper_rebcu_13._verticalConstrained_rebcu_102 ._footerWrapper_rebcu_41 {
1055
+ ._wrapper_918vy_13._verticalFullHeader_918vy_69 ._footerWrapper_918vy_41 {
1088
1056
  position: sticky;
1089
1057
  left: 0;
1090
1058
  right: 0;
1091
1059
  bottom: 0;
1092
1060
  }
1093
- ._wrapper_rebcu_13._scrollWholePage_rebcu_135 {
1061
+ ._wrapper_918vy_13._scrollWholePage_918vy_98 {
1094
1062
  scrollbar-gutter: stable both-edges;
1095
1063
  }
1096
- ._wrapper_rebcu_13._scrollWholePage_rebcu_135 ._headerWrapper_rebcu_138 {
1097
- margin-inline: calc(-1 * var(--scrollbar-width));
1098
- }
1099
- ._wrapper_rebcu_13._scrollWholePage_rebcu_135 ._headerWrapper_rebcu_138 > div {
1100
- padding-inline: var(--scrollbar-width);
1101
- }
1102
- ._wrapper_rebcu_13._scrollWholePage_rebcu_135 ._footerWrapper_rebcu_41 {
1064
+ ._wrapper_918vy_13._scrollWholePage_918vy_98 ._headerWrapper_918vy_101 {
1103
1065
  margin-inline: calc(-1 * var(--scrollbar-width));
1104
1066
  }
1105
- ._wrapper_rebcu_13._scrollWholePage_rebcu_135 ._footerWrapper_rebcu_41 > div {
1067
+ ._wrapper_918vy_13._scrollWholePage_918vy_98 ._headerWrapper_918vy_101 > div {
1106
1068
  padding-inline: var(--scrollbar-width);
1107
1069
  }
1108
- ._wrapper_rebcu_13._scrollWholePage_rebcu_135._verticalFullHeader_rebcu_73 {
1109
- scroll-padding-top: var(--header-height);
1110
- }
1111
- ._wrapper_rebcu_13._scrollWholePage_rebcu_135._verticalFullHeader_rebcu_73 ._content_rebcu_27 {
1112
- margin-inline: calc(-1 * var(--scrollbar-width));
1113
- }
1114
- ._wrapper_rebcu_13._scrollWholePage_rebcu_135._verticalFullHeader_rebcu_73 ._contentWrapper_rebcu_27 {
1115
- padding-inline: var(--scrollbar-width);
1116
- }
1117
- ._wrapper_rebcu_13._scrollWholePage_rebcu_135._verticalConstrained_rebcu_102 {
1118
- scroll-padding-top: var(--header-height);
1119
- }
1120
- ._wrapper_rebcu_13._scrollWholePage_rebcu_135._verticalConstrained_rebcu_102 ._content_rebcu_27 {
1121
- width: var(--xmlui-maxWidth-content-App);
1070
+ ._wrapper_918vy_13._scrollWholePage_918vy_98 ._footerWrapper_918vy_41 {
1122
1071
  margin-inline: calc(-1 * var(--scrollbar-width));
1123
- margin: auto;
1124
1072
  }
1125
- ._wrapper_rebcu_13._scrollWholePage_rebcu_135._verticalConstrained_rebcu_102 ._contentWrapper_rebcu_27 {
1073
+ ._wrapper_918vy_13._scrollWholePage_918vy_98 ._footerWrapper_918vy_41 > div {
1126
1074
  padding-inline: var(--scrollbar-width);
1127
1075
  }
1128
- ._wrapper_rebcu_13._scrollWholePage_rebcu_135._verticalConstrained_rebcu_102 ._headerWrapper_rebcu_138 > div {
1129
- width: var(--xmlui-maxWidth-content-App);
1130
- }
1131
- ._wrapper_rebcu_13._scrollWholePage_rebcu_135._verticalConstrained_rebcu_102 ._footerWrapper_rebcu_41 {
1076
+ ._wrapper_918vy_13._scrollWholePage_918vy_98._verticalFullHeader_918vy_69 ._content_918vy_27 {
1132
1077
  margin-inline: calc(-1 * var(--scrollbar-width));
1133
1078
  }
1134
- ._wrapper_rebcu_13._scrollWholePage_rebcu_135._verticalConstrained_rebcu_102 ._footerWrapper_rebcu_41 > div {
1079
+ ._wrapper_918vy_13._scrollWholePage_918vy_98._verticalFullHeader_918vy_69 ._contentWrapper_918vy_27 {
1135
1080
  padding-inline: var(--scrollbar-width);
1136
1081
  }
1137
- ._wrapper_rebcu_13:not(._scrollWholePage_rebcu_135) {
1082
+ ._wrapper_918vy_13:not(._scrollWholePage_918vy_98) {
1138
1083
  overflow: hidden;
1139
1084
  }
1140
- ._wrapper_rebcu_13:not(._scrollWholePage_rebcu_135) ._content_rebcu_27 {
1085
+ ._wrapper_918vy_13:not(._scrollWholePage_918vy_98) ._content_918vy_27 {
1141
1086
  min-height: 0;
1142
1087
  height: 100%;
1143
1088
  }
1144
- ._wrapper_rebcu_13:not(._scrollWholePage_rebcu_135) ._contentWrapper_rebcu_27 {
1089
+ ._wrapper_918vy_13:not(._scrollWholePage_918vy_98) ._contentWrapper_918vy_27 {
1145
1090
  overflow: initial;
1146
1091
  }
1147
- ._wrapper_rebcu_13:not(._scrollWholePage_rebcu_135)._verticalConstrained_rebcu_102 ._content_rebcu_27 {
1148
- width: var(--xmlui-maxWidth-content-App);
1149
- margin: auto;
1150
- }
1151
- ._wrapper_rebcu_13:not(._scrollWholePage_rebcu_135) ._PagesWrapper_rebcu_37 {
1092
+ ._wrapper_918vy_13:not(._scrollWholePage_918vy_98) ._PagesWrapper_918vy_37 {
1152
1093
  overflow: auto;
1153
1094
  scroll-padding-block: var(--xmlui-scroll-padding-block-Pages);
1154
1095
  min-height: 0;
1155
1096
  height: 100%;
1156
1097
  scrollbar-gutter: stable both-edges;
1157
1098
  }
1158
- ._wrapper_rebcu_13:not(._scrollWholePage_rebcu_135) ._PagesWrapperInner_rebcu_90 {
1099
+ ._wrapper_918vy_13:not(._scrollWholePage_918vy_98) ._PagesWrapperInner_918vy_86 {
1159
1100
  min-height: 100%;
1160
1101
  height: 0;
1161
1102
  }
1162
- ._wrapper_rebcu_13._noScrollbarGutters_rebcu_204 {
1103
+ ._wrapper_918vy_13._noScrollbarGutters_918vy_140 {
1163
1104
  scrollbar-gutter: auto;
1164
1105
  }
1165
- ._wrapper_rebcu_13._noScrollbarGutters_rebcu_204 ._PagesWrapper_rebcu_37 {
1106
+ ._wrapper_918vy_13._noScrollbarGutters_918vy_140 ._PagesWrapper_918vy_37 {
1166
1107
  scrollbar-gutter: auto;
1167
1108
  }
1168
1109
 
1169
- ._headerWrapper_rebcu_138 {
1110
+ ._headerWrapper_918vy_101 {
1170
1111
  z-index: 1;
1171
1112
  min-height: 0;
1172
1113
  flex-shrink: 0;
@@ -1175,17 +1116,20 @@
1175
1116
  box-shadow: var(--xmlui-boxShadow-header-App);
1176
1117
  background-color: var(--xmlui-backgroundColor-AppHeader);
1177
1118
  }
1178
- ._headerWrapper_rebcu_138._sticky_rebcu_44 {
1119
+ ._headerWrapper_918vy_101._sticky_918vy_44 {
1179
1120
  position: sticky;
1180
1121
  }
1181
1122
 
1182
- ._content_rebcu_27 {
1123
+ ._content_918vy_27 {
1183
1124
  display: flex;
1184
1125
  flex-direction: row;
1185
1126
  isolation: isolate;
1127
+ align-self: center;
1128
+ width: 100%;
1129
+ max-width: var(--xmlui-maxWidth-App);
1186
1130
  }
1187
1131
 
1188
- ._contentWrapper_rebcu_27 {
1132
+ ._contentWrapper_918vy_27 {
1189
1133
  position: relative;
1190
1134
  min-width: 0;
1191
1135
  flex: 1;
@@ -1196,21 +1140,21 @@
1196
1140
  border-left: var(--xmlui-borderLeft-content-App);
1197
1141
  }
1198
1142
 
1199
- ._navPanelWrapper_rebcu_33 {
1143
+ ._navPanelWrapper_918vy_33 {
1200
1144
  display: flex;
1201
1145
  position: sticky;
1202
1146
  top: 0;
1203
1147
  }
1204
- ._navPanelWrapper_rebcu_33:empty {
1148
+ ._navPanelWrapper_918vy_33:empty {
1205
1149
  display: none;
1206
1150
  }
1207
1151
 
1208
- ._PagesWrapper_rebcu_37 {
1152
+ ._PagesWrapper_918vy_37 {
1209
1153
  flex: 1;
1210
1154
  isolation: isolate;
1211
1155
  }
1212
1156
 
1213
- ._PagesWrapperInner_rebcu_90 {
1157
+ ._PagesWrapperInner_918vy_86 {
1214
1158
  --page-padding-left: var(--xmlui-space-4);
1215
1159
  --page-padding-right: var(--xmlui-space-4);
1216
1160
  --page-padding-top: var(--xmlui-space-5);
@@ -1228,7 +1172,7 @@
1228
1172
  display: flex;
1229
1173
  flex-direction: column;
1230
1174
  }
1231
- ._PagesWrapperInner_rebcu_90 > .xmlui-page-root {
1175
+ ._PagesWrapperInner_918vy_86 > .xmlui-page-root {
1232
1176
  padding-top: var(--page-padding-top-override, var(--page-padding-top));
1233
1177
  padding-bottom: var(--page-padding-bottom-override, var(--page-padding-bottom));
1234
1178
  padding-right: var(--page-padding-right-override, var(--page-padding-right));
@@ -1240,7 +1184,7 @@
1240
1184
  margin-right: calc(-1 * var(--page-padding-right));
1241
1185
  }
1242
1186
 
1243
- ._footerWrapper_rebcu_41 {
1187
+ ._footerWrapper_918vy_41 {
1244
1188
  flex-shrink: 0;
1245
1189
  }/*
1246
1190
  * This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
@@ -1374,7 +1318,7 @@
1374
1318
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
1375
1319
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
1376
1320
  */
1377
- ._header_1m0kp_13 {
1321
+ ._header_gpl7m_13 {
1378
1322
  position: relative;
1379
1323
  height: var(--xmlui-height-AppHeader);
1380
1324
  box-sizing: content-box;
@@ -1401,7 +1345,7 @@
1401
1345
  border-end-end-radius: var(--xmlui-borderEndEndRadius-AppHeader, var(--xmlui-borderRadius-AppHeader));
1402
1346
  }
1403
1347
 
1404
- ._headerInner_1m0kp_40 {
1348
+ ._headerInner_gpl7m_40 {
1405
1349
  height: 100%;
1406
1350
  flex: 1;
1407
1351
  gap: var(--xmlui-space-4);
@@ -1419,11 +1363,11 @@
1419
1363
  width: 100%;
1420
1364
  margin: 0 auto;
1421
1365
  }
1422
- ._headerInner_1m0kp_40._full_1m0kp_58 {
1423
- max-width: 100%;
1366
+ ._headerInner_gpl7m_40._full_gpl7m_58 {
1367
+ max-width: var(--xmlui-maxWidth-AppHeader);
1424
1368
  }
1425
1369
 
1426
- ._childrenWrapper_1m0kp_62 {
1370
+ ._childrenWrapper_gpl7m_62 {
1427
1371
  --stack-gap-default: var(--xmlui-space-2);
1428
1372
  display: flex;
1429
1373
  flex-direction: row;
@@ -1435,25 +1379,25 @@
1435
1379
  justify-content: var(--xmlui-align-content-AppHeader);
1436
1380
  }
1437
1381
 
1438
- ._subNavPanelSlot_1m0kp_74 {
1382
+ ._subNavPanelSlot_gpl7m_74 {
1439
1383
  display: flex;
1440
1384
  flex-direction: row;
1441
1385
  }
1442
1386
 
1443
- ._logoAndTitle_1m0kp_79 {
1387
+ ._logoAndTitle_gpl7m_79 {
1444
1388
  display: flex;
1445
1389
  align-items: center;
1446
1390
  gap: var(--xmlui-space-4);
1447
1391
  height: 100%;
1448
1392
  }
1449
- ._logoAndTitle_1m0kp_79:not(:empty) {
1393
+ ._logoAndTitle_gpl7m_79:not(:empty) {
1450
1394
  padding-right: var(--xmlui-space-2);
1451
1395
  }
1452
- ._logoAndTitle_1m0kp_79:empty {
1396
+ ._logoAndTitle_gpl7m_79:empty {
1453
1397
  display: none;
1454
1398
  }
1455
1399
 
1456
- ._logoContainer_1m0kp_92:not(:empty) {
1400
+ ._logoContainer_gpl7m_92:not(:empty) {
1457
1401
  flex-shrink: 0;
1458
1402
  display: flex;
1459
1403
  width: var(--xmlui-width-logo-AppHeader);
@@ -1466,16 +1410,16 @@
1466
1410
  padding-bottom: var(--xmlui-paddingBottom-logo-AppHeader, var(--xmlui-paddingVertical-logo-AppHeader, var(--xmlui-padding-logo-AppHeader)));
1467
1411
  }
1468
1412
 
1469
- ._customLogoContainer_1m0kp_105 {
1413
+ ._customLogoContainer_gpl7m_105 {
1470
1414
  display: flex;
1471
1415
  height: 100%;
1472
1416
  align-items: center;
1473
1417
  }
1474
- ._customLogoContainer_1m0kp_105 > img {
1418
+ ._customLogoContainer_gpl7m_105 > img {
1475
1419
  height: 100%;
1476
1420
  }
1477
1421
 
1478
- ._rightItems_1m0kp_114 {
1422
+ ._rightItems_gpl7m_114 {
1479
1423
  --stack-gap-default: var(--xmlui-space-2);
1480
1424
  gap: var(--stack-gap-default);
1481
1425
  height: 100%;
@@ -1483,11 +1427,11 @@
1483
1427
  flex-direction: row;
1484
1428
  align-items: center;
1485
1429
  }
1486
- ._rightItems_1m0kp_114:not(:empty) {
1430
+ ._rightItems_gpl7m_114:not(:empty) {
1487
1431
  padding-left: var(--xmlui-space-4);
1488
1432
  }
1489
1433
 
1490
- ._appHub_1m0kp_126 {
1434
+ ._appHub_gpl7m_126 {
1491
1435
  text-decoration: none;
1492
1436
  margin-right: var(--xmlui-space-4);
1493
1437
  width: 40px;
@@ -1495,10 +1439,10 @@
1495
1439
  color: var(--xmlui-textColor-subtitle);
1496
1440
  cursor: pointer;
1497
1441
  }
1498
- ._appHub_1m0kp_126:hover {
1442
+ ._appHub_gpl7m_126:hover {
1499
1443
  color: var(--xmlui-textColor-secondary);
1500
1444
  }
1501
- ._appHub_1m0kp_126 svg {
1445
+ ._appHub_gpl7m_126 svg {
1502
1446
  width: 100%;
1503
1447
  height: 100%;
1504
1448
  }/*
@@ -2228,7 +2172,7 @@
2228
2172
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
2229
2173
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
2230
2174
  */
2231
- ._heading_1ad65_13._h1_1ad65_13 {
2175
+ ._heading_qi2wo_13._h1_qi2wo_13 {
2232
2176
  padding: var(--xmlui-padding-H1);
2233
2177
  padding-left: var(--xmlui-paddingLeft-H1, var(--xmlui-paddingHorizontal-H1, var(--xmlui-padding-H1)));
2234
2178
  padding-right: var(--xmlui-paddingRight-H1, var(--xmlui-paddingHorizontal-H1, var(--xmlui-padding-H1)));
@@ -2291,7 +2235,7 @@
2291
2235
  text-decoration-thickness: var(--xmlui-textDecorationThickness-H1);
2292
2236
  text-underline-offset: var(--xmlui-textUnderlineOffset-H1);
2293
2237
  }
2294
- ._heading_1ad65_13._h2_1ad65_76 {
2238
+ ._heading_qi2wo_13._h2_qi2wo_76 {
2295
2239
  padding: var(--xmlui-padding-H2);
2296
2240
  padding-left: var(--xmlui-paddingLeft-H2, var(--xmlui-paddingHorizontal-H2, var(--xmlui-padding-H2)));
2297
2241
  padding-right: var(--xmlui-paddingRight-H2, var(--xmlui-paddingHorizontal-H2, var(--xmlui-padding-H2)));
@@ -2354,7 +2298,7 @@
2354
2298
  text-decoration-thickness: var(--xmlui-textDecorationThickness-H2);
2355
2299
  text-underline-offset: var(--xmlui-textUnderlineOffset-H2);
2356
2300
  }
2357
- ._heading_1ad65_13._h3_1ad65_139 {
2301
+ ._heading_qi2wo_13._h3_qi2wo_139 {
2358
2302
  padding: var(--xmlui-padding-H3);
2359
2303
  padding-left: var(--xmlui-paddingLeft-H3, var(--xmlui-paddingHorizontal-H3, var(--xmlui-padding-H3)));
2360
2304
  padding-right: var(--xmlui-paddingRight-H3, var(--xmlui-paddingHorizontal-H3, var(--xmlui-padding-H3)));
@@ -2417,7 +2361,7 @@
2417
2361
  text-decoration-thickness: var(--xmlui-textDecorationThickness-H3);
2418
2362
  text-underline-offset: var(--xmlui-textUnderlineOffset-H3);
2419
2363
  }
2420
- ._heading_1ad65_13._h4_1ad65_202 {
2364
+ ._heading_qi2wo_13._h4_qi2wo_202 {
2421
2365
  padding: var(--xmlui-padding-H4);
2422
2366
  padding-left: var(--xmlui-paddingLeft-H4, var(--xmlui-paddingHorizontal-H4, var(--xmlui-padding-H4)));
2423
2367
  padding-right: var(--xmlui-paddingRight-H4, var(--xmlui-paddingHorizontal-H4, var(--xmlui-padding-H4)));
@@ -2480,7 +2424,7 @@
2480
2424
  text-decoration-thickness: var(--xmlui-textDecorationThickness-H4);
2481
2425
  text-underline-offset: var(--xmlui-textUnderlineOffset-H4);
2482
2426
  }
2483
- ._heading_1ad65_13._h5_1ad65_265 {
2427
+ ._heading_qi2wo_13._h5_qi2wo_265 {
2484
2428
  padding: var(--xmlui-padding-H5);
2485
2429
  padding-left: var(--xmlui-paddingLeft-H5, var(--xmlui-paddingHorizontal-H5, var(--xmlui-padding-H5)));
2486
2430
  padding-right: var(--xmlui-paddingRight-H5, var(--xmlui-paddingHorizontal-H5, var(--xmlui-padding-H5)));
@@ -2543,7 +2487,7 @@
2543
2487
  text-decoration-thickness: var(--xmlui-textDecorationThickness-H5);
2544
2488
  text-underline-offset: var(--xmlui-textUnderlineOffset-H5);
2545
2489
  }
2546
- ._heading_1ad65_13._h6_1ad65_328 {
2490
+ ._heading_qi2wo_13._h6_qi2wo_328 {
2547
2491
  padding: var(--xmlui-padding-H6);
2548
2492
  padding-left: var(--xmlui-paddingLeft-H6, var(--xmlui-paddingHorizontal-H6, var(--xmlui-padding-H6)));
2549
2493
  padding-right: var(--xmlui-paddingRight-H6, var(--xmlui-paddingHorizontal-H6, var(--xmlui-padding-H6)));
@@ -2607,21 +2551,28 @@
2607
2551
  text-underline-offset: var(--xmlui-textUnderlineOffset-H6);
2608
2552
  }
2609
2553
 
2554
+ ._anchorRef_qi2wo_392 {
2555
+ --my-scroll-margin-top: var(--header-height);
2556
+ width: 0;
2557
+ height: 0;
2558
+ scroll-margin-top: var(--my-scroll-margin-top);
2559
+ }
2560
+
2610
2561
  /*
2611
2562
  This is a Chromium based solution that is supported by most modern browsers.
2612
2563
  See this source for details: https://css-tricks.com/line-clampin/
2613
2564
  */
2614
- ._truncateOverflow_1ad65_396 {
2565
+ ._truncateOverflow_qi2wo_403 {
2615
2566
  overflow: hidden;
2616
2567
  text-overflow: ellipsis;
2617
2568
  white-space: nowrap;
2618
2569
  }
2619
2570
 
2620
- ._preserveLinebreaks_1ad65_402 {
2571
+ ._preserveLinebreaks_qi2wo_409 {
2621
2572
  white-space: pre-wrap;
2622
2573
  }
2623
2574
 
2624
- ._noEllipsis_1ad65_406 {
2575
+ ._noEllipsis_qi2wo_413 {
2625
2576
  text-overflow: clip;
2626
2577
  }/*
2627
2578
  * This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
@@ -2635,7 +2586,7 @@ See this source for details: https://css-tricks.com/line-clampin/
2635
2586
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
2636
2587
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
2637
2588
  */
2638
- ._text_wtc9w_13 {
2589
+ ._text_xzkxl_13 {
2639
2590
  overflow: hidden;
2640
2591
  text-overflow: ellipsis;
2641
2592
  margin: 0;
@@ -2693,9 +2644,11 @@ See this source for details: https://css-tricks.com/line-clampin/
2693
2644
  line-break: var(--xmlui-lineBreak-Text-default);
2694
2645
  margin-top: var(--xmlui-marginTop-Text-default);
2695
2646
  margin-bottom: var(--xmlui-marginBottom-Text-default);
2647
+ margin-left: var(--xmlui-marginLeft-Text-default);
2648
+ margin-right: var(--xmlui-marginRight-Text-default);
2696
2649
  vertical-align: var(--xmlui-verticalAlign-Text-default);
2697
2650
  }
2698
- ._text_wtc9w_13._markdown_wtc9w_73 {
2651
+ ._text_xzkxl_13._markdown_xzkxl_75 {
2699
2652
  padding: var(--xmlui-padding-Text-markdown);
2700
2653
  padding-left: var(--xmlui-paddingLeft-Text-markdown, var(--xmlui-paddingHorizontal-Text-markdown, var(--xmlui-padding-Text-markdown)));
2701
2654
  padding-right: var(--xmlui-paddingRight-Text-markdown, var(--xmlui-paddingHorizontal-Text-markdown, var(--xmlui-padding-Text-markdown)));
@@ -2748,12 +2701,11 @@ See this source for details: https://css-tricks.com/line-clampin/
2748
2701
  line-break: var(--xmlui-lineBreak-Text-markdown);
2749
2702
  margin-top: var(--xmlui-marginTop-Text-markdown);
2750
2703
  margin-bottom: var(--xmlui-marginBottom-Text-markdown);
2704
+ margin-left: var(--xmlui-marginLeft-Text-markdown);
2705
+ margin-right: var(--xmlui-marginRight-Text-markdown);
2751
2706
  vertical-align: var(--xmlui-verticalAlign-Text-markdown);
2752
2707
  }
2753
- ._text_wtc9w_13 ._text_wtc9w_13 {
2754
- display: inline;
2755
- }
2756
- ._text_wtc9w_13._abbr_wtc9w_131 {
2708
+ ._text_xzkxl_13._abbr_xzkxl_132 {
2757
2709
  padding: var(--xmlui-padding-Text-abbr);
2758
2710
  padding-left: var(--xmlui-paddingLeft-Text-abbr, var(--xmlui-paddingHorizontal-Text-abbr, var(--xmlui-padding-Text-abbr)));
2759
2711
  padding-right: var(--xmlui-paddingRight-Text-abbr, var(--xmlui-paddingHorizontal-Text-abbr, var(--xmlui-padding-Text-abbr)));
@@ -2806,9 +2758,11 @@ See this source for details: https://css-tricks.com/line-clampin/
2806
2758
  line-break: var(--xmlui-lineBreak-Text-abbr);
2807
2759
  margin-top: var(--xmlui-marginTop-Text-abbr);
2808
2760
  margin-bottom: var(--xmlui-marginBottom-Text-abbr);
2761
+ margin-left: var(--xmlui-marginLeft-Text-abbr);
2762
+ margin-right: var(--xmlui-marginRight-Text-abbr);
2809
2763
  vertical-align: var(--xmlui-verticalAlign-Text-abbr);
2810
2764
  }
2811
- ._text_wtc9w_13._cite_wtc9w_186 {
2765
+ ._text_xzkxl_13._cite_xzkxl_189 {
2812
2766
  padding: var(--xmlui-padding-Text-cite);
2813
2767
  padding-left: var(--xmlui-paddingLeft-Text-cite, var(--xmlui-paddingHorizontal-Text-cite, var(--xmlui-padding-Text-cite)));
2814
2768
  padding-right: var(--xmlui-paddingRight-Text-cite, var(--xmlui-paddingHorizontal-Text-cite, var(--xmlui-padding-Text-cite)));
@@ -2861,12 +2815,16 @@ See this source for details: https://css-tricks.com/line-clampin/
2861
2815
  line-break: var(--xmlui-lineBreak-Text-cite);
2862
2816
  margin-top: var(--xmlui-marginTop-Text-cite);
2863
2817
  margin-bottom: var(--xmlui-marginBottom-Text-cite);
2818
+ margin-left: var(--xmlui-marginLeft-Text-cite);
2819
+ margin-right: var(--xmlui-marginRight-Text-cite);
2864
2820
  vertical-align: var(--xmlui-verticalAlign-Text-cite);
2865
2821
  }
2866
- ._text_wtc9w_13 ._text_wtc9w_13._codefence_wtc9w_241 {
2822
+ ._text_xzkxl_13 ._text_xzkxl_13._codefence_xzkxl_246 {
2867
2823
  display: block;
2824
+ margin-top: var(--xmlui-marginTop-Text-codefence);
2825
+ margin-bottom: var(--xmlui-marginBottom-Text-codefence);
2868
2826
  }
2869
- :not(._text_wtc9w_13._codefence_wtc9w_241) > ._text_wtc9w_13._code_wtc9w_241 {
2827
+ :not(._text_xzkxl_13._codefence_xzkxl_246) > ._text_xzkxl_13._code_xzkxl_246, :not(._text_xzkxl_13._codefence_xzkxl_246) > ._textcode_xzkxl_251 {
2870
2828
  padding: var(--xmlui-padding-Text-code);
2871
2829
  padding-left: var(--xmlui-paddingLeft-Text-code, var(--xmlui-paddingHorizontal-Text-code, var(--xmlui-padding-Text-code)));
2872
2830
  padding-right: var(--xmlui-paddingRight-Text-code, var(--xmlui-paddingHorizontal-Text-code, var(--xmlui-padding-Text-code)));
@@ -2919,9 +2877,11 @@ See this source for details: https://css-tricks.com/line-clampin/
2919
2877
  line-break: var(--xmlui-lineBreak-Text-code);
2920
2878
  margin-top: var(--xmlui-marginTop-Text-code);
2921
2879
  margin-bottom: var(--xmlui-marginBottom-Text-code);
2880
+ margin-left: var(--xmlui-marginLeft-Text-code);
2881
+ margin-right: var(--xmlui-marginRight-Text-code);
2922
2882
  vertical-align: var(--xmlui-verticalAlign-Text-code);
2923
2883
  }
2924
- ._text_wtc9w_13._codefence_wtc9w_241:has(> ._text_wtc9w_13._code_wtc9w_241) {
2884
+ ._text_xzkxl_13._codefence_xzkxl_246:has(> ._text_xzkxl_13._code_xzkxl_246), ._text_xzkxl_13._codefence_xzkxl_246:has(> code) {
2925
2885
  padding: var(--xmlui-padding-Text-codefence);
2926
2886
  padding-left: var(--xmlui-paddingLeft-Text-codefence, var(--xmlui-paddingHorizontal-Text-codefence, var(--xmlui-padding-Text-codefence)));
2927
2887
  padding-right: var(--xmlui-paddingRight-Text-codefence, var(--xmlui-paddingHorizontal-Text-codefence, var(--xmlui-padding-Text-codefence)));
@@ -2974,11 +2934,46 @@ See this source for details: https://css-tricks.com/line-clampin/
2974
2934
  line-break: var(--xmlui-lineBreak-Text-codefence);
2975
2935
  margin-top: var(--xmlui-marginTop-Text-codefence);
2976
2936
  margin-bottom: var(--xmlui-marginBottom-Text-codefence);
2937
+ margin-left: var(--xmlui-marginLeft-Text-codefence);
2938
+ margin-right: var(--xmlui-marginRight-Text-codefence);
2977
2939
  vertical-align: var(--xmlui-verticalAlign-Text-codefence);
2978
2940
  overflow-x: auto;
2979
2941
  text-overflow: initial;
2942
+ font-size: var(--xmlui-fontSize-small);
2943
+ line-height: 1.4;
2944
+ }
2945
+ ._text_xzkxl_13._codefence_xzkxl_246:has(> code > span) {
2946
+ padding-inline: 0;
2947
+ }
2948
+ ._text_xzkxl_13._codefence_xzkxl_246 > code > span:not([class*=numbered]) {
2949
+ padding-inline: var(--xmlui-space-3);
2950
+ }
2951
+ ._text_xzkxl_13._codefence_xzkxl_246 > code {
2952
+ white-space: pre-wrap;
2953
+ display: inline-block;
2954
+ width: 100%;
2980
2955
  }
2981
- ._text_wtc9w_13._deleted_wtc9w_356 {
2956
+ ._text_xzkxl_13._codefence_xzkxl_246 > code::before {
2957
+ counter-reset: listing;
2958
+ }
2959
+ ._text_xzkxl_13._codefence_xzkxl_246 > code > span {
2960
+ display: inline-block;
2961
+ width: 100%;
2962
+ }
2963
+ ._text_xzkxl_13._codefence_xzkxl_246 > code > span[class*=numbered] {
2964
+ counter-increment: listing;
2965
+ }
2966
+ ._text_xzkxl_13._codefence_xzkxl_246 > code > span[class*=numbered]::before {
2967
+ content: counter(listing);
2968
+ display: inline-block;
2969
+ width: var(--xmlui-space-12);
2970
+ padding-left: auto;
2971
+ padding-right: var(--xmlui-space-5);
2972
+ margin-left: auto;
2973
+ text-align: right;
2974
+ color: var(--xmlui-textColor-secondary);
2975
+ }
2976
+ ._text_xzkxl_13._deleted_xzkxl_400 {
2982
2977
  padding: var(--xmlui-padding-Text-deleted);
2983
2978
  padding-left: var(--xmlui-paddingLeft-Text-deleted, var(--xmlui-paddingHorizontal-Text-deleted, var(--xmlui-padding-Text-deleted)));
2984
2979
  padding-right: var(--xmlui-paddingRight-Text-deleted, var(--xmlui-paddingHorizontal-Text-deleted, var(--xmlui-padding-Text-deleted)));
@@ -3031,9 +3026,11 @@ See this source for details: https://css-tricks.com/line-clampin/
3031
3026
  line-break: var(--xmlui-lineBreak-Text-deleted);
3032
3027
  margin-top: var(--xmlui-marginTop-Text-deleted);
3033
3028
  margin-bottom: var(--xmlui-marginBottom-Text-deleted);
3029
+ margin-left: var(--xmlui-marginLeft-Text-deleted);
3030
+ margin-right: var(--xmlui-marginRight-Text-deleted);
3034
3031
  vertical-align: var(--xmlui-verticalAlign-Text-deleted);
3035
3032
  }
3036
- ._text_wtc9w_13._deleted_wtc9w_356::before, ._text_wtc9w_13._deleted_wtc9w_356::after {
3033
+ ._text_xzkxl_13._deleted_xzkxl_400::before, ._text_xzkxl_13._deleted_xzkxl_400::after {
3037
3034
  clip-path: inset(100%);
3038
3035
  clip: rect(1px, 1px, 1px, 1px);
3039
3036
  height: 1px;
@@ -3042,13 +3039,13 @@ See this source for details: https://css-tricks.com/line-clampin/
3042
3039
  white-space: nowrap;
3043
3040
  width: 1px;
3044
3041
  }
3045
- ._text_wtc9w_13._deleted_wtc9w_356::before {
3042
+ ._text_xzkxl_13._deleted_xzkxl_400::before {
3046
3043
  content: " [deletion start] ";
3047
3044
  }
3048
- ._text_wtc9w_13._deleted_wtc9w_356::after {
3045
+ ._text_xzkxl_13._deleted_xzkxl_400::after {
3049
3046
  content: " [deletion end] ";
3050
3047
  }
3051
- ._text_wtc9w_13._inserted_wtc9w_426 {
3048
+ ._text_xzkxl_13._inserted_xzkxl_472 {
3052
3049
  padding: var(--xmlui-padding-Text-inserted);
3053
3050
  padding-left: var(--xmlui-paddingLeft-Text-inserted, var(--xmlui-paddingHorizontal-Text-inserted, var(--xmlui-padding-Text-inserted)));
3054
3051
  padding-right: var(--xmlui-paddingRight-Text-inserted, var(--xmlui-paddingHorizontal-Text-inserted, var(--xmlui-padding-Text-inserted)));
@@ -3101,9 +3098,11 @@ See this source for details: https://css-tricks.com/line-clampin/
3101
3098
  line-break: var(--xmlui-lineBreak-Text-inserted);
3102
3099
  margin-top: var(--xmlui-marginTop-Text-inserted);
3103
3100
  margin-bottom: var(--xmlui-marginBottom-Text-inserted);
3101
+ margin-left: var(--xmlui-marginLeft-Text-inserted);
3102
+ margin-right: var(--xmlui-marginRight-Text-inserted);
3104
3103
  vertical-align: var(--xmlui-verticalAlign-Text-inserted);
3105
3104
  }
3106
- ._text_wtc9w_13._inserted_wtc9w_426::before, ._text_wtc9w_13._inserted_wtc9w_426::after {
3105
+ ._text_xzkxl_13._inserted_xzkxl_472::before, ._text_xzkxl_13._inserted_xzkxl_472::after {
3107
3106
  clip-path: inset(100%);
3108
3107
  clip: rect(1px, 1px, 1px, 1px);
3109
3108
  height: 1px;
@@ -3112,13 +3111,13 @@ See this source for details: https://css-tricks.com/line-clampin/
3112
3111
  white-space: nowrap;
3113
3112
  width: 1px;
3114
3113
  }
3115
- ._text_wtc9w_13._inserted_wtc9w_426::before {
3114
+ ._text_xzkxl_13._inserted_xzkxl_472::before {
3116
3115
  content: " [insertion start] ";
3117
3116
  }
3118
- ._text_wtc9w_13._inserted_wtc9w_426::after {
3117
+ ._text_xzkxl_13._inserted_xzkxl_472::after {
3119
3118
  content: " [insertion end] ";
3120
3119
  }
3121
- ._text_wtc9w_13._keyboard_wtc9w_496 {
3120
+ ._text_xzkxl_13._keyboard_xzkxl_544 {
3122
3121
  padding: var(--xmlui-padding-Text-keyboard);
3123
3122
  padding-left: var(--xmlui-paddingLeft-Text-keyboard, var(--xmlui-paddingHorizontal-Text-keyboard, var(--xmlui-padding-Text-keyboard)));
3124
3123
  padding-right: var(--xmlui-paddingRight-Text-keyboard, var(--xmlui-paddingHorizontal-Text-keyboard, var(--xmlui-padding-Text-keyboard)));
@@ -3171,9 +3170,11 @@ See this source for details: https://css-tricks.com/line-clampin/
3171
3170
  line-break: var(--xmlui-lineBreak-Text-keyboard);
3172
3171
  margin-top: var(--xmlui-marginTop-Text-keyboard);
3173
3172
  margin-bottom: var(--xmlui-marginBottom-Text-keyboard);
3173
+ margin-left: var(--xmlui-marginLeft-Text-keyboard);
3174
+ margin-right: var(--xmlui-marginRight-Text-keyboard);
3174
3175
  vertical-align: var(--xmlui-verticalAlign-Text-keyboard);
3175
3176
  }
3176
- ._text_wtc9w_13._marked_wtc9w_551 {
3177
+ ._text_xzkxl_13._marked_xzkxl_601 {
3177
3178
  padding: var(--xmlui-padding-Text-marked);
3178
3179
  padding-left: var(--xmlui-paddingLeft-Text-marked, var(--xmlui-paddingHorizontal-Text-marked, var(--xmlui-padding-Text-marked)));
3179
3180
  padding-right: var(--xmlui-paddingRight-Text-marked, var(--xmlui-paddingHorizontal-Text-marked, var(--xmlui-padding-Text-marked)));
@@ -3226,9 +3227,11 @@ See this source for details: https://css-tricks.com/line-clampin/
3226
3227
  line-break: var(--xmlui-lineBreak-Text-marked);
3227
3228
  margin-top: var(--xmlui-marginTop-Text-marked);
3228
3229
  margin-bottom: var(--xmlui-marginBottom-Text-marked);
3230
+ margin-left: var(--xmlui-marginLeft-Text-marked);
3231
+ margin-right: var(--xmlui-marginRight-Text-marked);
3229
3232
  vertical-align: var(--xmlui-verticalAlign-Text-marked);
3230
3233
  }
3231
- ._text_wtc9w_13._marked_wtc9w_551::before, ._text_wtc9w_13._marked_wtc9w_551::after {
3234
+ ._text_xzkxl_13._marked_xzkxl_601::before, ._text_xzkxl_13._marked_xzkxl_601::after {
3232
3235
  clip-path: inset(100%);
3233
3236
  clip: rect(1px, 1px, 1px, 1px);
3234
3237
  height: 1px;
@@ -3237,13 +3240,13 @@ See this source for details: https://css-tricks.com/line-clampin/
3237
3240
  white-space: nowrap;
3238
3241
  width: 1px;
3239
3242
  }
3240
- ._text_wtc9w_13._marked_wtc9w_551::before {
3243
+ ._text_xzkxl_13._marked_xzkxl_601::before {
3241
3244
  content: " [highlight start] ";
3242
3245
  }
3243
- ._text_wtc9w_13._marked_wtc9w_551::after {
3246
+ ._text_xzkxl_13._marked_xzkxl_601::after {
3244
3247
  content: " [highlight end] ";
3245
3248
  }
3246
- ._text_wtc9w_13._mono_wtc9w_621 {
3249
+ ._text_xzkxl_13._mono_xzkxl_673 {
3247
3250
  padding: var(--xmlui-padding-Text-mono);
3248
3251
  padding-left: var(--xmlui-paddingLeft-Text-mono, var(--xmlui-paddingHorizontal-Text-mono, var(--xmlui-padding-Text-mono)));
3249
3252
  padding-right: var(--xmlui-paddingRight-Text-mono, var(--xmlui-paddingHorizontal-Text-mono, var(--xmlui-padding-Text-mono)));
@@ -3296,9 +3299,11 @@ See this source for details: https://css-tricks.com/line-clampin/
3296
3299
  line-break: var(--xmlui-lineBreak-Text-mono);
3297
3300
  margin-top: var(--xmlui-marginTop-Text-mono);
3298
3301
  margin-bottom: var(--xmlui-marginBottom-Text-mono);
3302
+ margin-left: var(--xmlui-marginLeft-Text-mono);
3303
+ margin-right: var(--xmlui-marginRight-Text-mono);
3299
3304
  vertical-align: var(--xmlui-verticalAlign-Text-mono);
3300
3305
  }
3301
- ._text_wtc9w_13._sample_wtc9w_676 {
3306
+ ._text_xzkxl_13._sample_xzkxl_730 {
3302
3307
  padding: var(--xmlui-padding-Text-sample);
3303
3308
  padding-left: var(--xmlui-paddingLeft-Text-sample, var(--xmlui-paddingHorizontal-Text-sample, var(--xmlui-padding-Text-sample)));
3304
3309
  padding-right: var(--xmlui-paddingRight-Text-sample, var(--xmlui-paddingHorizontal-Text-sample, var(--xmlui-padding-Text-sample)));
@@ -3351,9 +3356,11 @@ See this source for details: https://css-tricks.com/line-clampin/
3351
3356
  line-break: var(--xmlui-lineBreak-Text-sample);
3352
3357
  margin-top: var(--xmlui-marginTop-Text-sample);
3353
3358
  margin-bottom: var(--xmlui-marginBottom-Text-sample);
3359
+ margin-left: var(--xmlui-marginLeft-Text-sample);
3360
+ margin-right: var(--xmlui-marginRight-Text-sample);
3354
3361
  vertical-align: var(--xmlui-verticalAlign-Text-sample);
3355
3362
  }
3356
- ._text_wtc9w_13._sup_wtc9w_731 {
3363
+ ._text_xzkxl_13._sup_xzkxl_787 {
3357
3364
  padding: var(--xmlui-padding-Text-sup);
3358
3365
  padding-left: var(--xmlui-paddingLeft-Text-sup, var(--xmlui-paddingHorizontal-Text-sup, var(--xmlui-padding-Text-sup)));
3359
3366
  padding-right: var(--xmlui-paddingRight-Text-sup, var(--xmlui-paddingHorizontal-Text-sup, var(--xmlui-padding-Text-sup)));
@@ -3406,9 +3413,11 @@ See this source for details: https://css-tricks.com/line-clampin/
3406
3413
  line-break: var(--xmlui-lineBreak-Text-sup);
3407
3414
  margin-top: var(--xmlui-marginTop-Text-sup);
3408
3415
  margin-bottom: var(--xmlui-marginBottom-Text-sup);
3416
+ margin-left: var(--xmlui-marginLeft-Text-sup);
3417
+ margin-right: var(--xmlui-marginRight-Text-sup);
3409
3418
  vertical-align: var(--xmlui-verticalAlign-Text-sup);
3410
3419
  }
3411
- ._text_wtc9w_13._sub_wtc9w_786 {
3420
+ ._text_xzkxl_13._sub_xzkxl_844 {
3412
3421
  padding: var(--xmlui-padding-Text-sub);
3413
3422
  padding-left: var(--xmlui-paddingLeft-Text-sub, var(--xmlui-paddingHorizontal-Text-sub, var(--xmlui-padding-Text-sub)));
3414
3423
  padding-right: var(--xmlui-paddingRight-Text-sub, var(--xmlui-paddingHorizontal-Text-sub, var(--xmlui-padding-Text-sub)));
@@ -3461,9 +3470,11 @@ See this source for details: https://css-tricks.com/line-clampin/
3461
3470
  line-break: var(--xmlui-lineBreak-Text-sub);
3462
3471
  margin-top: var(--xmlui-marginTop-Text-sub);
3463
3472
  margin-bottom: var(--xmlui-marginBottom-Text-sub);
3473
+ margin-left: var(--xmlui-marginLeft-Text-sub);
3474
+ margin-right: var(--xmlui-marginRight-Text-sub);
3464
3475
  vertical-align: var(--xmlui-verticalAlign-Text-sub);
3465
3476
  }
3466
- ._text_wtc9w_13._var_wtc9w_841 {
3477
+ ._text_xzkxl_13._var_xzkxl_901 {
3467
3478
  padding: var(--xmlui-padding-Text-var);
3468
3479
  padding-left: var(--xmlui-paddingLeft-Text-var, var(--xmlui-paddingHorizontal-Text-var, var(--xmlui-padding-Text-var)));
3469
3480
  padding-right: var(--xmlui-paddingRight-Text-var, var(--xmlui-paddingHorizontal-Text-var, var(--xmlui-padding-Text-var)));
@@ -3516,9 +3527,11 @@ See this source for details: https://css-tricks.com/line-clampin/
3516
3527
  line-break: var(--xmlui-lineBreak-Text-var);
3517
3528
  margin-top: var(--xmlui-marginTop-Text-var);
3518
3529
  margin-bottom: var(--xmlui-marginBottom-Text-var);
3530
+ margin-left: var(--xmlui-marginLeft-Text-var);
3531
+ margin-right: var(--xmlui-marginRight-Text-var);
3519
3532
  vertical-align: var(--xmlui-verticalAlign-Text-var);
3520
3533
  }
3521
- ._text_wtc9w_13._title_wtc9w_896 {
3534
+ ._text_xzkxl_13._title_xzkxl_958 {
3522
3535
  padding: var(--xmlui-padding-Text-title);
3523
3536
  padding-left: var(--xmlui-paddingLeft-Text-title, var(--xmlui-paddingHorizontal-Text-title, var(--xmlui-padding-Text-title)));
3524
3537
  padding-right: var(--xmlui-paddingRight-Text-title, var(--xmlui-paddingHorizontal-Text-title, var(--xmlui-padding-Text-title)));
@@ -3571,9 +3584,11 @@ See this source for details: https://css-tricks.com/line-clampin/
3571
3584
  line-break: var(--xmlui-lineBreak-Text-title);
3572
3585
  margin-top: var(--xmlui-marginTop-Text-title);
3573
3586
  margin-bottom: var(--xmlui-marginBottom-Text-title);
3587
+ margin-left: var(--xmlui-marginLeft-Text-title);
3588
+ margin-right: var(--xmlui-marginRight-Text-title);
3574
3589
  vertical-align: var(--xmlui-verticalAlign-Text-title);
3575
3590
  }
3576
- ._text_wtc9w_13._subtitle_wtc9w_951 {
3591
+ ._text_xzkxl_13._subtitle_xzkxl_1015 {
3577
3592
  padding: var(--xmlui-padding-Text-subtitle);
3578
3593
  padding-left: var(--xmlui-paddingLeft-Text-subtitle, var(--xmlui-paddingHorizontal-Text-subtitle, var(--xmlui-padding-Text-subtitle)));
3579
3594
  padding-right: var(--xmlui-paddingRight-Text-subtitle, var(--xmlui-paddingHorizontal-Text-subtitle, var(--xmlui-padding-Text-subtitle)));
@@ -3626,9 +3641,11 @@ See this source for details: https://css-tricks.com/line-clampin/
3626
3641
  line-break: var(--xmlui-lineBreak-Text-subtitle);
3627
3642
  margin-top: var(--xmlui-marginTop-Text-subtitle);
3628
3643
  margin-bottom: var(--xmlui-marginBottom-Text-subtitle);
3644
+ margin-left: var(--xmlui-marginLeft-Text-subtitle);
3645
+ margin-right: var(--xmlui-marginRight-Text-subtitle);
3629
3646
  vertical-align: var(--xmlui-verticalAlign-Text-subtitle);
3630
3647
  }
3631
- ._text_wtc9w_13._small_wtc9w_1006 {
3648
+ ._text_xzkxl_13._small_xzkxl_1072 {
3632
3649
  padding: var(--xmlui-padding-Text-small);
3633
3650
  padding-left: var(--xmlui-paddingLeft-Text-small, var(--xmlui-paddingHorizontal-Text-small, var(--xmlui-padding-Text-small)));
3634
3651
  padding-right: var(--xmlui-paddingRight-Text-small, var(--xmlui-paddingHorizontal-Text-small, var(--xmlui-padding-Text-small)));
@@ -3681,9 +3698,11 @@ See this source for details: https://css-tricks.com/line-clampin/
3681
3698
  line-break: var(--xmlui-lineBreak-Text-small);
3682
3699
  margin-top: var(--xmlui-marginTop-Text-small);
3683
3700
  margin-bottom: var(--xmlui-marginBottom-Text-small);
3701
+ margin-left: var(--xmlui-marginLeft-Text-small);
3702
+ margin-right: var(--xmlui-marginRight-Text-small);
3684
3703
  vertical-align: var(--xmlui-verticalAlign-Text-small);
3685
3704
  }
3686
- ._text_wtc9w_13._caption_wtc9w_1061 {
3705
+ ._text_xzkxl_13._caption_xzkxl_1129 {
3687
3706
  padding: var(--xmlui-padding-Text-caption);
3688
3707
  padding-left: var(--xmlui-paddingLeft-Text-caption, var(--xmlui-paddingHorizontal-Text-caption, var(--xmlui-padding-Text-caption)));
3689
3708
  padding-right: var(--xmlui-paddingRight-Text-caption, var(--xmlui-paddingHorizontal-Text-caption, var(--xmlui-padding-Text-caption)));
@@ -3736,9 +3755,11 @@ See this source for details: https://css-tricks.com/line-clampin/
3736
3755
  line-break: var(--xmlui-lineBreak-Text-caption);
3737
3756
  margin-top: var(--xmlui-marginTop-Text-caption);
3738
3757
  margin-bottom: var(--xmlui-marginBottom-Text-caption);
3758
+ margin-left: var(--xmlui-marginLeft-Text-caption);
3759
+ margin-right: var(--xmlui-marginRight-Text-caption);
3739
3760
  vertical-align: var(--xmlui-verticalAlign-Text-caption);
3740
3761
  }
3741
- ._text_wtc9w_13._placeholder_wtc9w_1116 {
3762
+ ._text_xzkxl_13._placeholder_xzkxl_1186 {
3742
3763
  padding: var(--xmlui-padding-Text-placeholder);
3743
3764
  padding-left: var(--xmlui-paddingLeft-Text-placeholder, var(--xmlui-paddingHorizontal-Text-placeholder, var(--xmlui-padding-Text-placeholder)));
3744
3765
  padding-right: var(--xmlui-paddingRight-Text-placeholder, var(--xmlui-paddingHorizontal-Text-placeholder, var(--xmlui-padding-Text-placeholder)));
@@ -3791,9 +3812,11 @@ See this source for details: https://css-tricks.com/line-clampin/
3791
3812
  line-break: var(--xmlui-lineBreak-Text-placeholder);
3792
3813
  margin-top: var(--xmlui-marginTop-Text-placeholder);
3793
3814
  margin-bottom: var(--xmlui-marginBottom-Text-placeholder);
3815
+ margin-left: var(--xmlui-marginLeft-Text-placeholder);
3816
+ margin-right: var(--xmlui-marginRight-Text-placeholder);
3794
3817
  vertical-align: var(--xmlui-verticalAlign-Text-placeholder);
3795
3818
  }
3796
- ._text_wtc9w_13._paragraph_wtc9w_1171 {
3819
+ ._text_xzkxl_13._paragraph_xzkxl_1243 {
3797
3820
  padding: var(--xmlui-padding-Text-paragraph);
3798
3821
  padding-left: var(--xmlui-paddingLeft-Text-paragraph, var(--xmlui-paddingHorizontal-Text-paragraph, var(--xmlui-padding-Text-paragraph)));
3799
3822
  padding-right: var(--xmlui-paddingRight-Text-paragraph, var(--xmlui-paddingHorizontal-Text-paragraph, var(--xmlui-padding-Text-paragraph)));
@@ -3846,9 +3869,11 @@ See this source for details: https://css-tricks.com/line-clampin/
3846
3869
  line-break: var(--xmlui-lineBreak-Text-paragraph);
3847
3870
  margin-top: var(--xmlui-marginTop-Text-paragraph);
3848
3871
  margin-bottom: var(--xmlui-marginBottom-Text-paragraph);
3872
+ margin-left: var(--xmlui-marginLeft-Text-paragraph);
3873
+ margin-right: var(--xmlui-marginRight-Text-paragraph);
3849
3874
  vertical-align: var(--xmlui-verticalAlign-Text-paragraph);
3850
3875
  }
3851
- ._text_wtc9w_13._subheading_wtc9w_1226 {
3876
+ ._text_xzkxl_13._subheading_xzkxl_1300 {
3852
3877
  padding: var(--xmlui-padding-Text-subheading);
3853
3878
  padding-left: var(--xmlui-paddingLeft-Text-subheading, var(--xmlui-paddingHorizontal-Text-subheading, var(--xmlui-padding-Text-subheading)));
3854
3879
  padding-right: var(--xmlui-paddingRight-Text-subheading, var(--xmlui-paddingHorizontal-Text-subheading, var(--xmlui-padding-Text-subheading)));
@@ -3901,9 +3926,11 @@ See this source for details: https://css-tricks.com/line-clampin/
3901
3926
  line-break: var(--xmlui-lineBreak-Text-subheading);
3902
3927
  margin-top: var(--xmlui-marginTop-Text-subheading);
3903
3928
  margin-bottom: var(--xmlui-marginBottom-Text-subheading);
3929
+ margin-left: var(--xmlui-marginLeft-Text-subheading);
3930
+ margin-right: var(--xmlui-marginRight-Text-subheading);
3904
3931
  vertical-align: var(--xmlui-verticalAlign-Text-subheading);
3905
3932
  }
3906
- ._text_wtc9w_13._tableheading_wtc9w_1281 {
3933
+ ._text_xzkxl_13._tableheading_xzkxl_1357 {
3907
3934
  padding: var(--xmlui-padding-Text-tableheading);
3908
3935
  padding-left: var(--xmlui-paddingLeft-Text-tableheading, var(--xmlui-paddingHorizontal-Text-tableheading, var(--xmlui-padding-Text-tableheading)));
3909
3936
  padding-right: var(--xmlui-paddingRight-Text-tableheading, var(--xmlui-paddingHorizontal-Text-tableheading, var(--xmlui-padding-Text-tableheading)));
@@ -3956,9 +3983,11 @@ See this source for details: https://css-tricks.com/line-clampin/
3956
3983
  line-break: var(--xmlui-lineBreak-Text-tableheading);
3957
3984
  margin-top: var(--xmlui-marginTop-Text-tableheading);
3958
3985
  margin-bottom: var(--xmlui-marginBottom-Text-tableheading);
3986
+ margin-left: var(--xmlui-marginLeft-Text-tableheading);
3987
+ margin-right: var(--xmlui-marginRight-Text-tableheading);
3959
3988
  vertical-align: var(--xmlui-verticalAlign-Text-tableheading);
3960
3989
  }
3961
- ._text_wtc9w_13._secondary_wtc9w_1336 {
3990
+ ._text_xzkxl_13._secondary_xzkxl_1414 {
3962
3991
  padding: var(--xmlui-padding-Text-secondary);
3963
3992
  padding-left: var(--xmlui-paddingLeft-Text-secondary, var(--xmlui-paddingHorizontal-Text-secondary, var(--xmlui-padding-Text-secondary)));
3964
3993
  padding-right: var(--xmlui-paddingRight-Text-secondary, var(--xmlui-paddingHorizontal-Text-secondary, var(--xmlui-padding-Text-secondary)));
@@ -4011,9 +4040,11 @@ See this source for details: https://css-tricks.com/line-clampin/
4011
4040
  line-break: var(--xmlui-lineBreak-Text-secondary);
4012
4041
  margin-top: var(--xmlui-marginTop-Text-secondary);
4013
4042
  margin-bottom: var(--xmlui-marginBottom-Text-secondary);
4043
+ margin-left: var(--xmlui-marginLeft-Text-secondary);
4044
+ margin-right: var(--xmlui-marginRight-Text-secondary);
4014
4045
  vertical-align: var(--xmlui-verticalAlign-Text-secondary);
4015
4046
  }
4016
- ._text_wtc9w_13._strong_wtc9w_1391 {
4047
+ ._text_xzkxl_13._strong_xzkxl_1471 {
4017
4048
  font-weight: var(--xmlui-fontWeight-bold);
4018
4049
  }
4019
4050
 
@@ -4021,18 +4052,18 @@ See this source for details: https://css-tricks.com/line-clampin/
4021
4052
  This is a Chromium based solution that is supported by most modern browsers.
4022
4053
  See this source for details: https://css-tricks.com/line-clampin/
4023
4054
  */
4024
- ._truncateOverflow_wtc9w_1399 {
4055
+ ._truncateOverflow_xzkxl_1479 {
4025
4056
  overflow: hidden;
4026
4057
  overflow-wrap: break-word;
4027
4058
  white-space: nowrap;
4028
4059
  max-width: 100%;
4029
4060
  }
4030
4061
 
4031
- ._preserveLinebreaks_wtc9w_1406 {
4062
+ ._preserveLinebreaks_xzkxl_1486 {
4032
4063
  white-space: pre-wrap;
4033
4064
  }
4034
4065
 
4035
- ._noEllipsis_wtc9w_1410 {
4066
+ ._noEllipsis_xzkxl_1490 {
4036
4067
  text-overflow: clip;
4037
4068
  }/*
4038
4069
  * This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
@@ -4337,7 +4368,7 @@ See this source for details: https://css-tricks.com/line-clampin/
4337
4368
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
4338
4369
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
4339
4370
  */
4340
- ._resetAppearance_m9kqa_13 {
4371
+ ._resetAppearance_ddph3_13 {
4341
4372
  /* Add if not using autoprefixer */
4342
4373
  -webkit-appearance: none;
4343
4374
  appearance: none;
@@ -4345,11 +4376,11 @@ See this source for details: https://css-tricks.com/line-clampin/
4345
4376
  margin: 0;
4346
4377
  }
4347
4378
 
4348
- ._label_m9kqa_21 {
4349
- width: fit-content;
4379
+ ._label_ddph3_21 {
4380
+ width: 100%;
4350
4381
  }
4351
4382
 
4352
- ._inputContainer_m9kqa_25 {
4383
+ ._inputContainer_ddph3_25 {
4353
4384
  z-index: -1;
4354
4385
  position: relative;
4355
4386
  opacity: 0;
@@ -4357,7 +4388,7 @@ See this source for details: https://css-tricks.com/line-clampin/
4357
4388
  height: 0;
4358
4389
  }
4359
4390
 
4360
- ._checkbox_m9kqa_33 {
4391
+ ._checkbox_ddph3_33 {
4361
4392
  display: grid;
4362
4393
  place-content: center;
4363
4394
  min-width: 1em;
@@ -4369,57 +4400,57 @@ See this source for details: https://css-tricks.com/line-clampin/
4369
4400
  border-color: var(--xmlui-borderColor-Checkbox-default);
4370
4401
  background-color: var(--xmlui-backgroundColor-Checkbox-default);
4371
4402
  }
4372
- ._checkbox_m9kqa_33:not([readonly]) {
4403
+ ._checkbox_ddph3_33:not([readonly]) {
4373
4404
  cursor: pointer;
4374
4405
  }
4375
- ._checkbox_m9kqa_33:focus-visible {
4406
+ ._checkbox_ddph3_33:focus-visible {
4376
4407
  outline-width: var(--xmlui-outlineWidth-Checkbox-default--focus);
4377
4408
  outline-color: var(--xmlui-outlineColor-Checkbox-default--focus);
4378
4409
  outline-style: var(--xmlui-outlineStyle-Checkbox-default--focus);
4379
4410
  outline-offset: var(--xmlui-outlineOffset-Checkbox-default--focus);
4380
4411
  }
4381
- ._checkbox_m9kqa_33:hover {
4412
+ ._checkbox_ddph3_33:hover {
4382
4413
  border-color: var(--xmlui-borderColor-Checkbox-default--hover);
4383
4414
  }
4384
- ._checkbox_m9kqa_33:disabled {
4415
+ ._checkbox_ddph3_33:disabled {
4385
4416
  cursor: not-allowed;
4386
4417
  background-color: var(--xmlui-backgroundColor-Checkbox--disabled);
4387
4418
  border-color: var(--xmlui-borderColor-Checkbox--disabled);
4388
4419
  }
4389
- ._checkbox_m9kqa_33._error_m9kqa_62 {
4420
+ ._checkbox_ddph3_33._error_ddph3_62 {
4390
4421
  border-radius: var(--xmlui-borderRadius-Checkbox-error);
4391
4422
  border-color: var(--xmlui-borderColor-Checkbox-error);
4392
4423
  background-color: var(--xmlui-backgroundColor-Checkbox-error);
4393
4424
  }
4394
- ._checkbox_m9kqa_33._error_m9kqa_62:focus-visible {
4425
+ ._checkbox_ddph3_33._error_ddph3_62:focus-visible {
4395
4426
  outline-width: var(--xmlui-outlineWidth-Checkbox-error--focus);
4396
4427
  outline-color: var(--xmlui-outlineColor-Checkbox-error--focus);
4397
4428
  outline-style: var(--xmlui-outlineStyle-Checkbox-error--focus);
4398
4429
  outline-offset: var(--xmlui-outlineOffset-Checkbox-error--focus);
4399
4430
  }
4400
- ._checkbox_m9kqa_33._warning_m9kqa_73 {
4431
+ ._checkbox_ddph3_33._warning_ddph3_73 {
4401
4432
  border-radius: var(--xmlui-borderRadius-Checkbox-warning);
4402
4433
  border-color: var(--xmlui-borderColor-Checkbox-warning);
4403
4434
  background-color: var(--xmlui-backgroundColor-Checkbox-warning);
4404
4435
  }
4405
- ._checkbox_m9kqa_33._warning_m9kqa_73:focus-visible {
4436
+ ._checkbox_ddph3_33._warning_ddph3_73:focus-visible {
4406
4437
  outline-width: var(--xmlui-outlineWidth-Checkbox-warning--focus);
4407
4438
  outline-color: var(--xmlui-outlineColor-Checkbox-warning--focus);
4408
4439
  outline-style: var(--xmlui-outlineStyle-Checkbox-warning--focus);
4409
4440
  outline-offset: var(--xmlui-outlineOffset-Checkbox-warning--focus);
4410
4441
  }
4411
- ._checkbox_m9kqa_33._valid_m9kqa_84 {
4442
+ ._checkbox_ddph3_33._valid_ddph3_84 {
4412
4443
  border-radius: var(--xmlui-borderRadius-Checkbox-success);
4413
4444
  border-color: var(--xmlui-borderColor-Checkbox-success);
4414
4445
  background-color: var(--xmlui-backgroundColor-Checkbox-success);
4415
4446
  }
4416
- ._checkbox_m9kqa_33._valid_m9kqa_84:focus-visible {
4447
+ ._checkbox_ddph3_33._valid_ddph3_84:focus-visible {
4417
4448
  outline-width: var(--xmlui-outlineWidth-Checkbox-success--focus);
4418
4449
  outline-color: var(--xmlui-outlineColor-Checkbox-success--focus);
4419
4450
  outline-style: var(--xmlui-outlineStyle-Checkbox-success--focus);
4420
4451
  outline-offset: var(--xmlui-outlineOffset-Checkbox-success--focus);
4421
4452
  }
4422
- ._checkbox_m9kqa_33::before {
4453
+ ._checkbox_ddph3_33::before {
4423
4454
  content: "";
4424
4455
  width: 0.5em;
4425
4456
  height: 0.5em;
@@ -4429,46 +4460,46 @@ See this source for details: https://css-tricks.com/line-clampin/
4429
4460
  transform-origin: center;
4430
4461
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
4431
4462
  }
4432
- ._checkbox_m9kqa_33:checked::before {
4463
+ ._checkbox_ddph3_33:checked::before {
4433
4464
  transform: scale(1);
4434
4465
  }
4435
- ._checkbox_m9kqa_33:checked {
4466
+ ._checkbox_ddph3_33:checked {
4436
4467
  border-color: var(--xmlui-borderColor-checked-Checkbox);
4437
4468
  background-color: var(--xmlui-backgroundColor-checked-Checkbox);
4438
4469
  }
4439
- ._checkbox_m9kqa_33:checked:disabled {
4470
+ ._checkbox_ddph3_33:checked:disabled {
4440
4471
  background-color: var(--xmlui-backgroundColor-Checkbox--disabled);
4441
4472
  border-color: var(--xmlui-borderColor-Checkbox--disabled);
4442
4473
  }
4443
- ._checkbox_m9kqa_33:checked._error_m9kqa_62 {
4474
+ ._checkbox_ddph3_33:checked._error_ddph3_62 {
4444
4475
  border-color: var(--xmlui-borderColor-checked-Checkbox-error);
4445
4476
  background-color: var(--xmlui-backgroundColor-checked-Checkbox-error);
4446
4477
  }
4447
- ._checkbox_m9kqa_33:checked._warning_m9kqa_73 {
4478
+ ._checkbox_ddph3_33:checked._warning_ddph3_73 {
4448
4479
  border-color: var(--xmlui-borderColor-checked-Checkbox-warning);
4449
4480
  background-color: var(--xmlui-backgroundColor-checked-Checkbox-warning);
4450
4481
  }
4451
- ._checkbox_m9kqa_33:checked._valid_m9kqa_84 {
4482
+ ._checkbox_ddph3_33:checked._valid_ddph3_84 {
4452
4483
  border-color: var(--xmlui-borderColor-checked-Checkbox-success);
4453
4484
  background-color: var(--xmlui-backgroundColor-checked-Checkbox-success);
4454
4485
  }
4455
- ._checkbox_m9kqa_33:indeterminate {
4486
+ ._checkbox_ddph3_33:indeterminate {
4456
4487
  background-color: var(--xmlui-backgroundColor-checked-Checkbox);
4457
4488
  border-color: var(--xmlui-borderColor-checked-Checkbox);
4458
4489
  }
4459
- ._checkbox_m9kqa_33:indeterminate[readonly] {
4490
+ ._checkbox_ddph3_33:indeterminate[readonly] {
4460
4491
  pointer-events: none;
4461
4492
  }
4462
- ._checkbox_m9kqa_33:indeterminate:disabled {
4493
+ ._checkbox_ddph3_33:indeterminate:disabled {
4463
4494
  background-color: var(--xmlui-backgroundColor-Checkbox--disabled);
4464
4495
  border-color: var(--xmlui-borderColor-Checkbox--disabled);
4465
4496
  }
4466
- ._checkbox_m9kqa_33:indeterminate::before {
4497
+ ._checkbox_ddph3_33:indeterminate::before {
4467
4498
  clip-path: circle(30% at 50% 50%);
4468
4499
  transform: scale(1);
4469
4500
  }
4470
4501
 
4471
- ._switch_m9kqa_144 {
4502
+ ._switch_ddph3_144 {
4472
4503
  border: 2px solid var(--xmlui-borderColor-Switch);
4473
4504
  width: 32px;
4474
4505
  height: 20px;
@@ -4478,24 +4509,24 @@ See this source for details: https://css-tricks.com/line-clampin/
4478
4509
  flex-shrink: 0;
4479
4510
  background-color: var(--xmlui-backgroundColor-Switch);
4480
4511
  }
4481
- ._switch_m9kqa_144:hover {
4512
+ ._switch_ddph3_144:hover {
4482
4513
  border-color: var(--xmlui-borderColor-Switch-default--hover);
4483
4514
  }
4484
- ._switch_m9kqa_144:disabled {
4515
+ ._switch_ddph3_144:disabled {
4485
4516
  cursor: not-allowed;
4486
4517
  background-color: var(--xmlui-backgroundColor-Switch--disabled);
4487
4518
  border-color: var(--xmlui-borderColor-Switch--disabled);
4488
4519
  }
4489
- ._switch_m9kqa_144._error_m9kqa_62 {
4520
+ ._switch_ddph3_144._error_ddph3_62 {
4490
4521
  border-color: var(--xmlui-borderColor-Switch-error);
4491
4522
  }
4492
- ._switch_m9kqa_144._warning_m9kqa_73 {
4523
+ ._switch_ddph3_144._warning_ddph3_73 {
4493
4524
  border-color: var(--xmlui-borderColor-Switch-warning);
4494
4525
  }
4495
- ._switch_m9kqa_144._valid_m9kqa_84 {
4526
+ ._switch_ddph3_144._valid_ddph3_84 {
4496
4527
  border-color: var(--xmlui-borderColor-Switch-success);
4497
4528
  }
4498
- ._switch_m9kqa_144::before {
4529
+ ._switch_ddph3_144::before {
4499
4530
  content: "";
4500
4531
  position: absolute;
4501
4532
  top: 0;
@@ -4506,33 +4537,33 @@ See this source for details: https://css-tricks.com/line-clampin/
4506
4537
  border-radius: 1rem;
4507
4538
  transition: 0.3s transform;
4508
4539
  }
4509
- ._switch_m9kqa_144:checked {
4540
+ ._switch_ddph3_144:checked {
4510
4541
  border-color: var(--xmlui-borderColor-checked-Switch);
4511
4542
  background-color: var(--xmlui-backgroundColor-checked-Switch);
4512
4543
  }
4513
- ._switch_m9kqa_144:checked:disabled {
4544
+ ._switch_ddph3_144:checked:disabled {
4514
4545
  background-color: var(--xmlui-backgroundColor-Switch--disabled);
4515
4546
  border-color: var(--xmlui-borderColor-Switch--disabled);
4516
4547
  }
4517
- ._switch_m9kqa_144:checked._error_m9kqa_62 {
4548
+ ._switch_ddph3_144:checked._error_ddph3_62 {
4518
4549
  border-color: var(--xmlui-borderColor-checked-Switch-error);
4519
4550
  background-color: var(--xmlui-backgroundColor-checked-Switch-error);
4520
4551
  }
4521
- ._switch_m9kqa_144:checked._warning_m9kqa_73 {
4552
+ ._switch_ddph3_144:checked._warning_ddph3_73 {
4522
4553
  border-color: var(--xmlui-borderColor-checked-Switch-warning);
4523
4554
  background-color: var(--xmlui-backgroundColor-checked-Switch-warning);
4524
4555
  }
4525
- ._switch_m9kqa_144:checked._valid_m9kqa_84 {
4556
+ ._switch_ddph3_144:checked._valid_ddph3_84 {
4526
4557
  border-color: var(--xmlui-borderColor-checked-Switch-success);
4527
4558
  background-color: var(--xmlui-backgroundColor-checked-Switch-success);
4528
4559
  }
4529
- ._switch_m9kqa_144:focus-visible {
4560
+ ._switch_ddph3_144:focus-visible {
4530
4561
  outline-width: var(--xmlui-outlineWidth-Switch--focus);
4531
4562
  outline-color: var(--xmlui-outlineColor-Switch--focus);
4532
4563
  outline-style: var(--xmlui-outlineStyle-Switch--focus);
4533
4564
  outline-offset: var(--xmlui-outlineOffset-Switch--focus);
4534
4565
  }
4535
- ._switch_m9kqa_144:checked::before {
4566
+ ._switch_ddph3_144:checked::before {
4536
4567
  transform: translateX(calc(100% - 4px));
4537
4568
  }/*
4538
4569
  * This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
@@ -4546,12 +4577,12 @@ See this source for details: https://css-tricks.com/line-clampin/
4546
4577
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
4547
4578
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
4548
4579
  */
4549
- ._wrapper_16ocz_13 {
4580
+ ._wrapper_1c2sc_13 {
4550
4581
  z-index: 1;
4551
4582
  }
4552
4583
 
4553
- ._sentinel_16ocz_17 ~ *:has([data-anchor=true]) [data-anchor=true] {
4554
- scroll-margin-top: var(--xmlui-scroll-margin-top);
4584
+ ._sentinel_1c2sc_17 ~ *:has([data-anchor=true]) [data-anchor=true] {
4585
+ scroll-margin-top: calc(var(--my-scroll-margin-top, 0px) + var(--xmlui-scroll-margin-top, 0px));
4555
4586
  }/*
4556
4587
  * This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
4557
4588
  *
@@ -5336,10 +5367,10 @@ See this source for details: https://css-tricks.com/line-clampin/
5336
5367
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
5337
5368
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
5338
5369
  */
5339
- ._inputRoot_ley74_13 {
5370
+ ._inputRoot_qxt8y_13 {
5340
5371
  display: flex;
5341
5372
  align-items: center;
5342
- gap: var(--xmlui-space-2);
5373
+ gap: var(--xmlui-gap-adornment-TextBox);
5343
5374
  width: 100%;
5344
5375
  border-style: solid;
5345
5376
  border-width: 1px;
@@ -5355,31 +5386,31 @@ See this source for details: https://css-tricks.com/line-clampin/
5355
5386
  box-shadow: var(--xmlui-boxShadow-TextBox-default);
5356
5387
  color: var(--xmlui-textColor-TextBox-default);
5357
5388
  }
5358
- ._inputRoot_ley74_13:hover {
5389
+ ._inputRoot_qxt8y_13:hover {
5359
5390
  border-color: var(--xmlui-borderColor-TextBox-default--hover);
5360
5391
  background-color: var(--xmlui-backgroundColor-TextBox-default--hover);
5361
5392
  box-shadow: var(--xmlui-boxShadow-TextBox-default--hover);
5362
5393
  color: var(--xmlui-textColor-TextBox-default--hover);
5363
5394
  }
5364
- ._inputRoot_ley74_13:focus-within {
5395
+ ._inputRoot_qxt8y_13:focus-within {
5365
5396
  border-color: var(--xmlui-borderColor-TextBox-default--focus);
5366
5397
  background-color: var(--xmlui-backgroundColor-TextBox-default--focus);
5367
5398
  box-shadow: var(--xmlui-boxShadow-TextBox-default--focus);
5368
5399
  color: var(--xmlui-textColor-TextBox-default--focus);
5369
5400
  }
5370
- ._inputRoot_ley74_13:has(._input_ley74_13:focus-visible) {
5401
+ ._inputRoot_qxt8y_13:has(._input_qxt8y_13:focus-visible) {
5371
5402
  outline-width: var(--xmlui-outlineWidth-TextBox-default--focus);
5372
5403
  outline-color: var(--xmlui-outlineColor-TextBox-default--focus);
5373
5404
  outline-style: var(--xmlui-outlineStyle-TextBox-default--focus);
5374
5405
  outline-offset: var(--xmlui-outlineOffset-TextBox-default--focus);
5375
5406
  }
5376
- ._inputRoot_ley74_13 ._input_ley74_13::placeholder {
5407
+ ._inputRoot_qxt8y_13 ._input_qxt8y_13::placeholder {
5377
5408
  color: var(--xmlui-color-placeholder-TextBox-default);
5378
5409
  }
5379
- ._inputRoot_ley74_13 ._adornment_ley74_53 {
5410
+ ._inputRoot_qxt8y_13 ._adornment_qxt8y_53 {
5380
5411
  color: var(--xmlui-color-adornment-TextBox-default);
5381
5412
  }
5382
- ._inputRoot_ley74_13._error_ley74_56 {
5413
+ ._inputRoot_qxt8y_13._error_qxt8y_56 {
5383
5414
  border-radius: var(--xmlui-borderRadius-TextBox-error);
5384
5415
  border-color: var(--xmlui-borderColor-TextBox-error);
5385
5416
  border-width: var(--xmlui-borderWidth-TextBox-error);
@@ -5390,31 +5421,31 @@ See this source for details: https://css-tricks.com/line-clampin/
5390
5421
  box-shadow: var(--xmlui-boxShadow-TextBox-error);
5391
5422
  color: var(--xmlui-textColor-TextBox-error);
5392
5423
  }
5393
- ._inputRoot_ley74_13._error_ley74_56:hover {
5424
+ ._inputRoot_qxt8y_13._error_qxt8y_56:hover {
5394
5425
  border-color: var(--xmlui-borderColor-TextBox-error--hover);
5395
5426
  background-color: var(--xmlui-backgroundColor-TextBox-error--hover);
5396
5427
  box-shadow: var(--xmlui-boxShadow-TextBox-error--hover);
5397
5428
  color: var(--xmlui-textColor-TextBox-error--hover);
5398
5429
  }
5399
- ._inputRoot_ley74_13._error_ley74_56:focus-within {
5430
+ ._inputRoot_qxt8y_13._error_qxt8y_56:focus-within {
5400
5431
  border-color: var(--xmlui-borderColor-TextBox-error--focus);
5401
5432
  background-color: var(--xmlui-backgroundColor-TextBox-error--focus);
5402
5433
  box-shadow: var(--xmlui-boxShadow-TextBox-error--focus);
5403
5434
  color: var(--xmlui-textColor-TextBox-error--focus);
5404
5435
  }
5405
- ._inputRoot_ley74_13._error_ley74_56:has(._input_ley74_13:focus-visible) {
5436
+ ._inputRoot_qxt8y_13._error_qxt8y_56:has(._input_qxt8y_13:focus-visible) {
5406
5437
  outline-width: var(--xmlui-outlineWidth-TextBox-error--focus);
5407
5438
  outline-color: var(--xmlui-outlineColor-TextBox-error--focus);
5408
5439
  outline-style: var(--xmlui-outlineStyle-TextBox-error--focus);
5409
5440
  outline-offset: var(--xmlui-outlineOffset-TextBox-error--focus);
5410
5441
  }
5411
- ._inputRoot_ley74_13._error_ley74_56 ._input_ley74_13::placeholder {
5442
+ ._inputRoot_qxt8y_13._error_qxt8y_56 ._input_qxt8y_13::placeholder {
5412
5443
  color: var(--xmlui-color-placeholder-TextBox-error);
5413
5444
  }
5414
- ._inputRoot_ley74_13._error_ley74_56 ._adornment_ley74_53 {
5445
+ ._inputRoot_qxt8y_13._error_qxt8y_56 ._adornment_qxt8y_53 {
5415
5446
  color: var(--xmlui-color-adornment-TextBox-error);
5416
5447
  }
5417
- ._inputRoot_ley74_13._warning_ley74_91 {
5448
+ ._inputRoot_qxt8y_13._warning_qxt8y_91 {
5418
5449
  border-radius: var(--xmlui-borderRadius-TextBox-warning);
5419
5450
  border-color: var(--xmlui-borderColor-TextBox-warning);
5420
5451
  border-width: var(--xmlui-borderWidth-TextBox-warning);
@@ -5425,31 +5456,31 @@ See this source for details: https://css-tricks.com/line-clampin/
5425
5456
  box-shadow: var(--xmlui-boxShadow-TextBox-warning);
5426
5457
  color: var(--xmlui-textColor-TextBox-warning);
5427
5458
  }
5428
- ._inputRoot_ley74_13._warning_ley74_91:hover {
5459
+ ._inputRoot_qxt8y_13._warning_qxt8y_91:hover {
5429
5460
  border-color: var(--xmlui-borderColor-TextBox-warning--hover);
5430
5461
  background-color: var(--xmlui-backgroundColor-TextBox-warning--hover);
5431
5462
  box-shadow: var(--xmlui-boxShadow-TextBox-warning--hover);
5432
5463
  color: var(--xmlui-textColor-TextBox-warning--hover);
5433
5464
  }
5434
- ._inputRoot_ley74_13._warning_ley74_91:focus-within {
5465
+ ._inputRoot_qxt8y_13._warning_qxt8y_91:focus-within {
5435
5466
  border-color: var(--xmlui-borderColor-TextBox-warning--focus);
5436
5467
  background-color: var(--xmlui-backgroundColor-TextBox-warning--focus);
5437
5468
  box-shadow: var(--xmlui-boxShadow-TextBox-warning--focus);
5438
5469
  color: var(--xmlui-textColor-TextBox-warning--focus);
5439
5470
  }
5440
- ._inputRoot_ley74_13._warning_ley74_91:has(._input_ley74_13:focus-visible) {
5471
+ ._inputRoot_qxt8y_13._warning_qxt8y_91:has(._input_qxt8y_13:focus-visible) {
5441
5472
  outline-width: var(--xmlui-outlineWidth-TextBox-warning--focus);
5442
5473
  outline-color: var(--xmlui-outlineColor-TextBox-warning--focus);
5443
5474
  outline-style: var(--xmlui-outlineStyle-TextBox-warning--focus);
5444
5475
  outline-offset: var(--xmlui-outlineOffset-TextBox-warning--focus);
5445
5476
  }
5446
- ._inputRoot_ley74_13._warning_ley74_91 ._input_ley74_13::placeholder {
5477
+ ._inputRoot_qxt8y_13._warning_qxt8y_91 ._input_qxt8y_13::placeholder {
5447
5478
  color: var(--xmlui-color-placeholder-TextBox-warning);
5448
5479
  }
5449
- ._inputRoot_ley74_13._warning_ley74_91 ._adornment_ley74_53 {
5480
+ ._inputRoot_qxt8y_13._warning_qxt8y_91 ._adornment_qxt8y_53 {
5450
5481
  color: var(--xmlui-color-adornment-TextBox-warning);
5451
5482
  }
5452
- ._inputRoot_ley74_13._valid_ley74_126 {
5483
+ ._inputRoot_qxt8y_13._valid_qxt8y_126 {
5453
5484
  border-radius: var(--xmlui-borderRadius-TextBox-success);
5454
5485
  border-color: var(--xmlui-borderColor-TextBox-success);
5455
5486
  border-width: var(--xmlui-borderWidth-TextBox-success);
@@ -5460,37 +5491,37 @@ See this source for details: https://css-tricks.com/line-clampin/
5460
5491
  box-shadow: var(--xmlui-boxShadow-TextBox-success);
5461
5492
  color: var(--xmlui-textColor-TextBox-success);
5462
5493
  }
5463
- ._inputRoot_ley74_13._valid_ley74_126:hover {
5494
+ ._inputRoot_qxt8y_13._valid_qxt8y_126:hover {
5464
5495
  border-color: var(--xmlui-borderColor-TextBox-success--hover);
5465
5496
  background-color: var(--xmlui-backgroundColor-TextBox-success--hover);
5466
5497
  box-shadow: var(--xmlui-boxShadow-TextBox-success--hover);
5467
5498
  color: var(--xmlui-textColor-TextBox-success--hover);
5468
5499
  }
5469
- ._inputRoot_ley74_13._valid_ley74_126:focus-within {
5500
+ ._inputRoot_qxt8y_13._valid_qxt8y_126:focus-within {
5470
5501
  border-color: var(--xmlui-borderColor-TextBox-success--focus);
5471
5502
  background-color: var(--xmlui-backgroundColor-TextBox-success--focus);
5472
5503
  box-shadow: var(--xmlui-boxShadow-TextBox-success--focus);
5473
5504
  color: var(--xmlui-textColor-TextBox-success--focus);
5474
5505
  }
5475
- ._inputRoot_ley74_13._valid_ley74_126:has(._input_ley74_13:focus-visible) {
5506
+ ._inputRoot_qxt8y_13._valid_qxt8y_126:has(._input_qxt8y_13:focus-visible) {
5476
5507
  outline-width: var(--xmlui-outlineWidth-TextBox-success--focus);
5477
5508
  outline-color: var(--xmlui-outlineColor-TextBox-success--focus);
5478
5509
  outline-style: var(--xmlui-outlineStyle-TextBox-success--focus);
5479
5510
  outline-offset: var(--xmlui-outlineOffset-TextBox-success--focus);
5480
5511
  }
5481
- ._inputRoot_ley74_13._valid_ley74_126 ._input_ley74_13::placeholder {
5512
+ ._inputRoot_qxt8y_13._valid_qxt8y_126 ._input_qxt8y_13::placeholder {
5482
5513
  color: var(--xmlui-color-placeholder-TextBox-success);
5483
5514
  }
5484
- ._inputRoot_ley74_13._valid_ley74_126 ._adornment_ley74_53 {
5515
+ ._inputRoot_qxt8y_13._valid_qxt8y_126 ._adornment_qxt8y_53 {
5485
5516
  color: var(--xmlui-color-adornment-TextBox-success);
5486
5517
  }
5487
- ._inputRoot_ley74_13:has(._input_ley74_13:is(:disabled)) {
5518
+ ._inputRoot_qxt8y_13:has(._input_qxt8y_13:is(:disabled)) {
5488
5519
  cursor: not-allowed;
5489
5520
  background-color: var(--xmlui-backgroundColor-TextBox--disabled);
5490
5521
  color: var(--xmlui-textColor-TextBox--disabled);
5491
5522
  border-color: var(--xmlui-borderColor-TextBox--disabled);
5492
5523
  }
5493
- ._inputRoot_ley74_13 ._input_ley74_13 {
5524
+ ._inputRoot_qxt8y_13 ._input_qxt8y_13 {
5494
5525
  font-size: inherit;
5495
5526
  color: inherit;
5496
5527
  border: 0;
@@ -5500,11 +5531,11 @@ See this source for details: https://css-tricks.com/line-clampin/
5500
5531
  padding: 0;
5501
5532
  cursor: inherit;
5502
5533
  }
5503
- ._inputRoot_ley74_13 ._input_ley74_13::-ms-reveal {
5534
+ ._inputRoot_qxt8y_13 ._input_qxt8y_13::-ms-reveal {
5504
5535
  display: none;
5505
5536
  }
5506
5537
 
5507
- ._readOnly_ley74_181 {
5538
+ ._readOnly_qxt8y_181 {
5508
5539
  cursor: default;
5509
5540
  }/*
5510
5541
  * This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
@@ -5574,10 +5605,10 @@ See this source for details: https://css-tricks.com/line-clampin/
5574
5605
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
5575
5606
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
5576
5607
  */
5577
- ._inputRoot_1dsq1_13 {
5608
+ ._inputRoot_1ynbq_13 {
5578
5609
  display: flex;
5579
5610
  align-items: center;
5580
- gap: var(--xmlui-space-2);
5611
+ gap: var(--xmlui-gap-adornment-NumberBox);
5581
5612
  padding: var(--xmlui-space-2);
5582
5613
  width: 100%;
5583
5614
  border-style: solid;
@@ -5593,31 +5624,31 @@ See this source for details: https://css-tricks.com/line-clampin/
5593
5624
  box-shadow: var(--xmlui-boxShadow-NumberBox-default);
5594
5625
  color: var(--xmlui-textColor-NumberBox-default);
5595
5626
  }
5596
- ._inputRoot_1dsq1_13:hover {
5627
+ ._inputRoot_1ynbq_13:hover {
5597
5628
  border-color: var(--xmlui-borderColor-NumberBox-default--hover);
5598
5629
  background-color: var(--xmlui-backgroundColor-NumberBox-default--hover);
5599
5630
  box-shadow: var(--xmlui-boxShadow-NumberBox-default--hover);
5600
5631
  color: var(--xmlui-textColor-NumberBox-default--hover);
5601
5632
  }
5602
- ._inputRoot_1dsq1_13:focus-within {
5633
+ ._inputRoot_1ynbq_13:focus-within {
5603
5634
  border-color: var(--xmlui-borderColor-NumberBox-default--focus);
5604
5635
  background-color: var(--xmlui-backgroundColor-NumberBox-default--focus);
5605
5636
  box-shadow: var(--xmlui-boxShadow-NumberBox-default--focus);
5606
5637
  color: var(--xmlui-textColor-NumberBox-default--focus);
5607
5638
  }
5608
- ._inputRoot_1dsq1_13:has(._input_1dsq1_13:focus-visible) {
5639
+ ._inputRoot_1ynbq_13:has(._input_1ynbq_13:focus-visible) {
5609
5640
  outline-width: var(--xmlui-outlineWidth-NumberBox-default--focus);
5610
5641
  outline-color: var(--xmlui-outlineColor-NumberBox-default--focus);
5611
5642
  outline-style: var(--xmlui-outlineStyle-NumberBox-default--focus);
5612
5643
  outline-offset: var(--xmlui-outlineOffset-NumberBox-default--focus);
5613
5644
  }
5614
- ._inputRoot_1dsq1_13 ._input_1dsq1_13::placeholder {
5645
+ ._inputRoot_1ynbq_13 ._input_1ynbq_13::placeholder {
5615
5646
  color: var(--xmlui-textColor-placeholder-NumberBox-default);
5616
5647
  }
5617
- ._inputRoot_1dsq1_13 ._adornment_1dsq1_53 {
5648
+ ._inputRoot_1ynbq_13 ._adornment_1ynbq_53 {
5618
5649
  color: var(--xmlui-textColor-adornment-NumberBox-default);
5619
5650
  }
5620
- ._inputRoot_1dsq1_13._error_1dsq1_56 {
5651
+ ._inputRoot_1ynbq_13._error_1ynbq_56 {
5621
5652
  border-radius: var(--xmlui-borderRadius-NumberBox-error);
5622
5653
  border-color: var(--xmlui-borderColor-NumberBox-error);
5623
5654
  border-width: var(--xmlui-borderWidth-NumberBox-error);
@@ -5627,31 +5658,31 @@ See this source for details: https://css-tricks.com/line-clampin/
5627
5658
  box-shadow: var(--xmlui-boxShadow-NumberBox-error);
5628
5659
  color: var(--xmlui-textColor-NumberBox-error);
5629
5660
  }
5630
- ._inputRoot_1dsq1_13._error_1dsq1_56:hover {
5661
+ ._inputRoot_1ynbq_13._error_1ynbq_56:hover {
5631
5662
  border-color: var(--xmlui-borderColor-NumberBox-error--hover);
5632
5663
  background-color: var(--xmlui-backgroundColor-NumberBox-error--hover);
5633
5664
  box-shadow: var(--xmlui-boxShadow-NumberBox-error--hover);
5634
5665
  color: var(--xmlui-textColor-NumberBox-error--hover);
5635
5666
  }
5636
- ._inputRoot_1dsq1_13._error_1dsq1_56:focus-within {
5667
+ ._inputRoot_1ynbq_13._error_1ynbq_56:focus-within {
5637
5668
  border-color: var(--xmlui-borderColor-NumberBox-error--focus);
5638
5669
  background-color: var(--xmlui-backgroundColor-NumberBox-error--focus);
5639
5670
  box-shadow: var(--xmlui-boxShadow-NumberBox-error--focus);
5640
5671
  color: var(--xmlui-textColor-NumberBox-error--focus);
5641
5672
  }
5642
- ._inputRoot_1dsq1_13._error_1dsq1_56:has(._input_1dsq1_13:focus-visible) {
5673
+ ._inputRoot_1ynbq_13._error_1ynbq_56:has(._input_1ynbq_13:focus-visible) {
5643
5674
  outline-width: var(--xmlui-outlineWidth-NumberBox-error--focus);
5644
5675
  outline-color: var(--xmlui-outlineColor-NumberBox-error--focus);
5645
5676
  outline-style: var(--xmlui-outlineStyle-NumberBox-error--focus);
5646
5677
  outline-offset: var(--xmlui-outlineOffset-NumberBox-error--focus);
5647
5678
  }
5648
- ._inputRoot_1dsq1_13._error_1dsq1_56 ._input_1dsq1_13::placeholder {
5679
+ ._inputRoot_1ynbq_13._error_1ynbq_56 ._input_1ynbq_13::placeholder {
5649
5680
  color: var(--xmlui-textColor-placeholder-NumberBox-error);
5650
5681
  }
5651
- ._inputRoot_1dsq1_13._error_1dsq1_56 ._adornment_1dsq1_53 {
5682
+ ._inputRoot_1ynbq_13._error_1ynbq_56 ._adornment_1ynbq_53 {
5652
5683
  color: var(--xmlui-textColor-adornment-NumberBox-error);
5653
5684
  }
5654
- ._inputRoot_1dsq1_13._warning_1dsq1_90 {
5685
+ ._inputRoot_1ynbq_13._warning_1ynbq_90 {
5655
5686
  border-radius: var(--xmlui-borderRadius-NumberBox-warning);
5656
5687
  border-color: var(--xmlui-borderColor-NumberBox-warning);
5657
5688
  border-width: var(--xmlui-borderWidth-NumberBox-warning);
@@ -5661,31 +5692,31 @@ See this source for details: https://css-tricks.com/line-clampin/
5661
5692
  box-shadow: var(--xmlui-boxShadow-NumberBox-warning);
5662
5693
  color: var(--xmlui-textColor-NumberBox-warning);
5663
5694
  }
5664
- ._inputRoot_1dsq1_13._warning_1dsq1_90:hover {
5695
+ ._inputRoot_1ynbq_13._warning_1ynbq_90:hover {
5665
5696
  border-color: var(--xmlui-borderColor-NumberBox-warning--hover);
5666
5697
  background-color: var(--xmlui-backgroundColor-NumberBox-warning--hover);
5667
5698
  box-shadow: var(--xmlui-boxShadow-NumberBox-warning--hover);
5668
5699
  color: var(--xmlui-textColor-NumberBox-warning--hover);
5669
5700
  }
5670
- ._inputRoot_1dsq1_13._warning_1dsq1_90:focus-within {
5701
+ ._inputRoot_1ynbq_13._warning_1ynbq_90:focus-within {
5671
5702
  border-color: var(--xmlui-borderColor-NumberBox-warning--focus);
5672
5703
  background-color: var(--xmlui-backgroundColor-NumberBox-warning--focus);
5673
5704
  box-shadow: var(--xmlui-boxShadow-NumberBox-warning--focus);
5674
5705
  color: var(--xmlui-textColor-NumberBox-warning--focus);
5675
5706
  }
5676
- ._inputRoot_1dsq1_13._warning_1dsq1_90:has(._input_1dsq1_13:focus-visible) {
5707
+ ._inputRoot_1ynbq_13._warning_1ynbq_90:has(._input_1ynbq_13:focus-visible) {
5677
5708
  outline-width: var(--xmlui-outlineWidth-NumberBox-warning--focus);
5678
5709
  outline-color: var(--xmlui-outlineColor-NumberBox-warning--focus);
5679
5710
  outline-style: var(--xmlui-outlineStyle-NumberBox-warning--focus);
5680
5711
  outline-offset: var(--xmlui-outlineOffset-NumberBox-warning--focus);
5681
5712
  }
5682
- ._inputRoot_1dsq1_13._warning_1dsq1_90 ._input_1dsq1_13::placeholder {
5713
+ ._inputRoot_1ynbq_13._warning_1ynbq_90 ._input_1ynbq_13::placeholder {
5683
5714
  color: var(--xmlui-textColor-placeholder-NumberBox-warning);
5684
5715
  }
5685
- ._inputRoot_1dsq1_13._warning_1dsq1_90 ._adornment_1dsq1_53 {
5716
+ ._inputRoot_1ynbq_13._warning_1ynbq_90 ._adornment_1ynbq_53 {
5686
5717
  color: var(--xmlui-textColor-adornment-NumberBox-warning);
5687
5718
  }
5688
- ._inputRoot_1dsq1_13._valid_1dsq1_124 {
5719
+ ._inputRoot_1ynbq_13._valid_1ynbq_124 {
5689
5720
  border-radius: var(--xmlui-borderRadius-NumberBox-success);
5690
5721
  border-color: var(--xmlui-borderColor-NumberBox-success);
5691
5722
  border-width: var(--xmlui-borderWidth-NumberBox-success);
@@ -5695,37 +5726,37 @@ See this source for details: https://css-tricks.com/line-clampin/
5695
5726
  box-shadow: var(--xmlui-boxShadow-NumberBox-success);
5696
5727
  color: var(--xmlui-textColor-NumberBox-success);
5697
5728
  }
5698
- ._inputRoot_1dsq1_13._valid_1dsq1_124:hover {
5729
+ ._inputRoot_1ynbq_13._valid_1ynbq_124:hover {
5699
5730
  border-color: var(--xmlui-borderColor-NumberBox-success--hover);
5700
5731
  background-color: var(--xmlui-backgroundColor-NumberBox-success--hover);
5701
5732
  box-shadow: var(--xmlui-boxShadow-NumberBox-success--hover);
5702
5733
  color: var(--xmlui-textColor-NumberBox-success--hover);
5703
5734
  }
5704
- ._inputRoot_1dsq1_13._valid_1dsq1_124:focus-within {
5735
+ ._inputRoot_1ynbq_13._valid_1ynbq_124:focus-within {
5705
5736
  border-color: var(--xmlui-borderColor-NumberBox-success--focus);
5706
5737
  background-color: var(--xmlui-backgroundColor-NumberBox-success--focus);
5707
5738
  box-shadow: var(--xmlui-boxShadow-NumberBox-success--focus);
5708
5739
  color: var(--xmlui-textColor-NumberBox-success--focus);
5709
5740
  }
5710
- ._inputRoot_1dsq1_13._valid_1dsq1_124:has(._input_1dsq1_13:focus-visible) {
5741
+ ._inputRoot_1ynbq_13._valid_1ynbq_124:has(._input_1ynbq_13:focus-visible) {
5711
5742
  outline-width: var(--xmlui-outlineWidth-NumberBox-success--focus);
5712
5743
  outline-color: var(--xmlui-outlineColor-NumberBox-success--focus);
5713
5744
  outline-style: var(--xmlui-outlineStyle-NumberBox-success--focus);
5714
5745
  outline-offset: var(--xmlui-outlineOffset-NumberBox-success--focus);
5715
5746
  }
5716
- ._inputRoot_1dsq1_13._valid_1dsq1_124 ._input_1dsq1_13::placeholder {
5747
+ ._inputRoot_1ynbq_13._valid_1ynbq_124 ._input_1ynbq_13::placeholder {
5717
5748
  color: var(--xmlui-textColor-placeholder-NumberBox-success);
5718
5749
  }
5719
- ._inputRoot_1dsq1_13._valid_1dsq1_124 ._adornment_1dsq1_53 {
5750
+ ._inputRoot_1ynbq_13._valid_1ynbq_124 ._adornment_1ynbq_53 {
5720
5751
  color: var(--xmlui-textColor-adornment-NumberBox-success);
5721
5752
  }
5722
- ._inputRoot_1dsq1_13:has(._input_1dsq1_13:is(:disabled)) {
5753
+ ._inputRoot_1ynbq_13:has(._input_1ynbq_13:is(:disabled)) {
5723
5754
  cursor: not-allowed;
5724
5755
  background-color: var(--xmlui-backgroundColor-NumberBox--disabled);
5725
5756
  color: var(--xmlui-textColor-NumberBox--disabled);
5726
5757
  border-color: var(--xmlui-borderColor-NumberBox--disabled);
5727
5758
  }
5728
- ._inputRoot_1dsq1_13 ._input_1dsq1_13 {
5759
+ ._inputRoot_1ynbq_13 ._input_1ynbq_13 {
5729
5760
  font-size: inherit;
5730
5761
  color: inherit;
5731
5762
  border: 0;
@@ -5741,24 +5772,24 @@ See this source for details: https://css-tricks.com/line-clampin/
5741
5772
  -moz-appearance: textfield;
5742
5773
  appearance: textfield;
5743
5774
  }
5744
- ._inputRoot_1dsq1_13 ._input_1dsq1_13::-webkit-outer-spin-button, ._inputRoot_1dsq1_13 ._input_1dsq1_13::-webkit-inner-spin-button {
5775
+ ._inputRoot_1ynbq_13 ._input_1ynbq_13::-webkit-outer-spin-button, ._inputRoot_1ynbq_13 ._input_1ynbq_13::-webkit-inner-spin-button {
5745
5776
  -webkit-appearance: none;
5746
5777
  margin: 0;
5747
5778
  }
5748
- ._inputRoot_1dsq1_13 ._spinnerBox_1dsq1_184 {
5779
+ ._inputRoot_1ynbq_13 ._spinnerBox_1ynbq_184 {
5749
5780
  display: flex;
5750
5781
  flex-direction: column;
5751
5782
  height: 0;
5752
5783
  align-items: center;
5753
5784
  justify-content: center;
5754
5785
  }
5755
- ._inputRoot_1dsq1_13 ._spinnerButton_1dsq1_191 {
5786
+ ._inputRoot_1ynbq_13 ._spinnerButton_1ynbq_191 {
5756
5787
  padding: 0 !important;
5757
5788
  width: var(--xmlui-space-6);
5758
5789
  border: none;
5759
5790
  }
5760
5791
 
5761
- ._readOnly_1dsq1_197 {
5792
+ ._readOnly_1ynbq_197 {
5762
5793
  cursor: text;
5763
5794
  }/*
5764
5795
  * This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
@@ -5772,40 +5803,40 @@ See this source for details: https://css-tricks.com/line-clampin/
5772
5803
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
5773
5804
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
5774
5805
  */
5775
- ._selectValue_1ept5_13 > span {
5806
+ ._selectValue_1cwq0_13 > span {
5776
5807
  font-size: var(--xmlui-fontSize-Select-default);
5777
5808
  color: var(--xmlui-textColor-placeholder-Select-default);
5778
5809
  }
5779
- ._selectValue_1ept5_13 > span > div {
5810
+ ._selectValue_1cwq0_13 > span > div {
5780
5811
  color: var(--xmlui-textColor-Select-default);
5781
5812
  font-size: var(--xmlui-fontSize-Select-default);
5782
5813
  }
5783
- ._selectValue_1ept5_13._error_1ept5_21 > span {
5814
+ ._selectValue_1cwq0_13._error_1cwq0_21 > span {
5784
5815
  font-size: var(--xmlui-fontSize-Select-error);
5785
5816
  color: var(--xmlui-textColor-placeholder-Select-error);
5786
5817
  }
5787
- ._selectValue_1ept5_13._error_1ept5_21 > span > div {
5818
+ ._selectValue_1cwq0_13._error_1cwq0_21 > span > div {
5788
5819
  color: var(--xmlui-textColor-Select-error);
5789
5820
  font-size: var(--xmlui-fontSize-Select-error);
5790
5821
  }
5791
- ._selectValue_1ept5_13._warning_1ept5_29 > span {
5822
+ ._selectValue_1cwq0_13._warning_1cwq0_29 > span {
5792
5823
  font-size: var(--xmlui-fontSize-Select-warning);
5793
5824
  color: var(--xmlui-textColor-placeholder-Select-warning);
5794
5825
  }
5795
- ._selectValue_1ept5_13._warning_1ept5_29 > span > div {
5826
+ ._selectValue_1cwq0_13._warning_1cwq0_29 > span > div {
5796
5827
  color: var(--xmlui-textColor-Select-warning);
5797
5828
  font-size: var(--xmlui-fontSize-Select-warning);
5798
5829
  }
5799
- ._selectValue_1ept5_13._valid_1ept5_37 > span {
5830
+ ._selectValue_1cwq0_13._valid_1cwq0_37 > span {
5800
5831
  font-size: var(--xmlui-fontSize-Select-success);
5801
5832
  color: var(--xmlui-textColor-placeholder-Select-success);
5802
5833
  }
5803
- ._selectValue_1ept5_13._valid_1ept5_37 > span > div {
5834
+ ._selectValue_1cwq0_13._valid_1cwq0_37 > span > div {
5804
5835
  color: var(--xmlui-textColor-Select-success);
5805
5836
  font-size: var(--xmlui-fontSize-Select-success);
5806
5837
  }
5807
5838
 
5808
- button._selectTrigger_1ept5_46 {
5839
+ button._selectTrigger_1cwq0_46 {
5809
5840
  min-height: 2.6rem;
5810
5841
  display: flex;
5811
5842
  padding: var(--xmlui-space-1) var(--xmlui-space-2);
@@ -5823,22 +5854,22 @@ button._selectTrigger_1ept5_46 {
5823
5854
  box-shadow: var(--xmlui-boxShadow-Select-default);
5824
5855
  color: var(--xmlui-textColor-Select-default);
5825
5856
  }
5826
- button._selectTrigger_1ept5_46:hover {
5857
+ button._selectTrigger_1cwq0_46:hover {
5827
5858
  border-color: var(--xmlui-borderColor-Select-default--hover);
5828
5859
  background-color: var(--xmlui-backgroundColor-Select-default--hover);
5829
5860
  box-shadow: var(--xmlui-boxShadow-Select-default--hover);
5830
5861
  color: var(--xmlui-textColor-Select-default--hover);
5831
5862
  }
5832
- button._selectTrigger_1ept5_46:focus {
5863
+ button._selectTrigger_1cwq0_46:focus {
5833
5864
  outline-width: var(--xmlui-outlineWidth-Select-default--focus);
5834
5865
  outline-color: var(--xmlui-outlineColor-Select-default--focus);
5835
5866
  outline-style: var(--xmlui-outlineStyle-Select-default--focus);
5836
5867
  outline-offset: var(--xmlui-outlineOffset-Select-default--focus);
5837
5868
  }
5838
- button._selectTrigger_1ept5_46::placeholder {
5869
+ button._selectTrigger_1cwq0_46::placeholder {
5839
5870
  color: var(--xmlui-textColor-placeholder-Select-default);
5840
5871
  }
5841
- button._selectTrigger_1ept5_46._error_1ept5_21 {
5872
+ button._selectTrigger_1cwq0_46._error_1cwq0_21 {
5842
5873
  border-radius: var(--xmlui-borderRadius-Select-error);
5843
5874
  border-color: var(--xmlui-borderColor-Select-error);
5844
5875
  border-width: var(--xmlui-borderWidth-Select-error);
@@ -5848,22 +5879,22 @@ button._selectTrigger_1ept5_46._error_1ept5_21 {
5848
5879
  box-shadow: var(--xmlui-boxShadow-Select-error);
5849
5880
  color: var(--xmlui-textColor-Select-error);
5850
5881
  }
5851
- button._selectTrigger_1ept5_46._error_1ept5_21:hover {
5882
+ button._selectTrigger_1cwq0_46._error_1cwq0_21:hover {
5852
5883
  border-color: var(--xmlui-borderColor-Select-error--hover);
5853
5884
  background-color: var(--xmlui-backgroundColor-Select-error--hover);
5854
5885
  box-shadow: var(--xmlui-boxShadow-Select-error--hover);
5855
5886
  color: var(--xmlui-textColor-Select-error--hover);
5856
5887
  }
5857
- button._selectTrigger_1ept5_46._error_1ept5_21:focus {
5888
+ button._selectTrigger_1cwq0_46._error_1cwq0_21:focus {
5858
5889
  outline-width: var(--xmlui-outlineWidth-Select-error--focus);
5859
5890
  outline-color: var(--xmlui-outlineColor-Select-error--focus);
5860
5891
  outline-style: var(--xmlui-outlineStyle-Select-error--focus);
5861
5892
  outline-offset: var(--xmlui-outlineOffset-Select-error--focus);
5862
5893
  }
5863
- button._selectTrigger_1ept5_46._error_1ept5_21::placeholder {
5894
+ button._selectTrigger_1cwq0_46._error_1cwq0_21::placeholder {
5864
5895
  color: var(--xmlui-textColor-placeholder-Select-error);
5865
5896
  }
5866
- button._selectTrigger_1ept5_46._warning_1ept5_29 {
5897
+ button._selectTrigger_1cwq0_46._warning_1cwq0_29 {
5867
5898
  border-radius: var(--xmlui-borderRadius-Select-warning);
5868
5899
  border-color: var(--xmlui-borderColor-Select-warning);
5869
5900
  border-width: var(--xmlui-borderWidth-Select-warning);
@@ -5873,22 +5904,22 @@ button._selectTrigger_1ept5_46._warning_1ept5_29 {
5873
5904
  box-shadow: var(--xmlui-boxShadow-Select-warning);
5874
5905
  color: var(--xmlui-textColor-Select-warning);
5875
5906
  }
5876
- button._selectTrigger_1ept5_46._warning_1ept5_29:hover {
5907
+ button._selectTrigger_1cwq0_46._warning_1cwq0_29:hover {
5877
5908
  border-color: var(--xmlui-borderColor-Select-warning--hover);
5878
5909
  background-color: var(--xmlui-backgroundColor-Select-warning--hover);
5879
5910
  box-shadow: var(--xmlui-boxShadow-Select-warning--hover);
5880
5911
  color: var(--xmlui-textColor-Select-warning--hover);
5881
5912
  }
5882
- button._selectTrigger_1ept5_46._warning_1ept5_29:focus {
5913
+ button._selectTrigger_1cwq0_46._warning_1cwq0_29:focus {
5883
5914
  outline-width: var(--xmlui-outlineWidth-Select-warning--focus);
5884
5915
  outline-color: var(--xmlui-outlineColor-Select-warning--focus);
5885
5916
  outline-style: var(--xmlui-outlineStyle-Select-warning--focus);
5886
5917
  outline-offset: var(--xmlui-outlineOffset-Select-warning--focus);
5887
5918
  }
5888
- button._selectTrigger_1ept5_46._warning_1ept5_29::placeholder {
5919
+ button._selectTrigger_1cwq0_46._warning_1cwq0_29::placeholder {
5889
5920
  color: var(--xmlui-textColor-placeholder-Select-warning);
5890
5921
  }
5891
- button._selectTrigger_1ept5_46._valid_1ept5_37 {
5922
+ button._selectTrigger_1cwq0_46._valid_1cwq0_37 {
5892
5923
  border-radius: var(--xmlui-borderRadius-Select-success);
5893
5924
  border-color: var(--xmlui-borderColor-Select-success);
5894
5925
  border-width: var(--xmlui-borderWidth-Select-success);
@@ -5898,23 +5929,23 @@ button._selectTrigger_1ept5_46._valid_1ept5_37 {
5898
5929
  box-shadow: var(--xmlui-boxShadow-Select-success);
5899
5930
  color: var(--xmlui-textColor-Select-success);
5900
5931
  }
5901
- button._selectTrigger_1ept5_46._valid_1ept5_37:hover {
5932
+ button._selectTrigger_1cwq0_46._valid_1cwq0_37:hover {
5902
5933
  border-color: var(--xmlui-borderColor-Select-success--hover);
5903
5934
  background-color: var(--xmlui-backgroundColor-Select-success--hover);
5904
5935
  box-shadow: var(--xmlui-boxShadow-Select-success--hover);
5905
5936
  color: var(--xmlui-textColor-Select-success--hover);
5906
5937
  }
5907
- button._selectTrigger_1ept5_46._valid_1ept5_37:focus {
5938
+ button._selectTrigger_1cwq0_46._valid_1cwq0_37:focus {
5908
5939
  outline-width: var(--xmlui-outlineWidth-Select-success--focus);
5909
5940
  outline-color: var(--xmlui-outlineColor-Select-success--focus);
5910
5941
  outline-style: var(--xmlui-outlineStyle-Select-success--focus);
5911
5942
  outline-offset: var(--xmlui-outlineOffset-Select-success--focus);
5912
5943
  }
5913
- button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
5944
+ button._selectTrigger_1cwq0_46._valid_1cwq0_37::placeholder {
5914
5945
  color: var(--xmlui-textColor-placeholder-Select-success);
5915
5946
  }
5916
5947
 
5917
- ._selectTrigger_1ept5_46:disabled {
5948
+ ._selectTrigger_1cwq0_46:disabled {
5918
5949
  cursor: not-allowed;
5919
5950
  opacity: var(--xmlui-opacity-Select--disabled);
5920
5951
  background-color: var(--xmlui-backgroundColor-Select--disabled);
@@ -5922,28 +5953,28 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
5922
5953
  border-color: var(--xmlui-borderColor-Select--disabled);
5923
5954
  }
5924
5955
 
5925
- ._selectTrigger_1ept5_46 > span {
5956
+ ._selectTrigger_1cwq0_46 > span {
5926
5957
  display: -webkit-box;
5927
5958
  -webkit-box-orient: vertical;
5928
5959
  -webkit-line-clamp: 1;
5929
5960
  overflow: hidden;
5930
5961
  }
5931
5962
 
5932
- ._badgeListContainer_1ept5_170 {
5963
+ ._badgeListContainer_1cwq0_170 {
5933
5964
  display: flex;
5934
5965
  justify-content: space-between;
5935
5966
  align-items: center;
5936
5967
  width: 100%;
5937
5968
  }
5938
5969
 
5939
- ._badgeList_1ept5_170 {
5970
+ ._badgeList_1cwq0_170 {
5940
5971
  gap: 4px;
5941
5972
  display: flex;
5942
5973
  flex-wrap: wrap;
5943
5974
  align-items: center;
5944
5975
  }
5945
5976
 
5946
- ._badge_1ept5_170 {
5977
+ ._badge_1cwq0_170 {
5947
5978
  width: fit-content;
5948
5979
  height: fit-content;
5949
5980
  min-width: 0;
@@ -5960,27 +5991,27 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
5960
5991
  background-color: var(--xmlui-backgroundColor-Select-badge);
5961
5992
  color: var(--xmlui-textColor-Select-badge);
5962
5993
  }
5963
- ._badge_1ept5_170:hover {
5994
+ ._badge_1cwq0_170:hover {
5964
5995
  background-color: var(--xmlui-backgroundColor-Select-badge--hover);
5965
5996
  color: var(--xmlui-textColor-Select-badge--hover);
5966
5997
  }
5967
- ._badge_1ept5_170:active {
5998
+ ._badge_1cwq0_170:active {
5968
5999
  background-color: var(--xmlui-backgroundColor-Select-badge--active);
5969
6000
  color: var(--xmlui-textColor-Select-badge--active);
5970
6001
  }
5971
6002
 
5972
- ._actions_1ept5_210 {
6003
+ ._actions_1cwq0_210 {
5973
6004
  display: flex;
5974
6005
  align-items: center;
5975
6006
  justify-content: space-between;
5976
6007
  }
5977
6008
 
5978
- ._placeholder_1ept5_216 {
6009
+ ._placeholder_1cwq0_216 {
5979
6010
  display: block;
5980
6011
  color: var(--xmlui-textColor-placeholder-Select);
5981
6012
  }
5982
6013
 
5983
- ._emptyList_1ept5_221 {
6014
+ ._emptyList_1cwq0_221 {
5984
6015
  display: flex;
5985
6016
  gap: 0.2rem;
5986
6017
  padding: 10px 0;
@@ -5990,7 +6021,7 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
5990
6021
  width: 100%;
5991
6022
  }
5992
6023
 
5993
- ._selectScrollUpButton_1ept5_231 {
6024
+ ._selectScrollUpButton_1cwq0_231 {
5994
6025
  display: flex;
5995
6026
  cursor: default;
5996
6027
  align-items: center;
@@ -5999,7 +6030,7 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
5999
6030
  padding-bottom: 0.25rem;
6000
6031
  }
6001
6032
 
6002
- ._selectScrollDownButton_1ept5_240 {
6033
+ ._selectScrollDownButton_1cwq0_240 {
6003
6034
  display: flex;
6004
6035
  cursor: default;
6005
6036
  align-items: center;
@@ -6008,7 +6039,7 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
6008
6039
  padding-bottom: 0.25rem;
6009
6040
  }
6010
6041
 
6011
- ._command_1ept5_249 {
6042
+ ._command_1cwq0_249 {
6012
6043
  display: flex;
6013
6044
  flex-direction: column;
6014
6045
  height: 100%;
@@ -6018,14 +6049,14 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
6018
6049
  background-color: var(--xmlui-backgroundColor-menu-Select);
6019
6050
  }
6020
6051
 
6021
- ._commandInputContainer_1ept5_259 {
6052
+ ._commandInputContainer_1cwq0_259 {
6022
6053
  display: flex;
6023
6054
  align-items: center;
6024
6055
  padding: 0 12px;
6025
6056
  border-bottom: 1px solid var(--xmlui-borderColor);
6026
6057
  }
6027
6058
 
6028
- ._commandInput_1ept5_259 {
6059
+ ._commandInput_1cwq0_259 {
6029
6060
  flex: 1;
6030
6061
  background-color: transparent;
6031
6062
  padding: 0.5rem;
@@ -6033,23 +6064,25 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
6033
6064
  outline: none;
6034
6065
  border: none;
6035
6066
  }
6036
- ._commandInput_1ept5_259:focus {
6067
+ ._commandInput_1cwq0_259:focus {
6037
6068
  outline: none;
6038
6069
  box-shadow: none;
6039
6070
  border: 0;
6040
6071
  }
6041
- ._commandInput_1ept5_259:disabled {
6072
+ ._commandInput_1cwq0_259:disabled {
6042
6073
  cursor: not-allowed;
6043
6074
  opacity: var(--xmlui-opacity-Select--disabled);
6044
6075
  }
6045
6076
 
6046
- ._commandList_1ept5_284 {
6077
+ ._commandList_1cwq0_284 {
6047
6078
  overflow-y: auto;
6048
6079
  overflow-x: hidden;
6049
6080
  }
6050
6081
 
6051
- ._selectContent_1ept5_289 {
6082
+ ._selectContent_1cwq0_289 {
6052
6083
  position: relative;
6084
+ width: 100%;
6085
+ max-height: 280px;
6053
6086
  z-index: 50;
6054
6087
  overflow: auto;
6055
6088
  background-color: var(--xmlui-backgroundColor-menu-Select);
@@ -6057,38 +6090,38 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
6057
6090
  box-shadow: var(--xmlui-boxShadow-menu-Select);
6058
6091
  border: var(--xmlui-borderWidth-menu-Select) solid var(--xmlui-borderColor-menu-Select);
6059
6092
  }
6060
- ._selectContent_1ept5_289[data-state=open] {
6061
- animation: _fadeIn_1ept5_1 0.3s ease-in-out, _zoomIn_1ept5_1 0.3s ease-in-out;
6093
+ ._selectContent_1cwq0_289[data-state=open] {
6094
+ animation: _fadeIn_1cwq0_1 0.1s ease-in-out, _zoomIn_1cwq0_1 0.1s ease-in-out;
6062
6095
  }
6063
- ._selectContent_1ept5_289[data-state=closed] {
6064
- animation: _fadeOut_1ept5_1 0.3s ease-in-out, _zoomOut_1ept5_1 0.3s ease-in-out;
6096
+ ._selectContent_1cwq0_289[data-state=closed] {
6097
+ animation: _fadeOut_1cwq0_1 0.1s ease-in-out, _zoomOut_1cwq0_1 0.1s ease-in-out;
6065
6098
  }
6066
- ._selectContent_1ept5_289[data-side=bottom] {
6067
- animation: _slideInFromTop_1ept5_1 0.08s ease-in-out;
6099
+ ._selectContent_1cwq0_289[data-side=bottom] {
6100
+ animation: _slideInFromTop_1cwq0_1 0.08s ease-in-out;
6068
6101
  }
6069
- ._selectContent_1ept5_289[data-side=left] {
6070
- animation: _slideInFromRight_1ept5_1 0.3s ease-in-out;
6102
+ ._selectContent_1cwq0_289[data-side=left] {
6103
+ animation: _slideInFromRight_1cwq0_1 0.1s ease-in-out;
6071
6104
  }
6072
- ._selectContent_1ept5_289[data-side=right] {
6073
- animation: _slideInFromLeft_1ept5_1 0.3s ease-in-out;
6105
+ ._selectContent_1cwq0_289[data-side=right] {
6106
+ animation: _slideInFromLeft_1cwq0_1 0.1s ease-in-out;
6074
6107
  }
6075
- ._selectContent_1ept5_289[data-side=top] {
6076
- animation: _slideInFromBottom_1ept5_1 0.3s ease-in-out;
6108
+ ._selectContent_1cwq0_289[data-side=top] {
6109
+ animation: _slideInFromBottom_1cwq0_1 0.1s ease-in-out;
6077
6110
  }
6078
- ._selectContent_1ept5_289[data-side=bottom] {
6079
- transform: translateY(0.25rem);
6111
+ ._selectContent_1cwq0_289[data-side=bottom] {
6112
+ transform: translateY(0.15rem);
6080
6113
  }
6081
- ._selectContent_1ept5_289[data-side=left] {
6082
- transform: translateX(-0.25rem);
6114
+ ._selectContent_1cwq0_289[data-side=left] {
6115
+ transform: translateX(-0.15rem);
6083
6116
  }
6084
- ._selectContent_1ept5_289[data-side=right] {
6085
- transform: translateX(0.25rem);
6117
+ ._selectContent_1cwq0_289[data-side=right] {
6118
+ transform: translateX(0.15rem);
6086
6119
  }
6087
- ._selectContent_1ept5_289[data-side=top] {
6088
- transform: translateY(-0.25rem);
6120
+ ._selectContent_1cwq0_289[data-side=top] {
6121
+ transform: translateY(-0.15rem);
6089
6122
  }
6090
6123
 
6091
- ._multiComboboxOption_1ept5_329 ._multiComboboxOptionContent_1ept5_329 {
6124
+ ._multiComboboxOption_1cwq0_331 ._multiComboboxOptionContent_1cwq0_331 {
6092
6125
  width: 100%;
6093
6126
  gap: 1rem;
6094
6127
  display: flex;
@@ -6103,17 +6136,17 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
6103
6136
  padding-top: var(--xmlui-paddingTop-item-Select, var(--xmlui-paddingVertical-item-Select, var(--xmlui-padding-item-Select)));
6104
6137
  padding-bottom: var(--xmlui-paddingBottom-item-Select, var(--xmlui-paddingVertical-item-Select, var(--xmlui-padding-item-Select)));
6105
6138
  }
6106
- ._multiComboboxOption_1ept5_329[data-selected=true] {
6139
+ ._multiComboboxOption_1cwq0_331[data-selected=true] {
6107
6140
  background-color: var(--xmlui-backgroundColor-item-Select--hover);
6108
6141
  }
6109
- ._multiComboboxOption_1ept5_329[data-disabled=true] {
6142
+ ._multiComboboxOption_1cwq0_331[data-disabled=true] {
6110
6143
  pointer-events: none;
6111
6144
  opacity: var(--xmlui-opacity-text-item-Select--disabled);
6112
6145
  cursor: not-allowed;
6113
6146
  font-style: italic;
6114
6147
  }
6115
6148
 
6116
- ._selectItem_1ept5_354 {
6149
+ ._selectItem_1cwq0_356 {
6117
6150
  position: relative;
6118
6151
  display: flex;
6119
6152
  cursor: default;
@@ -6122,13 +6155,13 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
6122
6155
  outline: none;
6123
6156
  font-size: var(--xmlui-fontSize-Select);
6124
6157
  }
6125
- ._selectItem_1ept5_354[data-highlighted] {
6158
+ ._selectItem_1cwq0_356[data-highlighted] {
6126
6159
  background-color: var(--xmlui-backgroundColor-item-Select--hover);
6127
6160
  }
6128
- ._selectItem_1ept5_354[data-state=checked] {
6161
+ ._selectItem_1cwq0_356[data-state=checked] {
6129
6162
  background-color: var(--xmlui-backgroundColor-item-Select--active);
6130
6163
  }
6131
- ._selectItem_1ept5_354 ._selectItemContent_1ept5_369 {
6164
+ ._selectItem_1cwq0_356 ._selectItemContent_1cwq0_371 {
6132
6165
  width: 100%;
6133
6166
  display: flex;
6134
6167
  cursor: default;
@@ -6142,14 +6175,14 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
6142
6175
  padding-bottom: var(--xmlui-paddingBottom-item-Select, var(--xmlui-paddingVertical-item-Select, var(--xmlui-padding-item-Select)));
6143
6176
  }
6144
6177
 
6145
- ._selectItem_1ept5_354[data-disabled] {
6178
+ ._selectItem_1cwq0_356[data-disabled] {
6146
6179
  pointer-events: none;
6147
6180
  opacity: var(--xmlui-opacity-text-item-Select--disabled);
6148
6181
  cursor: not-allowed;
6149
6182
  font-style: italic;
6150
6183
  }
6151
6184
 
6152
- ._selectItemIndicator_1ept5_390 {
6185
+ ._selectItemIndicator_1cwq0_392 {
6153
6186
  position: absolute;
6154
6187
  right: 0.5rem;
6155
6188
  display: flex;
@@ -6160,13 +6193,13 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
6160
6193
  color: var(--xmlui-textColor-indicator-Select);
6161
6194
  }
6162
6195
 
6163
- ._selectViewport_1ept5_401 {
6164
- height: var(--radix-select-trigger-height);
6196
+ ._selectViewport_1cwq0_403 {
6197
+ height: fit-content;
6165
6198
  width: 100%;
6166
6199
  min-width: var(--radix-select-trigger-width);
6167
6200
  }
6168
6201
 
6169
- ._selectEmpty_1ept5_407 {
6202
+ ._selectEmpty_1cwq0_409 {
6170
6203
  display: flex;
6171
6204
  gap: 0.2rem;
6172
6205
  height: 100%;
@@ -6177,11 +6210,11 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
6177
6210
  width: 100%;
6178
6211
  }
6179
6212
 
6180
- ._loading_1ept5_418 {
6213
+ ._loading_1cwq0_420 {
6181
6214
  padding: 0.5rem 1rem;
6182
6215
  }
6183
6216
 
6184
- ._srOnly_1ept5_422 {
6217
+ ._srOnly_1cwq0_424 {
6185
6218
  position: absolute;
6186
6219
  width: 1px;
6187
6220
  height: 1px;
@@ -6193,7 +6226,7 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
6193
6226
  border: 0;
6194
6227
  }
6195
6228
 
6196
- @keyframes _fadeIn_1ept5_1 {
6229
+ @keyframes _fadeIn_1cwq0_1 {
6197
6230
  from {
6198
6231
  opacity: 0;
6199
6232
  }
@@ -6201,7 +6234,7 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
6201
6234
  opacity: 1;
6202
6235
  }
6203
6236
  }
6204
- @keyframes _fadeOut_1ept5_1 {
6237
+ @keyframes _fadeOut_1cwq0_1 {
6205
6238
  from {
6206
6239
  opacity: 1;
6207
6240
  }
@@ -6209,7 +6242,7 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
6209
6242
  opacity: 0;
6210
6243
  }
6211
6244
  }
6212
- @keyframes _zoomIn_1ept5_1 {
6245
+ @keyframes _zoomIn_1cwq0_1 {
6213
6246
  from {
6214
6247
  transform: scale(0.95);
6215
6248
  }
@@ -6217,7 +6250,7 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
6217
6250
  transform: scale(1);
6218
6251
  }
6219
6252
  }
6220
- @keyframes _zoomOut_1ept5_1 {
6253
+ @keyframes _zoomOut_1cwq0_1 {
6221
6254
  from {
6222
6255
  transform: scale(1);
6223
6256
  }
@@ -6225,7 +6258,7 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
6225
6258
  transform: scale(0.95);
6226
6259
  }
6227
6260
  }
6228
- @keyframes _slideInFromTop_1ept5_1 {
6261
+ @keyframes _slideInFromTop_1cwq0_1 {
6229
6262
  from {
6230
6263
  transform: translateY(-0.75rem);
6231
6264
  }
@@ -6233,7 +6266,7 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
6233
6266
  transform: translateY(0);
6234
6267
  }
6235
6268
  }
6236
- @keyframes _slideInFromBottom_1ept5_1 {
6269
+ @keyframes _slideInFromBottom_1cwq0_1 {
6237
6270
  from {
6238
6271
  transform: translateY(0.75rem);
6239
6272
  }
@@ -6241,7 +6274,7 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
6241
6274
  transform: translateY(0);
6242
6275
  }
6243
6276
  }
6244
- @keyframes _slideInFromLeft_1ept5_1 {
6277
+ @keyframes _slideInFromLeft_1cwq0_1 {
6245
6278
  from {
6246
6279
  transform: translateX(-100%);
6247
6280
  }
@@ -6249,7 +6282,7 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
6249
6282
  transform: translateX(0);
6250
6283
  }
6251
6284
  }
6252
- @keyframes _slideInFromRight_1ept5_1 {
6285
+ @keyframes _slideInFromRight_1cwq0_1 {
6253
6286
  from {
6254
6287
  transform: translateX(100%);
6255
6288
  }
@@ -6965,7 +6998,428 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
6965
6998
 
6966
6999
  ._day_range_middle_qilmv_589 {
6967
7000
  border-radius: 0;
6968
- }/*
7001
+ }/* Variables declaration */
7002
+ /* prettier-ignore */
7003
+ .rdp-root {
7004
+ --rdp-accent-color: blue; /* The accent color used for selected days and UI elements. */
7005
+ --rdp-accent-background-color: #f0f0ff; /* The accent background color used for selected days and UI elements. */
7006
+
7007
+ --rdp-day-height: 44px; /* The height of the day cells. */
7008
+ --rdp-day-width: 44px; /* The width of the day cells. */
7009
+
7010
+ --rdp-day_button-border-radius: 100%; /* The border radius of the day cells. */
7011
+ --rdp-day_button-border: 2px solid transparent; /* The border of the day cells. */
7012
+ --rdp-day_button-height: 42px; /* The height of the day cells. */
7013
+ --rdp-day_button-width: 42px; /* The width of the day cells. */
7014
+
7015
+ --rdp-selected-border: 2px solid var(--rdp-accent-color); /* The border of the selected days. */
7016
+ --rdp-disabled-opacity: 0.5; /* The opacity of the disabled days. */
7017
+ --rdp-outside-opacity: 0.75; /* The opacity of the days outside the current month. */
7018
+ --rdp-today-color: var(--rdp-accent-color); /* The color of the today's date. */
7019
+
7020
+ --rdp-dropdown-gap: 0.5rem;/* The gap between the dropdowns used in the month captons. */
7021
+
7022
+ --rdp-months-gap: 2rem; /* The gap between the months in the multi-month view. */
7023
+
7024
+ --rdp-nav_button-disabled-opacity: 0.5; /* The opacity of the disabled navigation buttons. */
7025
+ --rdp-nav_button-height: 2.25rem; /* The height of the navigation buttons. */
7026
+ --rdp-nav_button-width: 2.25rem; /* The width of the navigation buttons. */
7027
+ --rdp-nav-height: 2.75rem; /* The height of the navigation bar. */
7028
+
7029
+ --rdp-range_middle-background-color: var(--rdp-accent-background-color); /* The color of the background for days in the middle of a range. */
7030
+ --rdp-range_middle-color: inherit;/* The color of the range text. */
7031
+
7032
+ --rdp-range_start-color: white; /* The color of the range text. */
7033
+ --rdp-range_start-background: linear-gradient(var(--rdp-gradient-direction), transparent 50%, var(--rdp-range_middle-background-color) 50%); /* Used for the background of the start of the selected range. */
7034
+ --rdp-range_start-date-background-color: var(--rdp-accent-color); /* The background color of the date when at the start of the selected range. */
7035
+
7036
+ --rdp-range_end-background: linear-gradient(var(--rdp-gradient-direction), var(--rdp-range_middle-background-color) 50%, transparent 50%); /* Used for the background of the end of the selected range. */
7037
+ --rdp-range_end-color: white;/* The color of the range text. */
7038
+ --rdp-range_end-date-background-color: var(--rdp-accent-color); /* The background color of the date when at the end of the selected range. */
7039
+
7040
+ --rdp-week_number-border-radius: 100%; /* The border radius of the week number. */
7041
+ --rdp-week_number-border: 2px solid transparent; /* The border of the week number. */
7042
+
7043
+ --rdp-week_number-height: var(--rdp-day-height); /* The height of the week number cells. */
7044
+ --rdp-week_number-opacity: 0.75; /* The opacity of the week number. */
7045
+ --rdp-week_number-width: var(--rdp-day-width); /* The width of the week number cells. */
7046
+ --rdp-weeknumber-text-align: center; /* The text alignment of the weekday cells. */
7047
+
7048
+ --rdp-weekday-opacity: 0.75; /* The opacity of the weekday. */
7049
+ --rdp-weekday-padding: 0.5rem 0rem; /* The padding of the weekday. */
7050
+ --rdp-weekday-text-align: center; /* The text alignment of the weekday cells. */
7051
+
7052
+ --rdp-gradient-direction: 90deg;
7053
+
7054
+ --rdp-animation_duration: 0.3s;
7055
+ --rdp-animation_timing: cubic-bezier(0.4, 0, 0.2, 1);
7056
+ }
7057
+
7058
+ .rdp-root[dir="rtl"] {
7059
+ --rdp-gradient-direction: -90deg;
7060
+ }
7061
+
7062
+ .rdp-root[data-broadcast-calendar="true"] {
7063
+ --rdp-outside-opacity: unset;
7064
+ }
7065
+
7066
+ /* Root of the component. */
7067
+ .rdp-root {
7068
+ position: relative; /* Required to position the navigation toolbar. */
7069
+ box-sizing: border-box;
7070
+ }
7071
+
7072
+ .rdp-root * {
7073
+ box-sizing: border-box;
7074
+ }
7075
+
7076
+ .rdp-day {
7077
+ width: var(--rdp-day-width);
7078
+ height: var(--rdp-day-height);
7079
+ text-align: center;
7080
+ }
7081
+
7082
+ .rdp-day_button {
7083
+ background: none;
7084
+ padding: 0;
7085
+ margin: 0;
7086
+ cursor: pointer;
7087
+ font: inherit;
7088
+ color: inherit;
7089
+ justify-content: center;
7090
+ align-items: center;
7091
+ display: flex;
7092
+
7093
+ width: var(--rdp-day_button-width);
7094
+ height: var(--rdp-day_button-height);
7095
+ border: var(--rdp-day_button-border);
7096
+ border-radius: var(--rdp-day_button-border-radius);
7097
+ }
7098
+
7099
+ .rdp-day_button:disabled {
7100
+ cursor: revert;
7101
+ }
7102
+
7103
+ .rdp-caption_label {
7104
+ z-index: 1;
7105
+
7106
+ position: relative;
7107
+ display: inline-flex;
7108
+ align-items: center;
7109
+
7110
+ white-space: nowrap;
7111
+ border: 0;
7112
+ }
7113
+
7114
+ .rdp-dropdown:focus-visible ~ .rdp-caption_label {
7115
+ outline: 5px auto Highlight;
7116
+ outline: 5px auto -webkit-focus-ring-color;
7117
+ }
7118
+
7119
+ .rdp-button_next,
7120
+ .rdp-button_previous {
7121
+ border: none;
7122
+ background: none;
7123
+ padding: 0;
7124
+ margin: 0;
7125
+ cursor: pointer;
7126
+ font: inherit;
7127
+ color: inherit;
7128
+ -moz-appearance: none;
7129
+ -webkit-appearance: none;
7130
+ display: inline-flex;
7131
+ align-items: center;
7132
+ justify-content: center;
7133
+ position: relative;
7134
+ appearance: none;
7135
+
7136
+ width: var(--rdp-nav_button-width);
7137
+ height: var(--rdp-nav_button-height);
7138
+ }
7139
+
7140
+ .rdp-button_next:disabled,
7141
+ .rdp-button_next[aria-disabled="true"],
7142
+ .rdp-button_previous:disabled,
7143
+ .rdp-button_previous[aria-disabled="true"] {
7144
+ cursor: revert;
7145
+
7146
+ opacity: var(--rdp-nav_button-disabled-opacity);
7147
+ }
7148
+
7149
+ .rdp-chevron {
7150
+ display: inline-block;
7151
+ fill: var(--rdp-accent-color);
7152
+ }
7153
+
7154
+ .rdp-root[dir="rtl"] .rdp-nav .rdp-chevron {
7155
+ transform: rotate(180deg);
7156
+ transform-origin: 50%;
7157
+ }
7158
+
7159
+ .rdp-dropdowns {
7160
+ position: relative;
7161
+ display: inline-flex;
7162
+ align-items: center;
7163
+ gap: var(--rdp-dropdown-gap);
7164
+ }
7165
+ .rdp-dropdown {
7166
+ z-index: 2;
7167
+
7168
+ /* Reset */
7169
+ opacity: 0;
7170
+ appearance: none;
7171
+ position: absolute;
7172
+ inset-block-start: 0;
7173
+ inset-block-end: 0;
7174
+ inset-inline-start: 0;
7175
+ width: 100%;
7176
+ margin: 0;
7177
+ padding: 0;
7178
+ cursor: inherit;
7179
+ border: none;
7180
+ line-height: inherit;
7181
+ }
7182
+
7183
+ .rdp-dropdown_root {
7184
+ position: relative;
7185
+ display: inline-flex;
7186
+ align-items: center;
7187
+ }
7188
+
7189
+ .rdp-dropdown_root[data-disabled="true"] .rdp-chevron {
7190
+ opacity: var(--rdp-disabled-opacity);
7191
+ }
7192
+
7193
+ .rdp-month_caption {
7194
+ display: flex;
7195
+ align-content: center;
7196
+ height: var(--rdp-nav-height);
7197
+ font-weight: bold;
7198
+ font-size: large;
7199
+ }
7200
+
7201
+ .rdp-months {
7202
+ position: relative;
7203
+ display: flex;
7204
+ flex-wrap: wrap;
7205
+ gap: var(--rdp-months-gap);
7206
+ max-width: fit-content;
7207
+ }
7208
+
7209
+ .rdp-month_grid {
7210
+ border-collapse: collapse;
7211
+ }
7212
+
7213
+ .rdp-nav {
7214
+ position: absolute;
7215
+ inset-block-start: 0;
7216
+ inset-inline-end: 0;
7217
+
7218
+ display: flex;
7219
+ align-items: center;
7220
+
7221
+ height: var(--rdp-nav-height);
7222
+ }
7223
+
7224
+ .rdp-weekday {
7225
+ opacity: var(--rdp-weekday-opacity);
7226
+ padding: var(--rdp-weekday-padding);
7227
+ font-weight: 500;
7228
+ font-size: smaller;
7229
+ text-align: var(--rdp-weekday-text-align);
7230
+ text-transform: var(--rdp-weekday-text-transform);
7231
+ }
7232
+
7233
+ .rdp-week_number {
7234
+ opacity: var(--rdp-week_number-opacity);
7235
+ font-weight: 400;
7236
+ font-size: small;
7237
+ height: var(--rdp-week_number-height);
7238
+ width: var(--rdp-week_number-width);
7239
+ border: var(--rdp-week_number-border);
7240
+ border-radius: var(--rdp-week_number-border-radius);
7241
+ text-align: var(--rdp-weeknumber-text-align);
7242
+ }
7243
+
7244
+ /* DAY MODIFIERS */
7245
+ .rdp-today:not(.rdp-outside) {
7246
+ color: var(--rdp-today-color);
7247
+ }
7248
+
7249
+ .rdp-selected {
7250
+ font-weight: bold;
7251
+ font-size: large;
7252
+ }
7253
+
7254
+ .rdp-selected .rdp-day_button {
7255
+ border: var(--rdp-selected-border);
7256
+ }
7257
+
7258
+ .rdp-outside {
7259
+ opacity: var(--rdp-outside-opacity);
7260
+ }
7261
+
7262
+ .rdp-disabled {
7263
+ opacity: var(--rdp-disabled-opacity);
7264
+ }
7265
+
7266
+ .rdp-hidden {
7267
+ visibility: hidden;
7268
+ color: var(--rdp-range_start-color);
7269
+ }
7270
+
7271
+ .rdp-range_start {
7272
+ background: var(--rdp-range_start-background);
7273
+ }
7274
+
7275
+ .rdp-range_start .rdp-day_button {
7276
+ background-color: var(--rdp-range_start-date-background-color);
7277
+ color: var(--rdp-range_start-color);
7278
+ }
7279
+
7280
+ .rdp-range_middle {
7281
+ background-color: var(--rdp-range_middle-background-color);
7282
+ }
7283
+
7284
+ .rdp-range_middle .rdp-day_button {
7285
+ border-color: transparent;
7286
+ border: unset;
7287
+ border-radius: unset;
7288
+ color: var(--rdp-range_middle-color);
7289
+ }
7290
+
7291
+ .rdp-range_end {
7292
+ background: var(--rdp-range_end-background);
7293
+ color: var(--rdp-range_end-color);
7294
+ }
7295
+
7296
+ .rdp-range_end .rdp-day_button {
7297
+ color: var(--rdp-range_start-color);
7298
+ background-color: var(--rdp-range_end-date-background-color);
7299
+ }
7300
+
7301
+ .rdp-range_start.rdp-range_end {
7302
+ background: revert;
7303
+ }
7304
+
7305
+ .rdp-focusable {
7306
+ cursor: pointer;
7307
+ }
7308
+
7309
+ @keyframes rdp-slide_in_left {
7310
+ 0% {
7311
+ transform: translateX(-100%);
7312
+ }
7313
+ 100% {
7314
+ transform: translateX(0);
7315
+ }
7316
+ }
7317
+
7318
+ @keyframes rdp-slide_in_right {
7319
+ 0% {
7320
+ transform: translateX(100%);
7321
+ }
7322
+ 100% {
7323
+ transform: translateX(0);
7324
+ }
7325
+ }
7326
+
7327
+ @keyframes rdp-slide_out_left {
7328
+ 0% {
7329
+ transform: translateX(0);
7330
+ }
7331
+ 100% {
7332
+ transform: translateX(-100%);
7333
+ }
7334
+ }
7335
+
7336
+ @keyframes rdp-slide_out_right {
7337
+ 0% {
7338
+ transform: translateX(0);
7339
+ }
7340
+ 100% {
7341
+ transform: translateX(100%);
7342
+ }
7343
+ }
7344
+
7345
+ .rdp-weeks_before_enter {
7346
+ animation: rdp-slide_in_left var(--rdp-animation_duration)
7347
+ var(--rdp-animation_timing) forwards;
7348
+ }
7349
+
7350
+ .rdp-weeks_before_exit {
7351
+ animation: rdp-slide_out_left var(--rdp-animation_duration)
7352
+ var(--rdp-animation_timing) forwards;
7353
+ }
7354
+
7355
+ .rdp-weeks_after_enter {
7356
+ animation: rdp-slide_in_right var(--rdp-animation_duration)
7357
+ var(--rdp-animation_timing) forwards;
7358
+ }
7359
+
7360
+ .rdp-weeks_after_exit {
7361
+ animation: rdp-slide_out_right var(--rdp-animation_duration)
7362
+ var(--rdp-animation_timing) forwards;
7363
+ }
7364
+
7365
+ .rdp-root[dir="rtl"] .rdp-weeks_after_enter {
7366
+ animation: rdp-slide_in_left var(--rdp-animation_duration)
7367
+ var(--rdp-animation_timing) forwards;
7368
+ }
7369
+
7370
+ .rdp-root[dir="rtl"] .rdp-weeks_before_exit {
7371
+ animation: rdp-slide_out_right var(--rdp-animation_duration)
7372
+ var(--rdp-animation_timing) forwards;
7373
+ }
7374
+
7375
+ .rdp-root[dir="rtl"] .rdp-weeks_before_enter {
7376
+ animation: rdp-slide_in_right var(--rdp-animation_duration)
7377
+ var(--rdp-animation_timing) forwards;
7378
+ }
7379
+
7380
+ .rdp-root[dir="rtl"] .rdp-weeks_after_exit {
7381
+ animation: rdp-slide_out_left var(--rdp-animation_duration)
7382
+ var(--rdp-animation_timing) forwards;
7383
+ }
7384
+
7385
+ @keyframes rdp-fade_in {
7386
+ from {
7387
+ opacity: 0;
7388
+ }
7389
+ to {
7390
+ opacity: 1;
7391
+ }
7392
+ }
7393
+
7394
+ @keyframes rdp-fade_out {
7395
+ from {
7396
+ opacity: 1;
7397
+ }
7398
+ to {
7399
+ opacity: 0;
7400
+ }
7401
+ }
7402
+
7403
+ .rdp-caption_after_enter {
7404
+ animation: rdp-fade_in var(--rdp-animation_duration)
7405
+ var(--rdp-animation_timing) forwards;
7406
+ }
7407
+
7408
+ .rdp-caption_after_exit {
7409
+ animation: rdp-fade_out var(--rdp-animation_duration)
7410
+ var(--rdp-animation_timing) forwards;
7411
+ }
7412
+
7413
+ .rdp-caption_before_enter {
7414
+ animation: rdp-fade_in var(--rdp-animation_duration)
7415
+ var(--rdp-animation_timing) forwards;
7416
+ }
7417
+
7418
+ .rdp-caption_before_exit {
7419
+ animation: rdp-fade_out var(--rdp-animation_duration)
7420
+ var(--rdp-animation_timing) forwards;
7421
+ }
7422
+ /*
6969
7423
  * This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
6970
7424
  *
6971
7425
  * We use a subset of these CSS variables in themes.
@@ -7091,15 +7545,16 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
7091
7545
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
7092
7546
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
7093
7547
  */
7094
- ._command_17zx6_13 {
7548
+ ._command_1xx47_13 {
7095
7549
  width: 100%;
7096
7550
  height: auto;
7097
7551
  overflow: visible;
7098
7552
  background-color: transparent;
7099
7553
  }
7100
7554
 
7101
- ._badgeListWrapper_17zx6_20 {
7555
+ ._badgeListWrapper_1xx47_20 {
7102
7556
  outline: none;
7557
+ width: 100%;
7103
7558
  display: flex;
7104
7559
  padding: var(--xmlui-space-1) var(--xmlui-space-2);
7105
7560
  min-height: 2.5rem; /* h-12 */
@@ -7112,16 +7567,16 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
7112
7567
  box-shadow: var(--xmlui-boxShadow-AutoComplete-default);
7113
7568
  color: var(--xmlui-textColor-AutoComplete-default);
7114
7569
  }
7115
- ._badgeListWrapper_17zx6_20:hover {
7570
+ ._badgeListWrapper_1xx47_20:hover {
7116
7571
  border-color: var(--xmlui-borderColor-AutoComplete-default--hover);
7117
7572
  background-color: var(--xmlui-backgroundColor-AutoComplete-default--hover);
7118
7573
  box-shadow: var(--xmlui-boxShadow-AutoComplete-default--hover);
7119
7574
  color: var(--xmlui-textColor-AutoComplete-default--hover);
7120
7575
  }
7121
- ._badgeListWrapper_17zx6_20::placeholder {
7576
+ ._badgeListWrapper_1xx47_20::placeholder {
7122
7577
  color: var(--xmlui-textColor-placeholder-AutoComplete-default);
7123
7578
  }
7124
- ._badgeListWrapper_17zx6_20._error_17zx6_43 {
7579
+ ._badgeListWrapper_1xx47_20._error_1xx47_44 {
7125
7580
  border-radius: var(--xmlui-borderRadius-AutoComplete-error);
7126
7581
  border-color: var(--xmlui-borderColor-AutoComplete-error);
7127
7582
  border-width: var(--xmlui-borderWidth-AutoComplete-error);
@@ -7131,16 +7586,16 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
7131
7586
  box-shadow: var(--xmlui-boxShadow-AutoComplete-error);
7132
7587
  color: var(--xmlui-textColor-AutoComplete-error);
7133
7588
  }
7134
- ._badgeListWrapper_17zx6_20._error_17zx6_43:hover {
7589
+ ._badgeListWrapper_1xx47_20._error_1xx47_44:hover {
7135
7590
  border-color: var(--xmlui-borderColor-AutoComplete-error--hover);
7136
7591
  background-color: var(--xmlui-backgroundColor-AutoComplete-error--hover);
7137
7592
  box-shadow: var(--xmlui-boxShadow-AutoComplete-error--hover);
7138
7593
  color: var(--xmlui-textColor-AutoComplete-error--hover);
7139
7594
  }
7140
- ._badgeListWrapper_17zx6_20._error_17zx6_43::placeholder {
7595
+ ._badgeListWrapper_1xx47_20._error_1xx47_44::placeholder {
7141
7596
  color: var(--xmlui-textColor-placeholder-AutoComplete-error);
7142
7597
  }
7143
- ._badgeListWrapper_17zx6_20._warning_17zx6_62 {
7598
+ ._badgeListWrapper_1xx47_20._warning_1xx47_63 {
7144
7599
  border-radius: var(--xmlui-borderRadius-AutoComplete-warning);
7145
7600
  border-color: var(--xmlui-borderColor-AutoComplete-warning);
7146
7601
  border-width: var(--xmlui-borderWidth-AutoComplete-warning);
@@ -7150,16 +7605,16 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
7150
7605
  box-shadow: var(--xmlui-boxShadow-AutoComplete-warning);
7151
7606
  color: var(--xmlui-textColor-AutoComplete-warning);
7152
7607
  }
7153
- ._badgeListWrapper_17zx6_20._warning_17zx6_62:hover {
7608
+ ._badgeListWrapper_1xx47_20._warning_1xx47_63:hover {
7154
7609
  border-color: var(--xmlui-borderColor-AutoComplete-warning--hover);
7155
7610
  background-color: var(--xmlui-backgroundColor-AutoComplete-warning--hover);
7156
7611
  box-shadow: var(--xmlui-boxShadow-AutoComplete-warning--hover);
7157
7612
  color: var(--xmlui-textColor-AutoComplete-warning--hover);
7158
7613
  }
7159
- ._badgeListWrapper_17zx6_20._warning_17zx6_62::placeholder {
7614
+ ._badgeListWrapper_1xx47_20._warning_1xx47_63::placeholder {
7160
7615
  color: var(--xmlui-textColor-placeholder-AutoComplete-warning);
7161
7616
  }
7162
- ._badgeListWrapper_17zx6_20._valid_17zx6_81 {
7617
+ ._badgeListWrapper_1xx47_20._valid_1xx47_82 {
7163
7618
  border-radius: var(--xmlui-borderRadius-AutoComplete-success);
7164
7619
  border-color: var(--xmlui-borderColor-AutoComplete-success);
7165
7620
  border-width: var(--xmlui-borderWidth-AutoComplete-success);
@@ -7169,30 +7624,30 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
7169
7624
  box-shadow: var(--xmlui-boxShadow-AutoComplete-success);
7170
7625
  color: var(--xmlui-textColor-AutoComplete-success);
7171
7626
  }
7172
- ._badgeListWrapper_17zx6_20._valid_17zx6_81:hover {
7627
+ ._badgeListWrapper_1xx47_20._valid_1xx47_82:hover {
7173
7628
  border-color: var(--xmlui-borderColor-AutoComplete-success--hover);
7174
7629
  background-color: var(--xmlui-backgroundColor-AutoComplete-success--hover);
7175
7630
  box-shadow: var(--xmlui-boxShadow-AutoComplete-success--hover);
7176
7631
  color: var(--xmlui-textColor-AutoComplete-success--hover);
7177
7632
  }
7178
- ._badgeListWrapper_17zx6_20._valid_17zx6_81::placeholder {
7633
+ ._badgeListWrapper_1xx47_20._valid_1xx47_82::placeholder {
7179
7634
  color: var(--xmlui-textColor-placeholder-AutoComplete-success);
7180
7635
  }
7181
- ._badgeListWrapper_17zx6_20._disabled_17zx6_100 {
7636
+ ._badgeListWrapper_1xx47_20._disabled_1xx47_101 {
7182
7637
  cursor: not-allowed;
7183
7638
  opacity: 0.5;
7184
7639
  background-color: var(--xmlui-backgroundColor-AutoComplete--disabled);
7185
7640
  color: var(--xmlui-textColor-AutoComplete--disabled);
7186
7641
  border-color: var(--xmlui-borderColor-AutoComplete--disabled);
7187
7642
  }
7188
- ._badgeListWrapper_17zx6_20._focused_17zx6_107 {
7643
+ ._badgeListWrapper_1xx47_20._focused_1xx47_108 {
7189
7644
  outline-width: var(--xmlui-outlineWidth-AutoComplete--focus);
7190
7645
  outline-color: var(--xmlui-outlineColor-AutoComplete--focus);
7191
7646
  outline-style: var(--xmlui-outlineStyle-AutoComplete--focus);
7192
7647
  outline-offset: var(--xmlui-outlineOffset-AutoComplete--focus);
7193
7648
  }
7194
7649
 
7195
- ._badgeList_17zx6_20 {
7650
+ ._badgeList_1xx47_20 {
7196
7651
  position: relative;
7197
7652
  flex-grow: 1;
7198
7653
  align-items: center;
@@ -7201,7 +7656,7 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
7201
7656
  gap: 0.25rem;
7202
7657
  }
7203
7658
 
7204
- ._badge_17zx6_20 {
7659
+ ._badge_1xx47_20 {
7205
7660
  width: fit-content;
7206
7661
  height: fit-content;
7207
7662
  min-width: 0;
@@ -7218,38 +7673,38 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
7218
7673
  background-color: var(--xmlui-backgroundColor-AutoComplete-badge);
7219
7674
  color: var(--xmlui-textColor-AutoComplete-badge);
7220
7675
  }
7221
- ._badge_17zx6_20:hover {
7676
+ ._badge_1xx47_20:hover {
7222
7677
  background-color: var(--xmlui-backgroundColor-AutoComplete-badge--hover);
7223
7678
  color: var(--xmlui-textColor-AutoComplete-badge--hover);
7224
7679
  }
7225
- ._badge_17zx6_20:active {
7680
+ ._badge_1xx47_20:active {
7226
7681
  background-color: var(--xmlui-backgroundColor-AutoComplete-badge--active);
7227
7682
  color: var(--xmlui-textColor-AutoComplete-badge--active);
7228
7683
  }
7229
7684
 
7230
- ._commandInput_17zx6_149 {
7685
+ ._commandInput_1xx47_150 {
7231
7686
  flex: 1;
7232
7687
  background-color: transparent;
7233
7688
  outline: none;
7234
7689
  }
7235
- ._commandInput_17zx6_149:disabled {
7690
+ ._commandInput_1xx47_150:disabled {
7236
7691
  cursor: not-allowed;
7237
7692
  opacity: 0.5;
7238
7693
  }
7239
- ._commandInput_17zx6_149::placeholder {
7694
+ ._commandInput_1xx47_150::placeholder {
7240
7695
  color: var(--xmlui-textColor-placeholder-AutoComplete);
7241
7696
  }
7242
- ._commandInput_17zx6_149:focus-within {
7697
+ ._commandInput_1xx47_150:focus-within {
7243
7698
  outline: none;
7244
7699
  }
7245
7700
 
7246
- ._actions_17zx6_165 {
7701
+ ._actions_1xx47_166 {
7247
7702
  display: flex;
7248
7703
  align-items: center;
7249
7704
  justify-content: space-between;
7250
7705
  }
7251
7706
 
7252
- ._autoCompleteEmpty_17zx6_171 {
7707
+ ._autoCompleteEmpty_1xx47_172 {
7253
7708
  display: flex;
7254
7709
  gap: 0.2rem;
7255
7710
  padding: 10px 0;
@@ -7259,7 +7714,7 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
7259
7714
  width: 100%;
7260
7715
  }
7261
7716
 
7262
- ._commandList_17zx6_181 {
7717
+ ._commandList_1xx47_182 {
7263
7718
  position: absolute;
7264
7719
  overflow: hidden;
7265
7720
  top: 0.25rem;
@@ -7269,10 +7724,10 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
7269
7724
  background-color: var(--xmlui-backgroundColor-menu-AutoComplete);
7270
7725
  border-radius: var(--xmlui-borderRadius-menu-AutoComplete);
7271
7726
  box-shadow: var(--xmlui-boxShadow-menu-AutoComplete);
7272
- animation: _fade-in_17zx6_1 0.3s ease-in-out; /* animate-in */
7727
+ animation: _fade-in_1xx47_1 0.3s ease-in-out; /* animate-in */
7273
7728
  }
7274
7729
 
7275
- ._autoCompleteOption_17zx6_194 {
7730
+ ._autoCompleteOption_1xx47_195 {
7276
7731
  padding: 0.5rem 1rem;
7277
7732
  display: flex;
7278
7733
  gap: 1rem;
@@ -7282,10 +7737,10 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
7282
7737
  transition: background-color 0.2s ease;
7283
7738
  background-color: var(--xmlui-backgroundColor-item-AutoComplete);
7284
7739
  }
7285
- ._autoCompleteOption_17zx6_194[data-selected=true] {
7740
+ ._autoCompleteOption_1xx47_195[data-selected=true] {
7286
7741
  background-color: var(--xmlui-backgroundColor-item-AutoComplete--hover);
7287
7742
  }
7288
- ._autoCompleteOption_17zx6_194[data-disabled=true] {
7743
+ ._autoCompleteOption_1xx47_195[data-disabled=true] {
7289
7744
  pointer-events: none;
7290
7745
  opacity: 0.5;
7291
7746
  cursor: not-allowed;
@@ -7594,7 +8049,7 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
7594
8049
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
7595
8050
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
7596
8051
  */
7597
- ._outerWrapper_12zu8_13 {
8052
+ ._outerWrapper_1fv9c_13 {
7598
8053
  border-left: var(--xmlui-borderLeft-Footer, var(--xmlui-borderHorizontal-Footer, var(--xmlui-border-Footer)));
7599
8054
  border-right: var(--xmlui-borderRight-Footer, var(--xmlui-borderHorizontal-Footer, var(--xmlui-border-Footer)));
7600
8055
  border-top: var(--xmlui-borderTop-Footer, var(--xmlui-borderVertical-Footer, var(--xmlui-border-Footer)));
@@ -7619,7 +8074,7 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
7619
8074
  height: var(--xmlui-height-Footer);
7620
8075
  }
7621
8076
 
7622
- ._wrapper_12zu8_38 {
8077
+ ._wrapper_1fv9c_38 {
7623
8078
  width: 100%;
7624
8079
  display: flex;
7625
8080
  min-height: 0;
@@ -7630,36 +8085,13 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
7630
8085
  padding-right: var(--xmlui-paddingRight-Footer, var(--xmlui-paddingHorizontal-Footer, var(--xmlui-padding-Footer)));
7631
8086
  padding-top: var(--xmlui-paddingTop-Footer, var(--xmlui-paddingVertical-Footer, var(--xmlui-padding-Footer)));
7632
8087
  padding-bottom: var(--xmlui-paddingBottom-Footer, var(--xmlui-paddingVertical-Footer, var(--xmlui-padding-Footer)));
7633
- color: var(--xmlui-textColor-Footer);
7634
- font-family: var(--xmlui-fontFamily-Footer);
7635
8088
  font-size: var(--xmlui-fontSize-Footer);
7636
- font-style: var(--xmlui-fontStyle-Footer);
7637
- font-weight: var(--xmlui-fontWeight-Footer);
7638
- font-stretch: var(--xmlui-fontStretch-Footer);
7639
- text-decoration-line: var(--xmlui-textDecorationLine-Footer);
7640
- text-decoration-color: var(--xmlui-textDecorationColor-Footer);
7641
- text-decoration-style: var(--xmlui-textDecorationStyle-Footer);
7642
- text-decoration-thickness: var(--xmlui-textDecorationThickness-Footer);
7643
- text-underline-offset: var(--xmlui-textUnderlineOffset-Footer);
7644
- line-height: var(--xmlui-lineHeight-Footer);
7645
- background-color: var(--xmlui-backgroundColor-Footer);
7646
- text-transform: var(--xmlui-textTransform-Footer);
7647
- letter-spacing: var(--xmlui-letterSpacing-Footer);
7648
- word-spacing: var(--xmlui-wordSpacing-Footer);
7649
- text-shadow: var(--xmlui-textShadow-Footer);
7650
- text-indent: var(--xmlui-textIndent-Footer);
7651
- text-align: var(--xmlui-textAlign-Footer);
7652
- text-align-last: var(--xmlui-textAlignLast-Footer);
7653
- word-break: var(--xmlui-wordBreak-Footer);
7654
- word-wrap: var(--xmlui-wordWrap-Footer);
7655
- direction: var(--xmlui-direction-Footer);
7656
- writing-mode: var(--xmlui-writingMode-Footer);
7657
- line-break: var(--xmlui-lineBreak-Footer);
7658
8089
  align-items: var(--xmlui-verticalAlign-Footer);
7659
8090
  max-width: var(--xmlui-maxWidth-content-Footer);
8091
+ color: var(--xmlui-textColor-Footer);
7660
8092
  margin: 0 auto;
7661
8093
  }
7662
- ._wrapper_12zu8_38._full_12zu8_78 {
8094
+ ._wrapper_1fv9c_38._full_1fv9c_55 {
7663
8095
  max-width: 100%;
7664
8096
  }/*
7665
8097
  * This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
@@ -7702,18 +8134,55 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
7702
8134
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
7703
8135
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
7704
8136
  */
7705
- ._markdownContent_mgetx_13 {
7706
- max-width: var(--xmlui-maxWidth-Markdown);
8137
+ ._markdownContent_1q19g_13 {
7707
8138
  padding-top: var(--xmlui-paddingTop-Markdown);
7708
8139
  padding-bottom: var(--xmlui-paddingBottom-Markdown);
7709
8140
  background-color: var(--xmlui-backgroundColor-Markdown);
8141
+ min-width: 0;
8142
+ width: 100%;
8143
+ }
8144
+ ._markdownContent_1q19g_13 h1 {
8145
+ margin-top: var(--xmlui-marginTop-H1-markdown) !important;
8146
+ margin-bottom: var(--xmlui-marginBottom-H1-markdown) !important;
8147
+ font-size: var(--xmlui-fontSize-H1-markdown) !important;
8148
+ }
8149
+ ._markdownContent_1q19g_13 h2 {
8150
+ margin-top: var(--xmlui-marginTop-H2-markdown) !important;
8151
+ margin-bottom: var(--xmlui-marginBottom-H2-markdown) !important;
8152
+ }
8153
+ ._markdownContent_1q19g_13 h3 {
8154
+ margin-top: var(--xmlui-marginTop-H3-markdown) !important;
8155
+ margin-bottom: var(--xmlui-marginBottom-H3-markdown) !important;
7710
8156
  }
7711
- ._markdownContent_mgetx_13 ._blockquote_mgetx_19 {
8157
+ ._markdownContent_1q19g_13 h4 {
8158
+ margin-top: var(--xmlui-marginTop-H4-markdown) !important;
8159
+ margin-bottom: var(--xmlui-marginBottom-H4-markdown) !important;
8160
+ }
8161
+ ._markdownContent_1q19g_13 h5 {
8162
+ margin-top: var(--xmlui-marginTop-H5-markdown) !important;
8163
+ margin-bottom: var(--xmlui-marginBottom-H5-markdown) !important;
8164
+ }
8165
+ ._markdownContent_1q19g_13 h6 {
8166
+ margin-top: var(--xmlui-marginTop-H6-markdown) !important;
8167
+ margin-bottom: var(--xmlui-marginBottom-H6-markdown) !important;
8168
+ }
8169
+ ._markdownContent_1q19g_13 ._blockquote_1q19g_45 {
7712
8170
  position: relative;
7713
8171
  margin-top: var(--xmlui-marginTop-Blockquote);
7714
8172
  margin-bottom: var(--xmlui-marginBottom-Blockquote);
7715
8173
  background-color: var(--xmlui-backgroundColor-Blockquote);
7716
- padding-left: var(--xmlui-paddingLeft-Blockquote);
8174
+ }
8175
+ ._markdownContent_1q19g_13 ._blockquote_1q19g_45::before {
8176
+ background-color: var(--xmlui-accentColor-Blockquote);
8177
+ position: absolute;
8178
+ top: 0;
8179
+ left: 0;
8180
+ display: block;
8181
+ content: "";
8182
+ height: 100%;
8183
+ width: var(--xmlui-accentWidth-Blockquote);
8184
+ }
8185
+ ._markdownContent_1q19g_13 ._blockquoteContainer_1q19g_61 {
7717
8186
  border-left: var(--xmlui-borderLeft-Blockquote, var(--xmlui-borderHorizontal-Blockquote, var(--xmlui-border-Blockquote)));
7718
8187
  border-right: var(--xmlui-borderRight-Blockquote, var(--xmlui-borderHorizontal-Blockquote, var(--xmlui-border-Blockquote)));
7719
8188
  border-top: var(--xmlui-borderTop-Blockquote, var(--xmlui-borderVertical-Blockquote, var(--xmlui-border-Blockquote)));
@@ -7741,60 +8210,78 @@ button._selectTrigger_1ept5_46._valid_1ept5_37::placeholder {
7741
8210
  padding-top: var(--xmlui-paddingTop-Blockquote, var(--xmlui-paddingVertical-Blockquote, var(--xmlui-padding-Blockquote)));
7742
8211
  padding-bottom: var(--xmlui-paddingBottom-Blockquote, var(--xmlui-paddingVertical-Blockquote, var(--xmlui-padding-Blockquote)));
7743
8212
  }
7744
- ._markdownContent_mgetx_13 ._blockquote_mgetx_19::before {
7745
- background-color: var(--xmlui-accentColor-Blockquote);
7746
- position: absolute;
7747
- top: 0;
7748
- left: 0;
7749
- display: block;
7750
- content: "";
7751
- height: 100%;
7752
- width: var(--xmlui-accentWidth-Blockquote);
7753
- }
7754
- ._markdownContent_mgetx_13 ._blockquoteContainer_mgetx_62 {
7755
- padding: 0.5rem 0.5rem 0.1rem 0.5rem;
7756
- }
7757
- ._markdownContent_mgetx_13 ._admonitionBlockquote_mgetx_65 {
8213
+ ._markdownContent_1q19g_13 ._admonitionBlockquote_1q19g_89 {
7758
8214
  margin-top: var(--xmlui-marginTop-Admonition);
7759
8215
  margin-bottom: var(--xmlui-marginBottom-Admonition);
7760
8216
  background-color: var(--xmlui-backgroundColor-Admonition);
7761
8217
  border-radius: var(--xmlui-borderRadius-Admonition);
7762
- }
7763
- ._markdownContent_mgetx_13 ._admonitionContainer_mgetx_71 {
8218
+ border-left: var(--xmlui-borderLeft-Admonition, var(--xmlui-borderHorizontal-Admonition, var(--xmlui-border-Admonition)));
8219
+ border-right: var(--xmlui-borderRight-Admonition, var(--xmlui-borderHorizontal-Admonition, var(--xmlui-border-Admonition)));
8220
+ border-top: var(--xmlui-borderTop-Admonition, var(--xmlui-borderVertical-Admonition, var(--xmlui-border-Admonition)));
8221
+ border-bottom: var(--xmlui-borderBottom-Admonition, var(--xmlui-borderVertical-Admonition, var(--xmlui-border-Admonition)));
8222
+ border-left-style: var(--xmlui-borderLeftStyle-Admonition, var(--xmlui-borderHorizontalStyle-Admonition, var(--xmlui-borderStyle-Admonition)));
8223
+ border-right-style: var(--xmlui-borderRightStyle-Admonition, var(--xmlui-borderHorizontalStyle-Admonition, var(--xmlui-borderStyle-Admonition)));
8224
+ border-top-style: var(--xmlui-borderTopStyle-Admonition, var(--xmlui-borderVerticalStyle-Admonition, var(--xmlui-borderStyle-Admonition)));
8225
+ border-bottom-style: var(--xmlui-borderBottomStyle-Admonition, var(--xmlui-borderVerticalStyle-Admonition, var(--xmlui-borderStyle-Admonition)));
8226
+ border-left-width: var(--xmlui-borderLeftWidth-Admonition, var(--xmlui-borderHorizontalWidth-Admonition, var(--xmlui-borderWidth-Admonition)));
8227
+ border-right-width: var(--xmlui-borderRightWidth-Admonition, var(--xmlui-borderHorizontalWidth-Admonition, var(--xmlui-borderWidth-Admonition)));
8228
+ border-top-width: var(--xmlui-borderTopWidth-Admonition, var(--xmlui-borderVerticalWidth-Admonition, var(--xmlui-borderWidth-Admonition)));
8229
+ border-bottom-width: var(--xmlui-borderBottomWidth-Admonition, var(--xmlui-borderVerticalWidth-Admonition, var(--xmlui-borderWidth-Admonition)));
8230
+ border-left-color: var(--xmlui-borderLeftColor-Admonition, var(--xmlui-borderHorizontalColor-Admonition, var(--xmlui-borderColor-Admonition)));
8231
+ border-right-color: var(--xmlui-borderRightColor-Admonition, var(--xmlui-borderHorizontalColor-Admonition, var(--xmlui-borderColor-Admonition)));
8232
+ border-top-color: var(--xmlui-borderTopColor-Admonition, var(--xmlui-borderVerticalColor-Admonition, var(--xmlui-borderColor-Admonition)));
8233
+ border-bottom-color: var(--xmlui-borderBottomColor-Admonition, var(--xmlui-borderVerticalColor-Admonition, var(--xmlui-borderColor-Admonition)));
8234
+ border-radius: var(--xmlui-borderRadius-Admonition);
8235
+ border-start-start-radius: var(--xmlui-borderStartStartRadius-Admonition, var(--xmlui-borderRadius-Admonition));
8236
+ border-start-end-radius: var(--xmlui-borderStartEndRadius-Admonition, var(--xmlui-borderRadius-Admonition));
8237
+ border-end-start-radius: var(--xmlui-borderEndStartRadius-Admonition, var(--xmlui-borderRadius-Admonition));
8238
+ border-end-end-radius: var(--xmlui-borderEndEndRadius-Admonition, var(--xmlui-borderRadius-Admonition));
8239
+ padding: var(--xmlui-padding-Admonition);
8240
+ padding-left: var(--xmlui-paddingLeft-Admonition, var(--xmlui-paddingHorizontal-Admonition, var(--xmlui-padding-Admonition)));
8241
+ padding-right: var(--xmlui-paddingRight-Admonition, var(--xmlui-paddingHorizontal-Admonition, var(--xmlui-padding-Admonition)));
8242
+ padding-top: var(--xmlui-paddingTop-Admonition, var(--xmlui-paddingVertical-Admonition, var(--xmlui-padding-Admonition)));
8243
+ padding-bottom: var(--xmlui-paddingBottom-Admonition, var(--xmlui-paddingVertical-Admonition, var(--xmlui-padding-Admonition)));
8244
+ }
8245
+ ._markdownContent_1q19g_13 ._admonitionContainer_1q19g_121 {
7764
8246
  padding: 0.5rem;
7765
8247
  display: flex;
7766
8248
  align-items: flex-start;
7767
8249
  }
7768
- ._markdownContent_mgetx_13 ._admonitionContent_mgetx_76 {
8250
+ ._markdownContent_1q19g_13 ._admonitionContent_1q19g_126 {
7769
8251
  margin-left: var(--xmlui-marginLeft-Admonition-content);
7770
8252
  }
7771
- ._markdownContent_mgetx_13 ._admonitionIcon_mgetx_79 {
8253
+ ._markdownContent_1q19g_13 ._admonitionIcon_1q19g_129 {
7772
8254
  font-size: var(--xmlui-iconSize-Admonition);
7773
8255
  line-height: 1;
7774
8256
  }
7775
- ._markdownContent_mgetx_13 ._admonitionContent_mgetx_76 {
8257
+ ._markdownContent_1q19g_13 ._admonitionContent_1q19g_126 {
7776
8258
  flex: 1;
7777
8259
  min-width: 0;
7778
8260
  }
7779
- ._markdownContent_mgetx_13 ._admonitionBlockquote_mgetx_65 ._admonitionContent_mgetx_76 [class*=text_][class*=markdown_] {
8261
+ ._markdownContent_1q19g_13 ._admonitionBlockquote_1q19g_89 ._admonitionContent_1q19g_126 [class*=text_][class*=markdown_] {
7780
8262
  margin-top: 0;
7781
8263
  margin-bottom: 0;
7782
8264
  }
7783
- ._markdownContent_mgetx_13 li:has(> input[type=checkbox]),
7784
- ._markdownContent_mgetx_13 li:has(> input[type=checkbox]) {
8265
+ ._markdownContent_1q19g_13 ._horizontalRule_1q19g_141 {
8266
+ border-top-color: var(--xmlui-borderColor-HorizontalRule);
8267
+ border-top-style: var(--xmlui-borderStyle-HorizontalRule);
8268
+ border-top-width: var(--xmlui-borderWidth-HorizontalRule);
8269
+ }
8270
+ ._markdownContent_1q19g_13 li:has(> input[type=checkbox]),
8271
+ ._markdownContent_1q19g_13 li:has(> input[type=checkbox]) {
7785
8272
  display: flex;
7786
8273
  align-items: flex-start;
7787
8274
  }
7788
- ._markdownContent_mgetx_13 li:has(> input[type=checkbox]) > input[type=checkbox],
7789
- ._markdownContent_mgetx_13 li:has(> input[type=checkbox]) > input[type=checkbox] {
8275
+ ._markdownContent_1q19g_13 li:has(> input[type=checkbox]) > input[type=checkbox],
8276
+ ._markdownContent_1q19g_13 li:has(> input[type=checkbox]) > input[type=checkbox] {
7790
8277
  margin-right: 8px;
7791
8278
  margin-top: 4px;
7792
8279
  flex-shrink: 0;
7793
8280
  }
7794
- ._markdownContent_mgetx_13 > *:first-child {
8281
+ ._markdownContent_1q19g_13 > *:first-child {
7795
8282
  margin-top: 0;
7796
8283
  }
7797
- ._markdownContent_mgetx_13 > *:last-child {
8284
+ ._markdownContent_1q19g_13 > *:last-child {
7798
8285
  margin-bottom: 0;
7799
8286
  }
7800
8287
 
@@ -7843,7 +8330,7 @@ $color-marker-ListItem: createThemeVar("color-marker-ListItem");
7843
8330
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
7844
8331
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
7845
8332
  */
7846
- ._htmlTable_11909_13 {
8333
+ ._htmlTable_1usjo_13 {
7847
8334
  background-color: var(--xmlui-backgroundColor-HtmlTable);
7848
8335
  color: var(--xmlui-textColor-HtmlTable);
7849
8336
  font-family: var(--xmlui-fontFamily-HtmlTable);
@@ -7880,7 +8367,7 @@ $color-marker-ListItem: createThemeVar("color-marker-ListItem");
7880
8367
  padding-bottom: var(--xmlui-paddingBottom-HtmlTable, var(--xmlui-paddingVertical-HtmlTable, var(--xmlui-padding-HtmlTable)));
7881
8368
  }
7882
8369
 
7883
- ._htmlThead_11909_50 {
8370
+ ._htmlThead_1usjo_50 {
7884
8371
  background-color: var(--xmlui-backgroundColor-HtmlThead);
7885
8372
  color: var(--xmlui-textColor-HtmlThead);
7886
8373
  font-weight: var(--xmlui-fontWeight-HtmlThead);
@@ -7913,7 +8400,7 @@ $color-marker-ListItem: createThemeVar("color-marker-ListItem");
7913
8400
  padding-bottom: var(--xmlui-paddingBottom-HtmlThead, var(--xmlui-paddingVertical-HtmlThead, var(--xmlui-padding-HtmlThead)));
7914
8401
  }
7915
8402
 
7916
- ._htmlTbody_11909_83 {
8403
+ ._htmlTbody_1usjo_83 {
7917
8404
  background-color: var(--xmlui-backgroundColor-HtmlTbody);
7918
8405
  color: var(--xmlui-textColor-HtmlTbody);
7919
8406
  text-align: var(--xmlui-textAlign-HtmlTbody);
@@ -7921,12 +8408,12 @@ $color-marker-ListItem: createThemeVar("color-marker-ListItem");
7921
8408
  text-transform: var(--xmlui-textTransform-HtmlTbody);
7922
8409
  }
7923
8410
 
7924
- ._htmlTfoot_11909_91 {
8411
+ ._htmlTfoot_1usjo_91 {
7925
8412
  background-color: var(--xmlui-backgroundColor-HtmlTfoot);
7926
8413
  color: var(--xmlui-textColor-HtmlTfoot);
7927
8414
  }
7928
8415
 
7929
- ._htmlTh_11909_50 {
8416
+ ._htmlTh_1usjo_50 {
7930
8417
  background-color: var(--xmlui-backgroundColor-HtmlTh);
7931
8418
  color: var(--xmlui-textColor-HtmlTh);
7932
8419
  font-weight: var(--xmlui-fontWeight-HtmlTh);
@@ -7957,11 +8444,11 @@ $color-marker-ListItem: createThemeVar("color-marker-ListItem");
7957
8444
  padding-top: var(--xmlui-paddingTop-HtmlTh, var(--xmlui-paddingVertical-HtmlTh, var(--xmlui-padding-HtmlTh)));
7958
8445
  padding-bottom: var(--xmlui-paddingBottom-HtmlTh, var(--xmlui-paddingVertical-HtmlTh, var(--xmlui-padding-HtmlTh)));
7959
8446
  }
7960
- ._htmlTh_11909_50:hover {
8447
+ ._htmlTh_1usjo_50:hover {
7961
8448
  background-color: var(--xmlui-backgroundColor-HtmlTh--hover);
7962
8449
  }
7963
8450
 
7964
- ._htmlTr_11909_131 {
8451
+ ._htmlTr_1usjo_131 {
7965
8452
  background-color: var(--xmlui-backgroundColor-HtmlTr);
7966
8453
  color: var(--xmlui-textColor-HtmlTr);
7967
8454
  font-weight: var(--xmlui-fontWeight-HtmlTr);
@@ -7987,18 +8474,18 @@ $color-marker-ListItem: createThemeVar("color-marker-ListItem");
7987
8474
  border-end-start-radius: var(--xmlui-borderEndStartRadius-HtmlTr, var(--xmlui-borderRadius-HtmlTr));
7988
8475
  border-end-end-radius: var(--xmlui-borderEndEndRadius-HtmlTr, var(--xmlui-borderRadius-HtmlTr));
7989
8476
  }
7990
- ._htmlTr_11909_131:nth-child(even) {
8477
+ ._htmlTr_1usjo_131:nth-child(even) {
7991
8478
  background-color: var(--xmlui-backgroundColor-even-HtmlTr);
7992
8479
  }
7993
- ._htmlTr_11909_131:hover {
8480
+ ._htmlTr_1usjo_131:hover {
7994
8481
  background-color: var(--xmlui-backgroundColor-HtmlTr--hover);
7995
8482
  color: var(--xmlui-textColor-HtmlTr--hover);
7996
8483
  }
7997
- ._htmlTr_11909_131:hover:not(:has(:not(th))) {
8484
+ ._htmlTr_1usjo_131:hover:not(:has(:not(th))) {
7998
8485
  background-color: initial;
7999
8486
  }
8000
8487
 
8001
- ._htmlTd_11909_168 {
8488
+ ._htmlTd_1usjo_168 {
8002
8489
  background-color: var(--xmlui-backgroundColor-HtmlTd);
8003
8490
  text-align: var(--xmlui-text-align-HtmlTd);
8004
8491
  vertical-align: var(--xmlui-verticalAlign-HtmlTd);
@@ -8031,7 +8518,7 @@ $color-marker-ListItem: createThemeVar("color-marker-ListItem");
8031
8518
  padding-bottom: var(--xmlui-paddingBottom-HtmlTd, var(--xmlui-paddingVertical-HtmlTd, var(--xmlui-padding-HtmlTd)));
8032
8519
  }
8033
8520
 
8034
- ._htmlUl_11909_201 {
8521
+ ._htmlUl_1usjo_201 {
8035
8522
  margin-top: var(--xmlui-marginTop-HtmlUl);
8036
8523
  margin-bottom: var(--xmlui-marginBottom-HtmlUl);
8037
8524
  border-left: var(--xmlui-borderLeft-HtmlUl, var(--xmlui-borderHorizontal-HtmlUl, var(--xmlui-border-HtmlUl)));
@@ -8061,7 +8548,7 @@ $color-marker-ListItem: createThemeVar("color-marker-ListItem");
8061
8548
  padding-bottom: var(--xmlui-paddingBottom-HtmlUl, var(--xmlui-paddingVertical-HtmlUl, var(--xmlui-padding-HtmlUl)));
8062
8549
  }
8063
8550
 
8064
- ._htmlOl_11909_231 {
8551
+ ._htmlOl_1usjo_231 {
8065
8552
  margin-top: var(--xmlui-marginTop-HtmlOl);
8066
8553
  margin-bottom: var(--xmlui-marginBottom-HtmlOl);
8067
8554
  border-left: var(--xmlui-borderLeft-HtmlOl, var(--xmlui-borderHorizontal-HtmlOl, var(--xmlui-border-HtmlOl)));
@@ -8091,10 +8578,11 @@ $color-marker-ListItem: createThemeVar("color-marker-ListItem");
8091
8578
  padding-bottom: var(--xmlui-paddingBottom-HtmlOl, var(--xmlui-paddingVertical-HtmlOl, var(--xmlui-padding-HtmlOl)));
8092
8579
  }
8093
8580
 
8094
- ._htmlLi_11909_261 {
8581
+ ._htmlLi_1usjo_261 {
8095
8582
  margin-top: var(--xmlui-marginTop-HtmlLi);
8096
8583
  margin-bottom: var(--xmlui-marginBottom-HtmlLi);
8097
8584
  list-style-type: var(--xmlui-listStyleType-HtmlLi);
8585
+ margin-left: var(--xmlui-marginLeft-HtmlLi);
8098
8586
  border-left: var(--xmlui-borderLeft-HtmlLi, var(--xmlui-borderHorizontal-HtmlLi, var(--xmlui-border-HtmlLi)));
8099
8587
  border-right: var(--xmlui-borderRight-HtmlLi, var(--xmlui-borderHorizontal-HtmlLi, var(--xmlui-border-HtmlLi)));
8100
8588
  border-top: var(--xmlui-borderTop-HtmlLi, var(--xmlui-borderVertical-HtmlLi, var(--xmlui-border-HtmlLi)));
@@ -8130,22 +8618,22 @@ li .htmlOl {
8130
8618
  margin-bottom: 0;
8131
8619
  }
8132
8620
  */
8133
- ._htmlH1_11909_300,
8134
- ._htmlH2_11909_301,
8135
- ._htmlH3_11909_302,
8136
- ._htmlH4_11909_303,
8137
- ._htmlH5_11909_304,
8138
- ._htmlH6_11909_305 {
8621
+ ._htmlH1_1usjo_301,
8622
+ ._htmlH2_1usjo_302,
8623
+ ._htmlH3_1usjo_303,
8624
+ ._htmlH4_1usjo_304,
8625
+ ._htmlH5_1usjo_305,
8626
+ ._htmlH6_1usjo_306 {
8139
8627
  margin-top: var(--xmlui-marginTop-HtmlHeading);
8140
8628
  margin-bottom: var(--xmlui-marginBottom-HtmlHeading);
8141
8629
  }
8142
8630
 
8143
- ._htmlVideo_11909_310 {
8631
+ ._htmlVideo_1usjo_311 {
8144
8632
  margin-top: var(--xmlui-marginTop-HtmlVideo);
8145
8633
  margin-bottom: var(--xmlui-marginBottom-HtmlVideo);
8146
8634
  }
8147
8635
 
8148
- ._htmlDetails_11909_315 {
8636
+ ._htmlDetails_1usjo_316 {
8149
8637
  margin-top: var(--xmlui-marginTop-HtmlDetails);
8150
8638
  margin-bottom: var(--xmlui-marginBottom-HtmlDetails);
8151
8639
  border-left: var(--xmlui-borderLeft-HtmlDetails, var(--xmlui-borderHorizontal-HtmlDetails, var(--xmlui-border-HtmlDetails)));
@@ -8175,12 +8663,12 @@ li .htmlOl {
8175
8663
  padding-bottom: var(--xmlui-paddingBottom-HtmlDetails, var(--xmlui-paddingVertical-HtmlDetails, var(--xmlui-padding-HtmlDetails)));
8176
8664
  }
8177
8665
 
8178
- ._htmlDetails_11909_315 {
8666
+ ._htmlDetails_1usjo_316 {
8179
8667
  margin-top: var(--xmlui-marginTop-HtmlDetails);
8180
8668
  margin-bottom: var(--xmlui-marginBottom-HtmlDetails);
8181
8669
  }
8182
8670
 
8183
- ._htmlImage_11909_350 {
8671
+ ._htmlImage_1usjo_351 {
8184
8672
  width: var(--xmlui-width-HtmlImage);
8185
8673
  height: var(--xmlui-height-HtmlImage);
8186
8674
  border-left: var(--xmlui-borderLeft-HtmlImage, var(--xmlui-borderHorizontal-HtmlImage, var(--xmlui-border-HtmlImage)));
@@ -8220,6 +8708,282 @@ li .htmlOl {
8220
8708
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
8221
8709
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
8222
8710
  */
8711
+ ._nestedAppContainer_1rfdb_13 {
8712
+ border-left: var(--xmlui-borderLeft-NestedApp, var(--xmlui-borderHorizontal-NestedApp, var(--xmlui-border-NestedApp)));
8713
+ border-right: var(--xmlui-borderRight-NestedApp, var(--xmlui-borderHorizontal-NestedApp, var(--xmlui-border-NestedApp)));
8714
+ border-top: var(--xmlui-borderTop-NestedApp, var(--xmlui-borderVertical-NestedApp, var(--xmlui-border-NestedApp)));
8715
+ border-bottom: var(--xmlui-borderBottom-NestedApp, var(--xmlui-borderVertical-NestedApp, var(--xmlui-border-NestedApp)));
8716
+ border-left-style: var(--xmlui-borderLeftStyle-NestedApp, var(--xmlui-borderHorizontalStyle-NestedApp, var(--xmlui-borderStyle-NestedApp)));
8717
+ border-right-style: var(--xmlui-borderRightStyle-NestedApp, var(--xmlui-borderHorizontalStyle-NestedApp, var(--xmlui-borderStyle-NestedApp)));
8718
+ border-top-style: var(--xmlui-borderTopStyle-NestedApp, var(--xmlui-borderVerticalStyle-NestedApp, var(--xmlui-borderStyle-NestedApp)));
8719
+ border-bottom-style: var(--xmlui-borderBottomStyle-NestedApp, var(--xmlui-borderVerticalStyle-NestedApp, var(--xmlui-borderStyle-NestedApp)));
8720
+ border-left-width: var(--xmlui-borderLeftWidth-NestedApp, var(--xmlui-borderHorizontalWidth-NestedApp, var(--xmlui-borderWidth-NestedApp)));
8721
+ border-right-width: var(--xmlui-borderRightWidth-NestedApp, var(--xmlui-borderHorizontalWidth-NestedApp, var(--xmlui-borderWidth-NestedApp)));
8722
+ border-top-width: var(--xmlui-borderTopWidth-NestedApp, var(--xmlui-borderVerticalWidth-NestedApp, var(--xmlui-borderWidth-NestedApp)));
8723
+ border-bottom-width: var(--xmlui-borderBottomWidth-NestedApp, var(--xmlui-borderVerticalWidth-NestedApp, var(--xmlui-borderWidth-NestedApp)));
8724
+ border-left-color: var(--xmlui-borderLeftColor-NestedApp, var(--xmlui-borderHorizontalColor-NestedApp, var(--xmlui-borderColor-NestedApp)));
8725
+ border-right-color: var(--xmlui-borderRightColor-NestedApp, var(--xmlui-borderHorizontalColor-NestedApp, var(--xmlui-borderColor-NestedApp)));
8726
+ border-top-color: var(--xmlui-borderTopColor-NestedApp, var(--xmlui-borderVerticalColor-NestedApp, var(--xmlui-borderColor-NestedApp)));
8727
+ border-bottom-color: var(--xmlui-borderBottomColor-NestedApp, var(--xmlui-borderVerticalColor-NestedApp, var(--xmlui-borderColor-NestedApp)));
8728
+ border-start-start-radius: var(--xmlui-borderStartStartRadius-NestedApp, var(--xmlui-borderRadius-NestedApp));
8729
+ border-start-end-radius: var(--xmlui-borderStartEndRadius-NestedApp, var(--xmlui-borderRadius-NestedApp));
8730
+ border-end-start-radius: var(--xmlui-borderEndStartRadius-NestedApp, var(--xmlui-borderRadius-NestedApp));
8731
+ border-end-end-radius: var(--xmlui-borderEndEndRadius-NestedApp, var(--xmlui-borderRadius-NestedApp));
8732
+ padding: var(--xmlui-padding-NestedApp);
8733
+ padding-left: var(--xmlui-paddingLeft-NestedApp, var(--xmlui-paddingHorizontal-NestedApp, var(--xmlui-padding-NestedApp)));
8734
+ padding-right: var(--xmlui-paddingRight-NestedApp, var(--xmlui-paddingHorizontal-NestedApp, var(--xmlui-padding-NestedApp)));
8735
+ padding-top: var(--xmlui-paddingTop-NestedApp, var(--xmlui-paddingVertical-NestedApp, var(--xmlui-padding-NestedApp)));
8736
+ padding-bottom: var(--xmlui-paddingBottom-NestedApp, var(--xmlui-paddingVertical-NestedApp, var(--xmlui-padding-NestedApp)));
8737
+ transform: scale(1);
8738
+ margin-top: var(--xmlui-marginTop-NestedApp);
8739
+ margin-bottom: var(--xmlui-marginBottom-NestedApp);
8740
+ width: 100%;
8741
+ height: fit-content;
8742
+ display: flex;
8743
+ flex-direction: column;
8744
+ gap: var(--xmlui-gap-frame-NestedApp);
8745
+ background-color: var(--xmlui-backgroundColor-frame-NestedApp);
8746
+ align-content: center;
8747
+ }
8748
+ ._nestedAppContainer_1rfdb_13 ._header_1rfdb_50 {
8749
+ width: 100%;
8750
+ height: 20px;
8751
+ display: flex;
8752
+ align-content: center;
8753
+ }
8754
+ ._nestedAppContainer_1rfdb_13 ._header_1rfdb_50 ._headerText_1rfdb_56 {
8755
+ color: var(--xmlui-textColor-header-NestedApp);
8756
+ font-family: var(--xmlui-fontFamily-header-NestedApp);
8757
+ font-size: var(--xmlui-fontSize-header-NestedApp);
8758
+ font-style: var(--xmlui-fontStyle-header-NestedApp);
8759
+ font-weight: var(--xmlui-fontWeight-header-NestedApp);
8760
+ font-stretch: var(--xmlui-fontStretch-header-NestedApp);
8761
+ text-decoration-line: var(--xmlui-textDecorationLine-header-NestedApp);
8762
+ text-decoration-color: var(--xmlui-textDecorationColor-header-NestedApp);
8763
+ text-decoration-style: var(--xmlui-textDecorationStyle-header-NestedApp);
8764
+ text-decoration-thickness: var(--xmlui-textDecorationThickness-header-NestedApp);
8765
+ text-underline-offset: var(--xmlui-textUnderlineOffset-header-NestedApp);
8766
+ line-height: var(--xmlui-lineHeight-header-NestedApp);
8767
+ background-color: var(--xmlui-backgroundColor-header-NestedApp);
8768
+ text-transform: var(--xmlui-textTransform-header-NestedApp);
8769
+ letter-spacing: var(--xmlui-letterSpacing-header-NestedApp);
8770
+ word-spacing: var(--xmlui-wordSpacing-header-NestedApp);
8771
+ text-shadow: var(--xmlui-textShadow-header-NestedApp);
8772
+ text-indent: var(--xmlui-textIndent-header-NestedApp);
8773
+ text-align: var(--xmlui-textAlign-header-NestedApp);
8774
+ text-align-last: var(--xmlui-textAlignLast-header-NestedApp);
8775
+ word-break: var(--xmlui-wordBreak-header-NestedApp);
8776
+ word-wrap: var(--xmlui-wordWrap-header-NestedApp);
8777
+ direction: var(--xmlui-direction-header-NestedApp);
8778
+ writing-mode: var(--xmlui-writingMode-header-NestedApp);
8779
+ line-break: var(--xmlui-lineBreak-header-NestedApp);
8780
+ }
8781
+ ._nestedAppContainer_1rfdb_13 ._header_1rfdb_50 ._headerButton_1rfdb_83 {
8782
+ padding: 0.5rem 1rem;
8783
+ }
8784
+ ._nestedAppContainer_1rfdb_13 ._header_1rfdb_50 ._spacer_1rfdb_86 {
8785
+ flex: 1 1 0 !important;
8786
+ place-self: stretch;
8787
+ }
8788
+
8789
+ ._nestedApp_1rfdb_13 {
8790
+ width: 100%;
8791
+ background-color: transparent;
8792
+ }
8793
+
8794
+ :is(html[class~=dark]) ._preview_1rfdb_96 {
8795
+ border: 1px solid #33404F;
8796
+ }/*
8797
+ * This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
8798
+ *
8799
+ * We use a subset of these CSS variables in themes.
8800
+ */
8801
+ /*
8802
+ * This function creates a CSS variable name by combining the prefix and the argument variable name
8803
+ */
8804
+ /*
8805
+ * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
8806
+ Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
8807
+ */
8808
+ ._errorOverlay_1t96q_13 {
8809
+ background-color: var(--xmlui-color-danger-500);
8810
+ position: relative;
8811
+ inset: 0;
8812
+ border-radius: 4px;
8813
+ padding: 8px;
8814
+ }
8815
+
8816
+ ._title_1t96q_21 {
8817
+ color: white;
8818
+ font-weight: var(--xmlui-fontWeight-normal);
8819
+ padding-left: 4px;
8820
+ padding-right: 8px;
8821
+ }
8822
+
8823
+ ._errorItem_1t96q_28 {
8824
+ font-weight: var(--xmlui-fontWeight-bold);
8825
+ padding-left: 4px;
8826
+ padding-right: 8px;
8827
+ color: white;
8828
+ white-space: pre-wrap;
8829
+ }/*
8830
+ * This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
8831
+ *
8832
+ * We use a subset of these CSS variables in themes.
8833
+ */
8834
+ /*
8835
+ * This function creates a CSS variable name by combining the prefix and the argument variable name
8836
+ */
8837
+ /*
8838
+ * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
8839
+ Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
8840
+ */
8841
+ ._TooltipContent_rqalv_13 {
8842
+ border-radius: 4px;
8843
+ padding: 10px 15px;
8844
+ font-family: sans-serif;
8845
+ font-size: 15px;
8846
+ line-height: 1;
8847
+ background-color: #ffffff;
8848
+ box-shadow: 0px 10px 38px -10px rgba(22, 23, 24, 0.35), 0px 10px 20px -15px rgba(22, 23, 24, 0.2);
8849
+ user-select: none;
8850
+ animation-duration: 400ms;
8851
+ animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
8852
+ will-change: transform, opacity;
8853
+ }
8854
+
8855
+ ._TooltipContent_rqalv_13[data-state=delayed-open][data-side=top] {
8856
+ animation-name: _slideDownAndFade_rqalv_1;
8857
+ }
8858
+
8859
+ ._TooltipContent_rqalv_13[data-state=delayed-open][data-side=right] {
8860
+ animation-name: _slideLeftAndFade_rqalv_1;
8861
+ }
8862
+
8863
+ ._TooltipContent_rqalv_13[data-state=delayed-open][data-side=bottom] {
8864
+ animation-name: _slideUpAndFade_rqalv_1;
8865
+ }
8866
+
8867
+ ._TooltipContent_rqalv_13[data-state=delayed-open][data-side=left] {
8868
+ animation-name: _slideRightAndFade_rqalv_1;
8869
+ }
8870
+
8871
+ @keyframes _slideUpAndFade_rqalv_1 {
8872
+ from {
8873
+ opacity: 0;
8874
+ transform: translateY(2px);
8875
+ }
8876
+ to {
8877
+ opacity: 1;
8878
+ transform: translateY(0);
8879
+ }
8880
+ }
8881
+ @keyframes _slideRightAndFade_rqalv_1 {
8882
+ from {
8883
+ opacity: 0;
8884
+ transform: translateX(-2px);
8885
+ }
8886
+ to {
8887
+ opacity: 1;
8888
+ transform: translateX(0);
8889
+ }
8890
+ }
8891
+ @keyframes _slideDownAndFade_rqalv_1 {
8892
+ from {
8893
+ opacity: 0;
8894
+ transform: translateY(-2px);
8895
+ }
8896
+ to {
8897
+ opacity: 1;
8898
+ transform: translateY(0);
8899
+ }
8900
+ }
8901
+ @keyframes _slideLeftAndFade_rqalv_1 {
8902
+ from {
8903
+ opacity: 0;
8904
+ transform: translateX(2px);
8905
+ }
8906
+ to {
8907
+ opacity: 1;
8908
+ transform: translateX(0);
8909
+ }
8910
+ }/*
8911
+ * This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
8912
+ *
8913
+ * We use a subset of these CSS variables in themes.
8914
+ */
8915
+ /*
8916
+ * This function creates a CSS variable name by combining the prefix and the argument variable name
8917
+ */
8918
+ /*
8919
+ * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
8920
+ Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
8921
+ */
8922
+ ._codeBlock_y1mbl_13 {
8923
+ border-left: var(--xmlui-borderLeft-CodeBlock, var(--xmlui-borderHorizontal-CodeBlock, var(--xmlui-border-CodeBlock)));
8924
+ border-right: var(--xmlui-borderRight-CodeBlock, var(--xmlui-borderHorizontal-CodeBlock, var(--xmlui-border-CodeBlock)));
8925
+ border-top: var(--xmlui-borderTop-CodeBlock, var(--xmlui-borderVertical-CodeBlock, var(--xmlui-border-CodeBlock)));
8926
+ border-bottom: var(--xmlui-borderBottom-CodeBlock, var(--xmlui-borderVertical-CodeBlock, var(--xmlui-border-CodeBlock)));
8927
+ border-left-style: var(--xmlui-borderLeftStyle-CodeBlock, var(--xmlui-borderHorizontalStyle-CodeBlock, var(--xmlui-borderStyle-CodeBlock)));
8928
+ border-right-style: var(--xmlui-borderRightStyle-CodeBlock, var(--xmlui-borderHorizontalStyle-CodeBlock, var(--xmlui-borderStyle-CodeBlock)));
8929
+ border-top-style: var(--xmlui-borderTopStyle-CodeBlock, var(--xmlui-borderVerticalStyle-CodeBlock, var(--xmlui-borderStyle-CodeBlock)));
8930
+ border-bottom-style: var(--xmlui-borderBottomStyle-CodeBlock, var(--xmlui-borderVerticalStyle-CodeBlock, var(--xmlui-borderStyle-CodeBlock)));
8931
+ border-left-width: var(--xmlui-borderLeftWidth-CodeBlock, var(--xmlui-borderHorizontalWidth-CodeBlock, var(--xmlui-borderWidth-CodeBlock)));
8932
+ border-right-width: var(--xmlui-borderRightWidth-CodeBlock, var(--xmlui-borderHorizontalWidth-CodeBlock, var(--xmlui-borderWidth-CodeBlock)));
8933
+ border-top-width: var(--xmlui-borderTopWidth-CodeBlock, var(--xmlui-borderVerticalWidth-CodeBlock, var(--xmlui-borderWidth-CodeBlock)));
8934
+ border-bottom-width: var(--xmlui-borderBottomWidth-CodeBlock, var(--xmlui-borderVerticalWidth-CodeBlock, var(--xmlui-borderWidth-CodeBlock)));
8935
+ border-left-color: var(--xmlui-borderLeftColor-CodeBlock, var(--xmlui-borderHorizontalColor-CodeBlock, var(--xmlui-borderColor-CodeBlock)));
8936
+ border-right-color: var(--xmlui-borderRightColor-CodeBlock, var(--xmlui-borderHorizontalColor-CodeBlock, var(--xmlui-borderColor-CodeBlock)));
8937
+ border-top-color: var(--xmlui-borderTopColor-CodeBlock, var(--xmlui-borderVerticalColor-CodeBlock, var(--xmlui-borderColor-CodeBlock)));
8938
+ border-bottom-color: var(--xmlui-borderBottomColor-CodeBlock, var(--xmlui-borderVerticalColor-CodeBlock, var(--xmlui-borderColor-CodeBlock)));
8939
+ border-radius: var(--xmlui-borderRadius-CodeBlock);
8940
+ border-start-start-radius: var(--xmlui-borderStartStartRadius-CodeBlock, var(--xmlui-borderRadius-CodeBlock));
8941
+ border-start-end-radius: var(--xmlui-borderStartEndRadius-CodeBlock, var(--xmlui-borderRadius-CodeBlock));
8942
+ border-end-start-radius: var(--xmlui-borderEndStartRadius-CodeBlock, var(--xmlui-borderRadius-CodeBlock));
8943
+ border-end-end-radius: var(--xmlui-borderEndEndRadius-CodeBlock, var(--xmlui-borderRadius-CodeBlock));
8944
+ padding: var(--xmlui-padding-CodeBlock);
8945
+ padding-left: var(--xmlui-paddingLeft-CodeBlock, var(--xmlui-paddingHorizontal-CodeBlock, var(--xmlui-padding-CodeBlock)));
8946
+ padding-right: var(--xmlui-paddingRight-CodeBlock, var(--xmlui-paddingHorizontal-CodeBlock, var(--xmlui-padding-CodeBlock)));
8947
+ padding-top: var(--xmlui-paddingTop-CodeBlock, var(--xmlui-paddingVertical-CodeBlock, var(--xmlui-padding-CodeBlock)));
8948
+ padding-bottom: var(--xmlui-paddingBottom-CodeBlock, var(--xmlui-paddingVertical-CodeBlock, var(--xmlui-padding-CodeBlock)));
8949
+ margin-top: var(--xmlui-marginTop-CodeBlock);
8950
+ margin-bottom: var(--xmlui-marginBottom-CodeBlock);
8951
+ background-color: var(--xmlui-backgroundColor-CodeBlock);
8952
+ }
8953
+
8954
+ ._codeBlockHeader_y1mbl_45 {
8955
+ padding: var(--xmlui-space-1);
8956
+ padding-left: var(--xmlui-space-3);
8957
+ background-color: var(--xmlui-backgroundColor-CodeBlock-header);
8958
+ border-bottom: var(--xmlui-color-CodeBlock-headerSeparator) solid 2px;
8959
+ font-size: var(--xmlui-fontSize-small);
8960
+ }
8961
+
8962
+ ._codeBlockCopyWrapper_y1mbl_53 {
8963
+ position: relative;
8964
+ }
8965
+ ._codeBlockCopyWrapper_y1mbl_53 ._codeBlockCopyButton_y1mbl_56 {
8966
+ position: absolute;
8967
+ top: var(--xmlui-space-1_5);
8968
+ right: var(--xmlui-space-1_5);
8969
+ z-index: 1;
8970
+ display: none;
8971
+ background-color: var(--xmlui-backgroundColor-CodeBlock);
8972
+ }
8973
+ ._codeBlockCopyWrapper_y1mbl_53:hover ._codeBlockCopyButton_y1mbl_56 {
8974
+ display: block;
8975
+ }/*
8976
+ * This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
8977
+ *
8978
+ * We use a subset of these CSS variables in themes.
8979
+ */
8980
+ /*
8981
+ * This function creates a CSS variable name by combining the prefix and the argument variable name
8982
+ */
8983
+ /*
8984
+ * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
8985
+ Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
8986
+ */
8223
8987
  ._DropdownMenuContent_1ty8e_13,
8224
8988
  ._DropdownMenuSubContent_1ty8e_14 {
8225
8989
  background-color: var(--xmlui-backgroundColor-DropdownMenu);
@@ -8330,39 +9094,6 @@ li .htmlOl {
8330
9094
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
8331
9095
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
8332
9096
  */
8333
- ._errorOverlay_1t96q_13 {
8334
- background-color: var(--xmlui-color-danger-500);
8335
- position: relative;
8336
- inset: 0;
8337
- border-radius: 4px;
8338
- padding: 8px;
8339
- }
8340
-
8341
- ._title_1t96q_21 {
8342
- color: white;
8343
- font-weight: var(--xmlui-fontWeight-normal);
8344
- padding-left: 4px;
8345
- padding-right: 8px;
8346
- }
8347
-
8348
- ._errorItem_1t96q_28 {
8349
- font-weight: var(--xmlui-fontWeight-bold);
8350
- padding-left: 4px;
8351
- padding-right: 8px;
8352
- color: white;
8353
- white-space: pre-wrap;
8354
- }/*
8355
- * This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
8356
- *
8357
- * We use a subset of these CSS variables in themes.
8358
- */
8359
- /*
8360
- * This function creates a CSS variable name by combining the prefix and the argument variable name
8361
- */
8362
- /*
8363
- * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
8364
- Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
8365
- */
8366
9097
  ._wrapper_mzu91_13 {
8367
9098
  position: relative;
8368
9099
  opacity: 0.5;
@@ -8524,6 +9255,9 @@ li .htmlOl {
8524
9255
  ._tabsContent_1ggvi_111 {
8525
9256
  flex-grow: 1;
8526
9257
  outline: none;
9258
+ }._anchorRef_1d4md_1 {
9259
+ --my-scroll-margin-top: var(--header-height);
9260
+ scroll-margin-top: var(--my-scroll-margin-top);
8527
9261
  }/*
8528
9262
  * This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
8529
9263
  *
@@ -8536,7 +9270,7 @@ li .htmlOl {
8536
9270
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
8537
9271
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
8538
9272
  */
8539
- ._nav_1biyk_13 {
9273
+ ._nav_1gght_13 {
8540
9274
  background-color: var(--xmlui-backgroundColor-TableOfContents);
8541
9275
  min-width: 240px;
8542
9276
  width: var(--xmlui-width-TableOfContents);
@@ -8546,7 +9280,7 @@ li .htmlOl {
8546
9280
  overflow-y: auto;
8547
9281
  overflow-x: hidden;
8548
9282
  z-index: 99;
8549
- top: 0;
9283
+ top: var(--header-height);
8550
9284
  position: sticky;
8551
9285
  scrollbar-color: lab(48.438% 0 0/0.4) transparent;
8552
9286
  scrollbar-width: thin;
@@ -8558,16 +9292,16 @@ li .htmlOl {
8558
9292
  margin-bottom: var(--xmlui-marginBottom-TableOfContents);
8559
9293
  padding: var(--xmlui-paddingVertical-TableOfContents) var(--xmlui-paddingHorizontal-TableOfContents);
8560
9294
  }
8561
- ._nav_1biyk_13 ._list_1biyk_35 {
9295
+ ._nav_1gght_13 ._list_1gght_35 {
8562
9296
  margin: 0;
8563
9297
  padding: 0;
8564
9298
  list-style: none;
8565
9299
  }
8566
- ._nav_1biyk_13 ._list_1biyk_35 ._listItem_1biyk_40 {
9300
+ ._nav_1gght_13 ._list_1gght_35 ._listItem_1gght_40 {
8567
9301
  list-style-type: none;
8568
- border-left: var(--xmlui-border-width-TableOfContentsItem) var(--xmlui-border-style-TableOfContentsItem) var(--xmlui-border-color-TableOfContentsItem);
9302
+ border-left: var(--xmlui-borderWidth-TableOfContentsItem) var(--xmlui-borderStyle-TableOfContentsItem) var(--xmlui-borderColor-TableOfContentsItem);
8569
9303
  }
8570
- ._nav_1biyk_13 ._list_1biyk_35 ._listItem_1biyk_40 ._link_1biyk_44 {
9304
+ ._nav_1gght_13 ._list_1gght_35 ._listItem_1gght_40 ._link_1gght_44 {
8571
9305
  color: var(--xmlui-textColor-TableOfContentsItem);
8572
9306
  overflow-wrap: break-word;
8573
9307
  display: block;
@@ -8602,7 +9336,7 @@ li .htmlOl {
8602
9336
  writing-mode: var(--xmlui-writingMode-TableOfContentsItem);
8603
9337
  line-break: var(--xmlui-lineBreak-TableOfContentsItem);
8604
9338
  }
8605
- ._nav_1biyk_13 ._list_1biyk_35 ._listItem_1biyk_40 ._link_1biyk_44._head_1_1biyk_79 {
9339
+ ._nav_1gght_13 ._list_1gght_35 ._listItem_1gght_40 ._link_1gght_44._head_1_1gght_79 {
8606
9340
  padding: var(--xmlui-padding-TableOfContentsItem-level-1);
8607
9341
  padding-left: var(--xmlui-paddingLeft-TableOfContentsItem-level-1, var(--xmlui-paddingHorizontal-TableOfContentsItem-level-1, var(--xmlui-padding-TableOfContentsItem-level-1)));
8608
9342
  padding-right: var(--xmlui-paddingRight-TableOfContentsItem-level-1, var(--xmlui-paddingHorizontal-TableOfContentsItem-level-1, var(--xmlui-padding-TableOfContentsItem-level-1)));
@@ -8634,7 +9368,7 @@ li .htmlOl {
8634
9368
  writing-mode: var(--xmlui-writingMode-TableOfContentsItem-level-1);
8635
9369
  line-break: var(--xmlui-lineBreak-TableOfContentsItem-level-1);
8636
9370
  }
8637
- ._nav_1biyk_13 ._list_1biyk_35 ._listItem_1biyk_40 ._link_1biyk_44._head_2_1biyk_111 {
9371
+ ._nav_1gght_13 ._list_1gght_35 ._listItem_1gght_40 ._link_1gght_44._head_2_1gght_111 {
8638
9372
  padding: var(--xmlui-padding-TableOfContentsItem-level-2);
8639
9373
  padding-left: var(--xmlui-paddingLeft-TableOfContentsItem-level-2, var(--xmlui-paddingHorizontal-TableOfContentsItem-level-2, var(--xmlui-padding-TableOfContentsItem-level-2)));
8640
9374
  padding-right: var(--xmlui-paddingRight-TableOfContentsItem-level-2, var(--xmlui-paddingHorizontal-TableOfContentsItem-level-2, var(--xmlui-padding-TableOfContentsItem-level-2)));
@@ -8666,7 +9400,7 @@ li .htmlOl {
8666
9400
  writing-mode: var(--xmlui-writingMode-TableOfContentsItem-level-2);
8667
9401
  line-break: var(--xmlui-lineBreak-TableOfContentsItem-level-2);
8668
9402
  }
8669
- ._nav_1biyk_13 ._list_1biyk_35 ._listItem_1biyk_40 ._link_1biyk_44._head_3_1biyk_143 {
9403
+ ._nav_1gght_13 ._list_1gght_35 ._listItem_1gght_40 ._link_1gght_44._head_3_1gght_143 {
8670
9404
  padding: var(--xmlui-padding-TableOfContentsItem-level-3);
8671
9405
  padding-left: var(--xmlui-paddingLeft-TableOfContentsItem-level-3, var(--xmlui-paddingHorizontal-TableOfContentsItem-level-3, var(--xmlui-padding-TableOfContentsItem-level-3)));
8672
9406
  padding-right: var(--xmlui-paddingRight-TableOfContentsItem-level-3, var(--xmlui-paddingHorizontal-TableOfContentsItem-level-3, var(--xmlui-padding-TableOfContentsItem-level-3)));
@@ -8698,7 +9432,7 @@ li .htmlOl {
8698
9432
  writing-mode: var(--xmlui-writingMode-TableOfContentsItem-level-3);
8699
9433
  line-break: var(--xmlui-lineBreak-TableOfContentsItem-level-3);
8700
9434
  }
8701
- ._nav_1biyk_13 ._list_1biyk_35 ._listItem_1biyk_40 ._link_1biyk_44._head_4_1biyk_175 {
9435
+ ._nav_1gght_13 ._list_1gght_35 ._listItem_1gght_40 ._link_1gght_44._head_4_1gght_175 {
8702
9436
  padding: var(--xmlui-padding-TableOfContentsItem-level-4);
8703
9437
  padding-left: var(--xmlui-paddingLeft-TableOfContentsItem-level-4, var(--xmlui-paddingHorizontal-TableOfContentsItem-level-4, var(--xmlui-padding-TableOfContentsItem-level-4)));
8704
9438
  padding-right: var(--xmlui-paddingRight-TableOfContentsItem-level-4, var(--xmlui-paddingHorizontal-TableOfContentsItem-level-4, var(--xmlui-padding-TableOfContentsItem-level-4)));
@@ -8730,7 +9464,7 @@ li .htmlOl {
8730
9464
  writing-mode: var(--xmlui-writingMode-TableOfContentsItem-level-4);
8731
9465
  line-break: var(--xmlui-lineBreak-TableOfContentsItem-level-4);
8732
9466
  }
8733
- ._nav_1biyk_13 ._list_1biyk_35 ._listItem_1biyk_40 ._link_1biyk_44._head_5_1biyk_207 {
9467
+ ._nav_1gght_13 ._list_1gght_35 ._listItem_1gght_40 ._link_1gght_44._head_5_1gght_207 {
8734
9468
  padding: var(--xmlui-padding-TableOfContentsItem-level-5);
8735
9469
  padding-left: var(--xmlui-paddingLeft-TableOfContentsItem-level-5, var(--xmlui-paddingHorizontal-TableOfContentsItem-level-5, var(--xmlui-padding-TableOfContentsItem-level-5)));
8736
9470
  padding-right: var(--xmlui-paddingRight-TableOfContentsItem-level-5, var(--xmlui-paddingHorizontal-TableOfContentsItem-level-5, var(--xmlui-padding-TableOfContentsItem-level-5)));
@@ -8762,7 +9496,7 @@ li .htmlOl {
8762
9496
  writing-mode: var(--xmlui-writingMode-TableOfContentsItem-level-5);
8763
9497
  line-break: var(--xmlui-lineBreak-TableOfContentsItem-level-5);
8764
9498
  }
8765
- ._nav_1biyk_13 ._list_1biyk_35 ._listItem_1biyk_40 ._link_1biyk_44._head_6_1biyk_239 {
9499
+ ._nav_1gght_13 ._list_1gght_35 ._listItem_1gght_40 ._link_1gght_44._head_6_1gght_239 {
8766
9500
  padding: var(--xmlui-padding-TableOfContentsItem-level-6);
8767
9501
  padding-left: var(--xmlui-paddingLeft-TableOfContentsItem-level-6, var(--xmlui-paddingHorizontal-TableOfContentsItem-level-6, var(--xmlui-padding-TableOfContentsItem-level-6)));
8768
9502
  padding-right: var(--xmlui-paddingRight-TableOfContentsItem-level-6, var(--xmlui-paddingHorizontal-TableOfContentsItem-level-6, var(--xmlui-padding-TableOfContentsItem-level-6)));
@@ -8794,10 +9528,13 @@ li .htmlOl {
8794
9528
  writing-mode: var(--xmlui-writingMode-TableOfContentsItem-level-6);
8795
9529
  line-break: var(--xmlui-lineBreak-TableOfContentsItem-level-6);
8796
9530
  }
8797
- ._nav_1biyk_13 ._list_1biyk_35 ._listItem_1biyk_40._active_1biyk_271 {
8798
- border-left: 2px solid var(--xmlui-borderColor-TableOfContentsItem--active);
9531
+ ._nav_1gght_13 ._list_1gght_35 ._listItem_1gght_40:hover ._link_1gght_44 {
9532
+ color: var(--xmlui-textColor-TableOfContentsItem--hover);
9533
+ }
9534
+ ._nav_1gght_13 ._list_1gght_35 ._listItem_1gght_40._active_1gght_274 {
9535
+ border-left: var(--xmlui-borderWidth-TableOfContentsItem--active) solid var(--xmlui-borderColor-TableOfContentsItem--active);
8799
9536
  }
8800
- ._nav_1biyk_13 ._list_1biyk_35 ._listItem_1biyk_40._active_1biyk_271 ._link_1biyk_44 {
9537
+ ._nav_1gght_13 ._list_1gght_35 ._listItem_1gght_40._active_1gght_274 ._link_1gght_44 {
8801
9538
  color: var(--xmlui-color-TableOfContentsItem--active);
8802
9539
  font-weight: var(--xmlui-fontWeight-TableOfContentsItem--active);
8803
9540
  }/*