xmlui 0.9.23 → 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 (100) hide show
  1. package/dist/apiInterceptorWorker-CFF3bC6o.mjs +818 -0
  2. package/dist/{index-B8C8yAZL.mjs → index-DtxDGaqF.mjs} +11792 -3151
  3. package/dist/index.css +1298 -521
  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/App.js +0 -2
  10. package/dist/scripts/src/components/App/AppNative.js +22 -12
  11. package/dist/scripts/src/components/AppHeader/AppHeader.js +1 -1
  12. package/dist/scripts/src/components/AppHeader/AppHeaderNative.js +4 -5
  13. package/dist/scripts/src/components/AutoComplete/AutoComplete.js +5 -2
  14. package/dist/scripts/src/components/AutoComplete/AutoCompleteNative.js +13 -10
  15. package/dist/scripts/src/components/Bookmark/BookmarkNative.js +5 -1
  16. package/dist/scripts/src/components/CodeBlock/CodeBlock.js +31 -0
  17. package/dist/scripts/src/components/CodeBlock/CodeBlockNative.js +82 -0
  18. package/dist/scripts/src/components/ComponentProvider.js +5 -0
  19. package/dist/scripts/src/components/DatePicker/DatePickerNative.js +1 -0
  20. package/dist/scripts/src/components/Footer/FooterNative.js +2 -1
  21. package/dist/scripts/src/components/Form/FormNative.js +34 -18
  22. package/dist/scripts/src/components/FormItem/FormItem.js +5 -2
  23. package/dist/scripts/src/components/FormItem/FormItemNative.js +4 -3
  24. package/dist/scripts/src/components/Heading/Heading.js +13 -0
  25. package/dist/scripts/src/components/Heading/HeadingNative.js +1 -1
  26. package/dist/scripts/src/components/HtmlTags/HtmlTags.js +7 -3
  27. package/dist/scripts/src/components/Icon/DarkToLightIcon.js +10 -0
  28. package/dist/scripts/src/components/Icon/LightToDark.js +10 -0
  29. package/dist/scripts/src/components/IconProvider.js +4 -0
  30. package/dist/scripts/src/components/Image/ImageNative.js +1 -1
  31. package/dist/scripts/src/components/Link/Link.js +5 -5
  32. package/dist/scripts/src/components/List/ListNative.js +1 -1
  33. package/dist/scripts/src/components/Markdown/Markdown.js +52 -16
  34. package/dist/scripts/src/components/Markdown/MarkdownNative.js +34 -73
  35. package/dist/scripts/src/components/Markdown/highlight-code.js +160 -0
  36. package/dist/scripts/src/components/Markdown/parse-binding-expr.js +60 -0
  37. package/dist/scripts/src/components/Markdown/utils.js +282 -0
  38. package/dist/scripts/src/components/ModalDialog/ConfirmationModalContextProvider.js +116 -0
  39. package/dist/scripts/src/components/ModalDialog/Dialog.js +20 -0
  40. package/dist/scripts/src/components/NavGroup/NavGroupNative.js +2 -2
  41. package/dist/scripts/src/components/NestedApp/NestedApp.js +61 -0
  42. package/dist/scripts/src/components/NestedApp/NestedAppNative.js +125 -0
  43. package/dist/scripts/src/components/NestedApp/Tooltip.js +46 -0
  44. package/dist/scripts/src/components/NumberBox/NumberBox.js +4 -1
  45. package/dist/scripts/src/components/NumberBox/NumberBoxNative.js +2 -2
  46. package/dist/scripts/src/components/Option/Option.js +3 -2
  47. package/dist/scripts/src/components/Select/Select.js +5 -3
  48. package/dist/scripts/src/components/Select/SelectNative.js +53 -42
  49. package/dist/scripts/src/components/SelectionStore/SelectionStore.js +1 -1
  50. package/dist/scripts/src/components/Spinner/Spinner.js +0 -1
  51. package/dist/scripts/src/components/TableOfContents/TableOfContents.js +1 -0
  52. package/dist/scripts/src/components/Text/Text.js +12 -1
  53. package/dist/scripts/src/components/Text/TextNative.js +5 -1
  54. package/dist/scripts/src/components/TextBox/TextBox.js +6 -1
  55. package/dist/scripts/src/components/TextBox/TextBoxNative.js +2 -2
  56. package/dist/scripts/src/components/Theme/ThemeNative.js +7 -3
  57. package/dist/scripts/src/components/ToneChangerButton/ToneChangerButton.js +1 -3
  58. package/dist/scripts/src/components-core/RestApiProxy.js +10 -7
  59. package/dist/scripts/src/components-core/TableOfContentsContext.js +1 -1
  60. package/dist/scripts/src/components-core/appContext/date-functions.js +23 -0
  61. package/dist/scripts/src/components-core/appContext/math-function.js +27 -0
  62. package/dist/scripts/src/components-core/appContext/misc-utils.js +13 -0
  63. package/dist/scripts/src/components-core/interception/ApiInterceptor.js +199 -0
  64. package/dist/scripts/src/components-core/interception/ApiInterceptorProvider.js +94 -0
  65. package/dist/scripts/src/components-core/interception/Backend.js +128 -0
  66. package/dist/scripts/src/components-core/interception/Errors.js +129 -0
  67. package/dist/scripts/src/components-core/interception/InMemoryDb.js +41 -0
  68. package/dist/scripts/src/components-core/interception/IndexedDb.js +207 -0
  69. package/dist/scripts/src/components-core/interception/ReadonlyCollection.js +145 -0
  70. package/dist/scripts/src/components-core/interception/abstractions.js +2 -0
  71. package/dist/scripts/src/components-core/interception/apiInterceptorWorker.js +46 -0
  72. package/dist/scripts/src/components-core/interception/useApiInterceptorContext.js +9 -0
  73. package/dist/scripts/src/components-core/rendering/AppContent.js +336 -0
  74. package/dist/scripts/src/components-core/rendering/AppRoot.js +84 -0
  75. package/dist/scripts/src/components-core/rendering/AppWrapper.js +49 -0
  76. package/dist/scripts/src/components-core/rendering/ComponentAdapter.js +17 -7
  77. package/dist/scripts/src/components-core/rendering/Container.js +2 -1
  78. package/dist/scripts/src/components-core/theming/ThemeProvider.js +2 -7
  79. package/dist/scripts/src/components-core/theming/themes/root.js +1 -0
  80. package/dist/scripts/src/components-core/utils/date-utils.js +78 -0
  81. package/dist/scripts/src/components-core/utils/hooks.js +26 -0
  82. package/dist/scripts/src/components-core/utils/misc.js +1 -1
  83. package/dist/scripts/src/components-core/utils/request-params.js +70 -0
  84. package/dist/scripts/src/logging/LoggerContext.js +22 -0
  85. package/dist/scripts/src/logging/LoggerInitializer.js +14 -0
  86. package/dist/scripts/src/logging/LoggerService.js +60 -0
  87. package/dist/scripts/src/parsers/xmlui-parser/transform.js +7 -0
  88. package/dist/{server-common-DW5h7Q34.mjs → server-common-9TiLMTJj.mjs} +106 -98
  89. package/dist/style.css +3325 -2794
  90. package/dist/{lint-EcgF-9Wr.mjs → transform-DC0Gy6qw.mjs} +1246 -540
  91. package/dist/xmlui-metadata.mjs +2647 -2521
  92. package/dist/xmlui-metadata.umd.js +2649 -2523
  93. package/dist/xmlui-parser.d.ts +49 -4
  94. package/dist/xmlui-parser.mjs +49 -48
  95. package/dist/xmlui-standalone.umd.js +34524 -31277
  96. package/dist/xmlui.d.ts +3 -1
  97. package/dist/xmlui.mjs +10 -10
  98. package/package.json +2 -1
  99. package/dist/apiInterceptorWorker-DZyEgCvB.mjs +0 -8447
  100. 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_fx8ts_13 {
976
+ ._wrapper_918vy_13 {
972
977
  --footer-height: 0px;
973
978
  --header-height: 0px;
974
979
  width: 100%;
@@ -978,152 +983,131 @@
978
983
  flex-direction: column;
979
984
  isolation: isolate;
980
985
  }
981
- ._wrapper_fx8ts_13._vertical_fx8ts_23 {
986
+ ._wrapper_918vy_13._vertical_918vy_23 {
982
987
  flex-direction: row;
983
988
  overflow: initial;
984
989
  }
985
- ._wrapper_fx8ts_13._vertical_fx8ts_23 ._contentWrapper_fx8ts_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_fx8ts_13._vertical_fx8ts_23 ._navPanelWrapper_fx8ts_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_fx8ts_13._vertical_fx8ts_23 ._PagesWrapper_fx8ts_37 {
1000
+ ._wrapper_918vy_13._vertical_918vy_23 ._PagesWrapper_918vy_37 {
996
1001
  min-height: initial;
997
1002
  flex: 1;
998
1003
  }
999
- ._wrapper_fx8ts_13._vertical_fx8ts_23 ._footerWrapper_fx8ts_41 {
1004
+ ._wrapper_918vy_13._vertical_918vy_23 ._footerWrapper_918vy_41 {
1000
1005
  position: static;
1001
1006
  }
1002
- ._wrapper_fx8ts_13._vertical_fx8ts_23._sticky_fx8ts_44 ._contentWrapper_fx8ts_27 {
1003
- scroll-padding-top: var(--header-height);
1004
- }
1005
- ._wrapper_fx8ts_13._vertical_fx8ts_23._sticky_fx8ts_44 ._footerWrapper_fx8ts_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_fx8ts_13._horizontal_fx8ts_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_fx8ts_13._horizontal_fx8ts_51 ._PagesWrapper_fx8ts_37 {
1015
+ ._wrapper_918vy_13._horizontal_918vy_48 ._PagesWrapper_918vy_37 {
1014
1016
  min-height: initial;
1015
1017
  }
1016
- ._wrapper_fx8ts_13._horizontal_fx8ts_51 ._footerWrapper_fx8ts_41 {
1018
+ ._wrapper_918vy_13._horizontal_918vy_48 ._footerWrapper_918vy_41 {
1017
1019
  position: static;
1018
1020
  }
1019
- ._wrapper_fx8ts_13._horizontal_fx8ts_51._sticky_fx8ts_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_fx8ts_13._horizontal_fx8ts_51._sticky_fx8ts_44 ._footerWrapper_fx8ts_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_fx8ts_13._horizontal_fx8ts_51 ._navPanelWrapper_fx8ts_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_fx8ts_13._verticalFullHeader_fx8ts_73 {
1032
+ ._wrapper_918vy_13._verticalFullHeader_918vy_69 {
1032
1033
  min-height: 100%;
1033
1034
  height: 100%;
1034
1035
  overflow: auto;
1035
1036
  scroll-padding-block: var(--xmlui-scroll-padding-block-Pages);
1036
1037
  }
1037
- ._wrapper_fx8ts_13._verticalFullHeader_fx8ts_73 ._navPanelWrapper_fx8ts_33 {
1038
+ ._wrapper_918vy_13._verticalFullHeader_918vy_69 ._navPanelWrapper_918vy_33 {
1038
1039
  width: var(--xmlui-width-navPanel-App);
1039
1040
  position: sticky;
1040
1041
  height: calc(var(--containerHeight, 100vh) - var(--footer-height) - var(--header-height));
1041
1042
  top: var(--header-height);
1042
1043
  }
1043
- ._wrapper_fx8ts_13._verticalFullHeader_fx8ts_73 ._contentScroller_fx8ts_85 {
1044
- width: 100%;
1045
- margin: 0 auto;
1046
- }
1047
- ._wrapper_fx8ts_13._verticalFullHeader_fx8ts_73 ._contentScroller_fx8ts_85 ._contentAligner_fx8ts_89 {
1048
- max-width: var(--xmlui-maxWidth-App-vertical);
1049
- margin: 0 auto;
1050
- }
1051
- ._wrapper_fx8ts_13._verticalFullHeader_fx8ts_73 ._PagesWrapper_fx8ts_37 {
1044
+ ._wrapper_918vy_13._verticalFullHeader_918vy_69 ._PagesWrapper_918vy_37 {
1052
1045
  overflow: initial;
1053
1046
  min-height: calc(var(--containerHeight, 100vh) - var(--header-height) - var(--footer-height));
1054
1047
  height: 100%;
1055
1048
  }
1056
- ._wrapper_fx8ts_13._verticalFullHeader_fx8ts_73 ._PagesWrapperInner_fx8ts_98 {
1049
+ ._wrapper_918vy_13._verticalFullHeader_918vy_69 ._PagesWrapperInner_918vy_86 {
1057
1050
  height: 100%;
1058
1051
  }
1059
- ._wrapper_fx8ts_13._verticalFullHeader_fx8ts_73 ._PagesWrapperInner_fx8ts_98 > .xmlui-page-root {
1052
+ ._wrapper_918vy_13._verticalFullHeader_918vy_69 ._PagesWrapperInner_918vy_86 > .xmlui-page-root {
1060
1053
  height: 100%;
1061
1054
  }
1062
- ._wrapper_fx8ts_13._verticalFullHeader_fx8ts_73 ._footerWrapper_fx8ts_41 {
1055
+ ._wrapper_918vy_13._verticalFullHeader_918vy_69 ._footerWrapper_918vy_41 {
1063
1056
  position: sticky;
1064
1057
  left: 0;
1065
1058
  right: 0;
1066
1059
  bottom: 0;
1067
1060
  }
1068
- ._wrapper_fx8ts_13._scrollWholePage_fx8ts_110 {
1061
+ ._wrapper_918vy_13._scrollWholePage_918vy_98 {
1069
1062
  scrollbar-gutter: stable both-edges;
1070
1063
  }
1071
- ._wrapper_fx8ts_13._scrollWholePage_fx8ts_110 ._headerWrapper_fx8ts_113 {
1064
+ ._wrapper_918vy_13._scrollWholePage_918vy_98 ._headerWrapper_918vy_101 {
1072
1065
  margin-inline: calc(-1 * var(--scrollbar-width));
1073
1066
  }
1074
- ._wrapper_fx8ts_13._scrollWholePage_fx8ts_110 ._headerWrapper_fx8ts_113 > div {
1067
+ ._wrapper_918vy_13._scrollWholePage_918vy_98 ._headerWrapper_918vy_101 > div {
1075
1068
  padding-inline: var(--scrollbar-width);
1076
1069
  }
1077
- ._wrapper_fx8ts_13._scrollWholePage_fx8ts_110 ._footerWrapper_fx8ts_41 {
1070
+ ._wrapper_918vy_13._scrollWholePage_918vy_98 ._footerWrapper_918vy_41 {
1078
1071
  margin-inline: calc(-1 * var(--scrollbar-width));
1079
1072
  }
1080
- ._wrapper_fx8ts_13._scrollWholePage_fx8ts_110 ._footerWrapper_fx8ts_41 > div {
1073
+ ._wrapper_918vy_13._scrollWholePage_918vy_98 ._footerWrapper_918vy_41 > div {
1081
1074
  padding-inline: var(--scrollbar-width);
1082
1075
  }
1083
- ._wrapper_fx8ts_13._scrollWholePage_fx8ts_110._verticalFullHeader_fx8ts_73 {
1084
- scroll-padding-top: var(--header-height);
1085
- }
1086
- ._wrapper_fx8ts_13._scrollWholePage_fx8ts_110._verticalFullHeader_fx8ts_73 ._content_fx8ts_27 {
1076
+ ._wrapper_918vy_13._scrollWholePage_918vy_98._verticalFullHeader_918vy_69 ._content_918vy_27 {
1087
1077
  margin-inline: calc(-1 * var(--scrollbar-width));
1088
1078
  }
1089
- ._wrapper_fx8ts_13._scrollWholePage_fx8ts_110._verticalFullHeader_fx8ts_73 ._contentWrapper_fx8ts_27 {
1079
+ ._wrapper_918vy_13._scrollWholePage_918vy_98._verticalFullHeader_918vy_69 ._contentWrapper_918vy_27 {
1090
1080
  padding-inline: var(--scrollbar-width);
1091
1081
  }
1092
- ._wrapper_fx8ts_13:not(._scrollWholePage_fx8ts_110) {
1082
+ ._wrapper_918vy_13:not(._scrollWholePage_918vy_98) {
1093
1083
  overflow: hidden;
1094
1084
  }
1095
- ._wrapper_fx8ts_13:not(._scrollWholePage_fx8ts_110) ._content_fx8ts_27 {
1085
+ ._wrapper_918vy_13:not(._scrollWholePage_918vy_98) ._content_918vy_27 {
1096
1086
  min-height: 0;
1097
1087
  height: 100%;
1098
1088
  }
1099
- ._wrapper_fx8ts_13:not(._scrollWholePage_fx8ts_110) ._contentWrapper_fx8ts_27 {
1089
+ ._wrapper_918vy_13:not(._scrollWholePage_918vy_98) ._contentWrapper_918vy_27 {
1100
1090
  overflow: initial;
1101
1091
  }
1102
- ._wrapper_fx8ts_13:not(._scrollWholePage_fx8ts_110) ._contentScroller_fx8ts_85 {
1103
- height: 100%;
1104
- }
1105
- ._wrapper_fx8ts_13:not(._scrollWholePage_fx8ts_110) ._contentScroller_fx8ts_85 ._contentAligner_fx8ts_89 {
1106
- height: 100%;
1107
- }
1108
- ._wrapper_fx8ts_13:not(._scrollWholePage_fx8ts_110) ._PagesWrapper_fx8ts_37 {
1092
+ ._wrapper_918vy_13:not(._scrollWholePage_918vy_98) ._PagesWrapper_918vy_37 {
1109
1093
  overflow: auto;
1110
1094
  scroll-padding-block: var(--xmlui-scroll-padding-block-Pages);
1111
1095
  min-height: 0;
1112
1096
  height: 100%;
1113
1097
  scrollbar-gutter: stable both-edges;
1114
1098
  }
1115
- ._wrapper_fx8ts_13:not(._scrollWholePage_fx8ts_110) ._PagesWrapperInner_fx8ts_98 {
1099
+ ._wrapper_918vy_13:not(._scrollWholePage_918vy_98) ._PagesWrapperInner_918vy_86 {
1116
1100
  min-height: 100%;
1117
1101
  height: 0;
1118
1102
  }
1119
- ._wrapper_fx8ts_13._noScrollbarGutters_fx8ts_161 {
1103
+ ._wrapper_918vy_13._noScrollbarGutters_918vy_140 {
1120
1104
  scrollbar-gutter: auto;
1121
1105
  }
1122
- ._wrapper_fx8ts_13._noScrollbarGutters_fx8ts_161 ._PagesWrapper_fx8ts_37 {
1106
+ ._wrapper_918vy_13._noScrollbarGutters_918vy_140 ._PagesWrapper_918vy_37 {
1123
1107
  scrollbar-gutter: auto;
1124
1108
  }
1125
1109
 
1126
- ._headerWrapper_fx8ts_113 {
1110
+ ._headerWrapper_918vy_101 {
1127
1111
  z-index: 1;
1128
1112
  min-height: 0;
1129
1113
  flex-shrink: 0;
@@ -1132,17 +1116,20 @@
1132
1116
  box-shadow: var(--xmlui-boxShadow-header-App);
1133
1117
  background-color: var(--xmlui-backgroundColor-AppHeader);
1134
1118
  }
1135
- ._headerWrapper_fx8ts_113._sticky_fx8ts_44 {
1119
+ ._headerWrapper_918vy_101._sticky_918vy_44 {
1136
1120
  position: sticky;
1137
1121
  }
1138
1122
 
1139
- ._content_fx8ts_27 {
1123
+ ._content_918vy_27 {
1140
1124
  display: flex;
1141
1125
  flex-direction: row;
1142
1126
  isolation: isolate;
1127
+ align-self: center;
1128
+ width: 100%;
1129
+ max-width: var(--xmlui-maxWidth-App);
1143
1130
  }
1144
1131
 
1145
- ._contentWrapper_fx8ts_27 {
1132
+ ._contentWrapper_918vy_27 {
1146
1133
  position: relative;
1147
1134
  min-width: 0;
1148
1135
  flex: 1;
@@ -1153,21 +1140,21 @@
1153
1140
  border-left: var(--xmlui-borderLeft-content-App);
1154
1141
  }
1155
1142
 
1156
- ._navPanelWrapper_fx8ts_33 {
1143
+ ._navPanelWrapper_918vy_33 {
1157
1144
  display: flex;
1158
1145
  position: sticky;
1159
1146
  top: 0;
1160
1147
  }
1161
- ._navPanelWrapper_fx8ts_33:empty {
1148
+ ._navPanelWrapper_918vy_33:empty {
1162
1149
  display: none;
1163
1150
  }
1164
1151
 
1165
- ._PagesWrapper_fx8ts_37 {
1152
+ ._PagesWrapper_918vy_37 {
1166
1153
  flex: 1;
1167
1154
  isolation: isolate;
1168
1155
  }
1169
1156
 
1170
- ._PagesWrapperInner_fx8ts_98 {
1157
+ ._PagesWrapperInner_918vy_86 {
1171
1158
  --page-padding-left: var(--xmlui-space-4);
1172
1159
  --page-padding-right: var(--xmlui-space-4);
1173
1160
  --page-padding-top: var(--xmlui-space-5);
@@ -1185,7 +1172,7 @@
1185
1172
  display: flex;
1186
1173
  flex-direction: column;
1187
1174
  }
1188
- ._PagesWrapperInner_fx8ts_98 > .xmlui-page-root {
1175
+ ._PagesWrapperInner_918vy_86 > .xmlui-page-root {
1189
1176
  padding-top: var(--page-padding-top-override, var(--page-padding-top));
1190
1177
  padding-bottom: var(--page-padding-bottom-override, var(--page-padding-bottom));
1191
1178
  padding-right: var(--page-padding-right-override, var(--page-padding-right));
@@ -1197,7 +1184,7 @@
1197
1184
  margin-right: calc(-1 * var(--page-padding-right));
1198
1185
  }
1199
1186
 
1200
- ._footerWrapper_fx8ts_41 {
1187
+ ._footerWrapper_918vy_41 {
1201
1188
  flex-shrink: 0;
1202
1189
  }/*
1203
1190
  * This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
@@ -1331,7 +1318,7 @@
1331
1318
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
1332
1319
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
1333
1320
  */
1334
- ._header_1w1cw_13 {
1321
+ ._header_gpl7m_13 {
1335
1322
  position: relative;
1336
1323
  height: var(--xmlui-height-AppHeader);
1337
1324
  box-sizing: content-box;
@@ -1358,7 +1345,7 @@
1358
1345
  border-end-end-radius: var(--xmlui-borderEndEndRadius-AppHeader, var(--xmlui-borderRadius-AppHeader));
1359
1346
  }
1360
1347
 
1361
- ._headerInner_1w1cw_40 {
1348
+ ._headerInner_gpl7m_40 {
1362
1349
  height: 100%;
1363
1350
  flex: 1;
1364
1351
  gap: var(--xmlui-space-4);
@@ -1376,14 +1363,11 @@
1376
1363
  width: 100%;
1377
1364
  margin: 0 auto;
1378
1365
  }
1379
- ._headerInner_1w1cw_40._verticalFullHeader_1w1cw_58 {
1380
- max-width: var(--xmlui-maxWidth-App-vertical);
1381
- }
1382
- ._headerInner_1w1cw_40._verticalFullHeader_1w1cw_58._scrollWholePage_1w1cw_61 {
1383
- padding-left: calc(var(--xmlui-paddingHorizontal-AppHeader, var(--xmlui-padding-AppHeader)) - var(--scrollbar-width));
1366
+ ._headerInner_gpl7m_40._full_gpl7m_58 {
1367
+ max-width: var(--xmlui-maxWidth-AppHeader);
1384
1368
  }
1385
1369
 
1386
- ._childrenWrapper_1w1cw_65 {
1370
+ ._childrenWrapper_gpl7m_62 {
1387
1371
  --stack-gap-default: var(--xmlui-space-2);
1388
1372
  display: flex;
1389
1373
  flex-direction: row;
@@ -1395,25 +1379,25 @@
1395
1379
  justify-content: var(--xmlui-align-content-AppHeader);
1396
1380
  }
1397
1381
 
1398
- ._subNavPanelSlot_1w1cw_77 {
1382
+ ._subNavPanelSlot_gpl7m_74 {
1399
1383
  display: flex;
1400
1384
  flex-direction: row;
1401
1385
  }
1402
1386
 
1403
- ._logoAndTitle_1w1cw_82 {
1387
+ ._logoAndTitle_gpl7m_79 {
1404
1388
  display: flex;
1405
1389
  align-items: center;
1406
1390
  gap: var(--xmlui-space-4);
1407
1391
  height: 100%;
1408
1392
  }
1409
- ._logoAndTitle_1w1cw_82:not(:empty) {
1393
+ ._logoAndTitle_gpl7m_79:not(:empty) {
1410
1394
  padding-right: var(--xmlui-space-2);
1411
1395
  }
1412
- ._logoAndTitle_1w1cw_82:empty {
1396
+ ._logoAndTitle_gpl7m_79:empty {
1413
1397
  display: none;
1414
1398
  }
1415
1399
 
1416
- ._logoContainer_1w1cw_95:not(:empty) {
1400
+ ._logoContainer_gpl7m_92:not(:empty) {
1417
1401
  flex-shrink: 0;
1418
1402
  display: flex;
1419
1403
  width: var(--xmlui-width-logo-AppHeader);
@@ -1426,16 +1410,16 @@
1426
1410
  padding-bottom: var(--xmlui-paddingBottom-logo-AppHeader, var(--xmlui-paddingVertical-logo-AppHeader, var(--xmlui-padding-logo-AppHeader)));
1427
1411
  }
1428
1412
 
1429
- ._customLogoContainer_1w1cw_108 {
1413
+ ._customLogoContainer_gpl7m_105 {
1430
1414
  display: flex;
1431
1415
  height: 100%;
1432
1416
  align-items: center;
1433
1417
  }
1434
- ._customLogoContainer_1w1cw_108 > img {
1418
+ ._customLogoContainer_gpl7m_105 > img {
1435
1419
  height: 100%;
1436
1420
  }
1437
1421
 
1438
- ._rightItems_1w1cw_117 {
1422
+ ._rightItems_gpl7m_114 {
1439
1423
  --stack-gap-default: var(--xmlui-space-2);
1440
1424
  gap: var(--stack-gap-default);
1441
1425
  height: 100%;
@@ -1443,11 +1427,11 @@
1443
1427
  flex-direction: row;
1444
1428
  align-items: center;
1445
1429
  }
1446
- ._rightItems_1w1cw_117:not(:empty) {
1430
+ ._rightItems_gpl7m_114:not(:empty) {
1447
1431
  padding-left: var(--xmlui-space-4);
1448
1432
  }
1449
1433
 
1450
- ._appHub_1w1cw_129 {
1434
+ ._appHub_gpl7m_126 {
1451
1435
  text-decoration: none;
1452
1436
  margin-right: var(--xmlui-space-4);
1453
1437
  width: 40px;
@@ -1455,10 +1439,10 @@
1455
1439
  color: var(--xmlui-textColor-subtitle);
1456
1440
  cursor: pointer;
1457
1441
  }
1458
- ._appHub_1w1cw_129:hover {
1442
+ ._appHub_gpl7m_126:hover {
1459
1443
  color: var(--xmlui-textColor-secondary);
1460
1444
  }
1461
- ._appHub_1w1cw_129 svg {
1445
+ ._appHub_gpl7m_126 svg {
1462
1446
  width: 100%;
1463
1447
  height: 100%;
1464
1448
  }/*
@@ -2188,7 +2172,7 @@
2188
2172
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
2189
2173
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
2190
2174
  */
2191
- ._heading_1ad65_13._h1_1ad65_13 {
2175
+ ._heading_qi2wo_13._h1_qi2wo_13 {
2192
2176
  padding: var(--xmlui-padding-H1);
2193
2177
  padding-left: var(--xmlui-paddingLeft-H1, var(--xmlui-paddingHorizontal-H1, var(--xmlui-padding-H1)));
2194
2178
  padding-right: var(--xmlui-paddingRight-H1, var(--xmlui-paddingHorizontal-H1, var(--xmlui-padding-H1)));
@@ -2251,7 +2235,7 @@
2251
2235
  text-decoration-thickness: var(--xmlui-textDecorationThickness-H1);
2252
2236
  text-underline-offset: var(--xmlui-textUnderlineOffset-H1);
2253
2237
  }
2254
- ._heading_1ad65_13._h2_1ad65_76 {
2238
+ ._heading_qi2wo_13._h2_qi2wo_76 {
2255
2239
  padding: var(--xmlui-padding-H2);
2256
2240
  padding-left: var(--xmlui-paddingLeft-H2, var(--xmlui-paddingHorizontal-H2, var(--xmlui-padding-H2)));
2257
2241
  padding-right: var(--xmlui-paddingRight-H2, var(--xmlui-paddingHorizontal-H2, var(--xmlui-padding-H2)));
@@ -2314,7 +2298,7 @@
2314
2298
  text-decoration-thickness: var(--xmlui-textDecorationThickness-H2);
2315
2299
  text-underline-offset: var(--xmlui-textUnderlineOffset-H2);
2316
2300
  }
2317
- ._heading_1ad65_13._h3_1ad65_139 {
2301
+ ._heading_qi2wo_13._h3_qi2wo_139 {
2318
2302
  padding: var(--xmlui-padding-H3);
2319
2303
  padding-left: var(--xmlui-paddingLeft-H3, var(--xmlui-paddingHorizontal-H3, var(--xmlui-padding-H3)));
2320
2304
  padding-right: var(--xmlui-paddingRight-H3, var(--xmlui-paddingHorizontal-H3, var(--xmlui-padding-H3)));
@@ -2377,7 +2361,7 @@
2377
2361
  text-decoration-thickness: var(--xmlui-textDecorationThickness-H3);
2378
2362
  text-underline-offset: var(--xmlui-textUnderlineOffset-H3);
2379
2363
  }
2380
- ._heading_1ad65_13._h4_1ad65_202 {
2364
+ ._heading_qi2wo_13._h4_qi2wo_202 {
2381
2365
  padding: var(--xmlui-padding-H4);
2382
2366
  padding-left: var(--xmlui-paddingLeft-H4, var(--xmlui-paddingHorizontal-H4, var(--xmlui-padding-H4)));
2383
2367
  padding-right: var(--xmlui-paddingRight-H4, var(--xmlui-paddingHorizontal-H4, var(--xmlui-padding-H4)));
@@ -2440,7 +2424,7 @@
2440
2424
  text-decoration-thickness: var(--xmlui-textDecorationThickness-H4);
2441
2425
  text-underline-offset: var(--xmlui-textUnderlineOffset-H4);
2442
2426
  }
2443
- ._heading_1ad65_13._h5_1ad65_265 {
2427
+ ._heading_qi2wo_13._h5_qi2wo_265 {
2444
2428
  padding: var(--xmlui-padding-H5);
2445
2429
  padding-left: var(--xmlui-paddingLeft-H5, var(--xmlui-paddingHorizontal-H5, var(--xmlui-padding-H5)));
2446
2430
  padding-right: var(--xmlui-paddingRight-H5, var(--xmlui-paddingHorizontal-H5, var(--xmlui-padding-H5)));
@@ -2503,7 +2487,7 @@
2503
2487
  text-decoration-thickness: var(--xmlui-textDecorationThickness-H5);
2504
2488
  text-underline-offset: var(--xmlui-textUnderlineOffset-H5);
2505
2489
  }
2506
- ._heading_1ad65_13._h6_1ad65_328 {
2490
+ ._heading_qi2wo_13._h6_qi2wo_328 {
2507
2491
  padding: var(--xmlui-padding-H6);
2508
2492
  padding-left: var(--xmlui-paddingLeft-H6, var(--xmlui-paddingHorizontal-H6, var(--xmlui-padding-H6)));
2509
2493
  padding-right: var(--xmlui-paddingRight-H6, var(--xmlui-paddingHorizontal-H6, var(--xmlui-padding-H6)));
@@ -2567,21 +2551,28 @@
2567
2551
  text-underline-offset: var(--xmlui-textUnderlineOffset-H6);
2568
2552
  }
2569
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
+
2570
2561
  /*
2571
2562
  This is a Chromium based solution that is supported by most modern browsers.
2572
2563
  See this source for details: https://css-tricks.com/line-clampin/
2573
2564
  */
2574
- ._truncateOverflow_1ad65_396 {
2565
+ ._truncateOverflow_qi2wo_403 {
2575
2566
  overflow: hidden;
2576
2567
  text-overflow: ellipsis;
2577
2568
  white-space: nowrap;
2578
2569
  }
2579
2570
 
2580
- ._preserveLinebreaks_1ad65_402 {
2571
+ ._preserveLinebreaks_qi2wo_409 {
2581
2572
  white-space: pre-wrap;
2582
2573
  }
2583
2574
 
2584
- ._noEllipsis_1ad65_406 {
2575
+ ._noEllipsis_qi2wo_413 {
2585
2576
  text-overflow: clip;
2586
2577
  }/*
2587
2578
  * This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
@@ -2595,7 +2586,7 @@ See this source for details: https://css-tricks.com/line-clampin/
2595
2586
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
2596
2587
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
2597
2588
  */
2598
- ._text_wtc9w_13 {
2589
+ ._text_xzkxl_13 {
2599
2590
  overflow: hidden;
2600
2591
  text-overflow: ellipsis;
2601
2592
  margin: 0;
@@ -2653,9 +2644,11 @@ See this source for details: https://css-tricks.com/line-clampin/
2653
2644
  line-break: var(--xmlui-lineBreak-Text-default);
2654
2645
  margin-top: var(--xmlui-marginTop-Text-default);
2655
2646
  margin-bottom: var(--xmlui-marginBottom-Text-default);
2647
+ margin-left: var(--xmlui-marginLeft-Text-default);
2648
+ margin-right: var(--xmlui-marginRight-Text-default);
2656
2649
  vertical-align: var(--xmlui-verticalAlign-Text-default);
2657
2650
  }
2658
- ._text_wtc9w_13._markdown_wtc9w_73 {
2651
+ ._text_xzkxl_13._markdown_xzkxl_75 {
2659
2652
  padding: var(--xmlui-padding-Text-markdown);
2660
2653
  padding-left: var(--xmlui-paddingLeft-Text-markdown, var(--xmlui-paddingHorizontal-Text-markdown, var(--xmlui-padding-Text-markdown)));
2661
2654
  padding-right: var(--xmlui-paddingRight-Text-markdown, var(--xmlui-paddingHorizontal-Text-markdown, var(--xmlui-padding-Text-markdown)));
@@ -2708,12 +2701,11 @@ See this source for details: https://css-tricks.com/line-clampin/
2708
2701
  line-break: var(--xmlui-lineBreak-Text-markdown);
2709
2702
  margin-top: var(--xmlui-marginTop-Text-markdown);
2710
2703
  margin-bottom: var(--xmlui-marginBottom-Text-markdown);
2704
+ margin-left: var(--xmlui-marginLeft-Text-markdown);
2705
+ margin-right: var(--xmlui-marginRight-Text-markdown);
2711
2706
  vertical-align: var(--xmlui-verticalAlign-Text-markdown);
2712
2707
  }
2713
- ._text_wtc9w_13 ._text_wtc9w_13 {
2714
- display: inline;
2715
- }
2716
- ._text_wtc9w_13._abbr_wtc9w_131 {
2708
+ ._text_xzkxl_13._abbr_xzkxl_132 {
2717
2709
  padding: var(--xmlui-padding-Text-abbr);
2718
2710
  padding-left: var(--xmlui-paddingLeft-Text-abbr, var(--xmlui-paddingHorizontal-Text-abbr, var(--xmlui-padding-Text-abbr)));
2719
2711
  padding-right: var(--xmlui-paddingRight-Text-abbr, var(--xmlui-paddingHorizontal-Text-abbr, var(--xmlui-padding-Text-abbr)));
@@ -2766,9 +2758,11 @@ See this source for details: https://css-tricks.com/line-clampin/
2766
2758
  line-break: var(--xmlui-lineBreak-Text-abbr);
2767
2759
  margin-top: var(--xmlui-marginTop-Text-abbr);
2768
2760
  margin-bottom: var(--xmlui-marginBottom-Text-abbr);
2761
+ margin-left: var(--xmlui-marginLeft-Text-abbr);
2762
+ margin-right: var(--xmlui-marginRight-Text-abbr);
2769
2763
  vertical-align: var(--xmlui-verticalAlign-Text-abbr);
2770
2764
  }
2771
- ._text_wtc9w_13._cite_wtc9w_186 {
2765
+ ._text_xzkxl_13._cite_xzkxl_189 {
2772
2766
  padding: var(--xmlui-padding-Text-cite);
2773
2767
  padding-left: var(--xmlui-paddingLeft-Text-cite, var(--xmlui-paddingHorizontal-Text-cite, var(--xmlui-padding-Text-cite)));
2774
2768
  padding-right: var(--xmlui-paddingRight-Text-cite, var(--xmlui-paddingHorizontal-Text-cite, var(--xmlui-padding-Text-cite)));
@@ -2821,12 +2815,16 @@ See this source for details: https://css-tricks.com/line-clampin/
2821
2815
  line-break: var(--xmlui-lineBreak-Text-cite);
2822
2816
  margin-top: var(--xmlui-marginTop-Text-cite);
2823
2817
  margin-bottom: var(--xmlui-marginBottom-Text-cite);
2818
+ margin-left: var(--xmlui-marginLeft-Text-cite);
2819
+ margin-right: var(--xmlui-marginRight-Text-cite);
2824
2820
  vertical-align: var(--xmlui-verticalAlign-Text-cite);
2825
2821
  }
2826
- ._text_wtc9w_13 ._text_wtc9w_13._codefence_wtc9w_241 {
2822
+ ._text_xzkxl_13 ._text_xzkxl_13._codefence_xzkxl_246 {
2827
2823
  display: block;
2824
+ margin-top: var(--xmlui-marginTop-Text-codefence);
2825
+ margin-bottom: var(--xmlui-marginBottom-Text-codefence);
2828
2826
  }
2829
- :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 {
2830
2828
  padding: var(--xmlui-padding-Text-code);
2831
2829
  padding-left: var(--xmlui-paddingLeft-Text-code, var(--xmlui-paddingHorizontal-Text-code, var(--xmlui-padding-Text-code)));
2832
2830
  padding-right: var(--xmlui-paddingRight-Text-code, var(--xmlui-paddingHorizontal-Text-code, var(--xmlui-padding-Text-code)));
@@ -2879,9 +2877,11 @@ See this source for details: https://css-tricks.com/line-clampin/
2879
2877
  line-break: var(--xmlui-lineBreak-Text-code);
2880
2878
  margin-top: var(--xmlui-marginTop-Text-code);
2881
2879
  margin-bottom: var(--xmlui-marginBottom-Text-code);
2880
+ margin-left: var(--xmlui-marginLeft-Text-code);
2881
+ margin-right: var(--xmlui-marginRight-Text-code);
2882
2882
  vertical-align: var(--xmlui-verticalAlign-Text-code);
2883
2883
  }
2884
- ._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) {
2885
2885
  padding: var(--xmlui-padding-Text-codefence);
2886
2886
  padding-left: var(--xmlui-paddingLeft-Text-codefence, var(--xmlui-paddingHorizontal-Text-codefence, var(--xmlui-padding-Text-codefence)));
2887
2887
  padding-right: var(--xmlui-paddingRight-Text-codefence, var(--xmlui-paddingHorizontal-Text-codefence, var(--xmlui-padding-Text-codefence)));
@@ -2934,11 +2934,46 @@ See this source for details: https://css-tricks.com/line-clampin/
2934
2934
  line-break: var(--xmlui-lineBreak-Text-codefence);
2935
2935
  margin-top: var(--xmlui-marginTop-Text-codefence);
2936
2936
  margin-bottom: var(--xmlui-marginBottom-Text-codefence);
2937
+ margin-left: var(--xmlui-marginLeft-Text-codefence);
2938
+ margin-right: var(--xmlui-marginRight-Text-codefence);
2937
2939
  vertical-align: var(--xmlui-verticalAlign-Text-codefence);
2938
2940
  overflow-x: auto;
2939
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%;
2955
+ }
2956
+ ._text_xzkxl_13._codefence_xzkxl_246 > code::before {
2957
+ counter-reset: listing;
2940
2958
  }
2941
- ._text_wtc9w_13._deleted_wtc9w_356 {
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 {
2942
2977
  padding: var(--xmlui-padding-Text-deleted);
2943
2978
  padding-left: var(--xmlui-paddingLeft-Text-deleted, var(--xmlui-paddingHorizontal-Text-deleted, var(--xmlui-padding-Text-deleted)));
2944
2979
  padding-right: var(--xmlui-paddingRight-Text-deleted, var(--xmlui-paddingHorizontal-Text-deleted, var(--xmlui-padding-Text-deleted)));
@@ -2991,9 +3026,11 @@ See this source for details: https://css-tricks.com/line-clampin/
2991
3026
  line-break: var(--xmlui-lineBreak-Text-deleted);
2992
3027
  margin-top: var(--xmlui-marginTop-Text-deleted);
2993
3028
  margin-bottom: var(--xmlui-marginBottom-Text-deleted);
3029
+ margin-left: var(--xmlui-marginLeft-Text-deleted);
3030
+ margin-right: var(--xmlui-marginRight-Text-deleted);
2994
3031
  vertical-align: var(--xmlui-verticalAlign-Text-deleted);
2995
3032
  }
2996
- ._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 {
2997
3034
  clip-path: inset(100%);
2998
3035
  clip: rect(1px, 1px, 1px, 1px);
2999
3036
  height: 1px;
@@ -3002,13 +3039,13 @@ See this source for details: https://css-tricks.com/line-clampin/
3002
3039
  white-space: nowrap;
3003
3040
  width: 1px;
3004
3041
  }
3005
- ._text_wtc9w_13._deleted_wtc9w_356::before {
3042
+ ._text_xzkxl_13._deleted_xzkxl_400::before {
3006
3043
  content: " [deletion start] ";
3007
3044
  }
3008
- ._text_wtc9w_13._deleted_wtc9w_356::after {
3045
+ ._text_xzkxl_13._deleted_xzkxl_400::after {
3009
3046
  content: " [deletion end] ";
3010
3047
  }
3011
- ._text_wtc9w_13._inserted_wtc9w_426 {
3048
+ ._text_xzkxl_13._inserted_xzkxl_472 {
3012
3049
  padding: var(--xmlui-padding-Text-inserted);
3013
3050
  padding-left: var(--xmlui-paddingLeft-Text-inserted, var(--xmlui-paddingHorizontal-Text-inserted, var(--xmlui-padding-Text-inserted)));
3014
3051
  padding-right: var(--xmlui-paddingRight-Text-inserted, var(--xmlui-paddingHorizontal-Text-inserted, var(--xmlui-padding-Text-inserted)));
@@ -3061,9 +3098,11 @@ See this source for details: https://css-tricks.com/line-clampin/
3061
3098
  line-break: var(--xmlui-lineBreak-Text-inserted);
3062
3099
  margin-top: var(--xmlui-marginTop-Text-inserted);
3063
3100
  margin-bottom: var(--xmlui-marginBottom-Text-inserted);
3101
+ margin-left: var(--xmlui-marginLeft-Text-inserted);
3102
+ margin-right: var(--xmlui-marginRight-Text-inserted);
3064
3103
  vertical-align: var(--xmlui-verticalAlign-Text-inserted);
3065
3104
  }
3066
- ._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 {
3067
3106
  clip-path: inset(100%);
3068
3107
  clip: rect(1px, 1px, 1px, 1px);
3069
3108
  height: 1px;
@@ -3072,13 +3111,13 @@ See this source for details: https://css-tricks.com/line-clampin/
3072
3111
  white-space: nowrap;
3073
3112
  width: 1px;
3074
3113
  }
3075
- ._text_wtc9w_13._inserted_wtc9w_426::before {
3114
+ ._text_xzkxl_13._inserted_xzkxl_472::before {
3076
3115
  content: " [insertion start] ";
3077
3116
  }
3078
- ._text_wtc9w_13._inserted_wtc9w_426::after {
3117
+ ._text_xzkxl_13._inserted_xzkxl_472::after {
3079
3118
  content: " [insertion end] ";
3080
3119
  }
3081
- ._text_wtc9w_13._keyboard_wtc9w_496 {
3120
+ ._text_xzkxl_13._keyboard_xzkxl_544 {
3082
3121
  padding: var(--xmlui-padding-Text-keyboard);
3083
3122
  padding-left: var(--xmlui-paddingLeft-Text-keyboard, var(--xmlui-paddingHorizontal-Text-keyboard, var(--xmlui-padding-Text-keyboard)));
3084
3123
  padding-right: var(--xmlui-paddingRight-Text-keyboard, var(--xmlui-paddingHorizontal-Text-keyboard, var(--xmlui-padding-Text-keyboard)));
@@ -3131,9 +3170,11 @@ See this source for details: https://css-tricks.com/line-clampin/
3131
3170
  line-break: var(--xmlui-lineBreak-Text-keyboard);
3132
3171
  margin-top: var(--xmlui-marginTop-Text-keyboard);
3133
3172
  margin-bottom: var(--xmlui-marginBottom-Text-keyboard);
3173
+ margin-left: var(--xmlui-marginLeft-Text-keyboard);
3174
+ margin-right: var(--xmlui-marginRight-Text-keyboard);
3134
3175
  vertical-align: var(--xmlui-verticalAlign-Text-keyboard);
3135
3176
  }
3136
- ._text_wtc9w_13._marked_wtc9w_551 {
3177
+ ._text_xzkxl_13._marked_xzkxl_601 {
3137
3178
  padding: var(--xmlui-padding-Text-marked);
3138
3179
  padding-left: var(--xmlui-paddingLeft-Text-marked, var(--xmlui-paddingHorizontal-Text-marked, var(--xmlui-padding-Text-marked)));
3139
3180
  padding-right: var(--xmlui-paddingRight-Text-marked, var(--xmlui-paddingHorizontal-Text-marked, var(--xmlui-padding-Text-marked)));
@@ -3186,9 +3227,11 @@ See this source for details: https://css-tricks.com/line-clampin/
3186
3227
  line-break: var(--xmlui-lineBreak-Text-marked);
3187
3228
  margin-top: var(--xmlui-marginTop-Text-marked);
3188
3229
  margin-bottom: var(--xmlui-marginBottom-Text-marked);
3230
+ margin-left: var(--xmlui-marginLeft-Text-marked);
3231
+ margin-right: var(--xmlui-marginRight-Text-marked);
3189
3232
  vertical-align: var(--xmlui-verticalAlign-Text-marked);
3190
3233
  }
3191
- ._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 {
3192
3235
  clip-path: inset(100%);
3193
3236
  clip: rect(1px, 1px, 1px, 1px);
3194
3237
  height: 1px;
@@ -3197,13 +3240,13 @@ See this source for details: https://css-tricks.com/line-clampin/
3197
3240
  white-space: nowrap;
3198
3241
  width: 1px;
3199
3242
  }
3200
- ._text_wtc9w_13._marked_wtc9w_551::before {
3243
+ ._text_xzkxl_13._marked_xzkxl_601::before {
3201
3244
  content: " [highlight start] ";
3202
3245
  }
3203
- ._text_wtc9w_13._marked_wtc9w_551::after {
3246
+ ._text_xzkxl_13._marked_xzkxl_601::after {
3204
3247
  content: " [highlight end] ";
3205
3248
  }
3206
- ._text_wtc9w_13._mono_wtc9w_621 {
3249
+ ._text_xzkxl_13._mono_xzkxl_673 {
3207
3250
  padding: var(--xmlui-padding-Text-mono);
3208
3251
  padding-left: var(--xmlui-paddingLeft-Text-mono, var(--xmlui-paddingHorizontal-Text-mono, var(--xmlui-padding-Text-mono)));
3209
3252
  padding-right: var(--xmlui-paddingRight-Text-mono, var(--xmlui-paddingHorizontal-Text-mono, var(--xmlui-padding-Text-mono)));
@@ -3256,9 +3299,11 @@ See this source for details: https://css-tricks.com/line-clampin/
3256
3299
  line-break: var(--xmlui-lineBreak-Text-mono);
3257
3300
  margin-top: var(--xmlui-marginTop-Text-mono);
3258
3301
  margin-bottom: var(--xmlui-marginBottom-Text-mono);
3302
+ margin-left: var(--xmlui-marginLeft-Text-mono);
3303
+ margin-right: var(--xmlui-marginRight-Text-mono);
3259
3304
  vertical-align: var(--xmlui-verticalAlign-Text-mono);
3260
3305
  }
3261
- ._text_wtc9w_13._sample_wtc9w_676 {
3306
+ ._text_xzkxl_13._sample_xzkxl_730 {
3262
3307
  padding: var(--xmlui-padding-Text-sample);
3263
3308
  padding-left: var(--xmlui-paddingLeft-Text-sample, var(--xmlui-paddingHorizontal-Text-sample, var(--xmlui-padding-Text-sample)));
3264
3309
  padding-right: var(--xmlui-paddingRight-Text-sample, var(--xmlui-paddingHorizontal-Text-sample, var(--xmlui-padding-Text-sample)));
@@ -3311,9 +3356,11 @@ See this source for details: https://css-tricks.com/line-clampin/
3311
3356
  line-break: var(--xmlui-lineBreak-Text-sample);
3312
3357
  margin-top: var(--xmlui-marginTop-Text-sample);
3313
3358
  margin-bottom: var(--xmlui-marginBottom-Text-sample);
3359
+ margin-left: var(--xmlui-marginLeft-Text-sample);
3360
+ margin-right: var(--xmlui-marginRight-Text-sample);
3314
3361
  vertical-align: var(--xmlui-verticalAlign-Text-sample);
3315
3362
  }
3316
- ._text_wtc9w_13._sup_wtc9w_731 {
3363
+ ._text_xzkxl_13._sup_xzkxl_787 {
3317
3364
  padding: var(--xmlui-padding-Text-sup);
3318
3365
  padding-left: var(--xmlui-paddingLeft-Text-sup, var(--xmlui-paddingHorizontal-Text-sup, var(--xmlui-padding-Text-sup)));
3319
3366
  padding-right: var(--xmlui-paddingRight-Text-sup, var(--xmlui-paddingHorizontal-Text-sup, var(--xmlui-padding-Text-sup)));
@@ -3366,9 +3413,11 @@ See this source for details: https://css-tricks.com/line-clampin/
3366
3413
  line-break: var(--xmlui-lineBreak-Text-sup);
3367
3414
  margin-top: var(--xmlui-marginTop-Text-sup);
3368
3415
  margin-bottom: var(--xmlui-marginBottom-Text-sup);
3416
+ margin-left: var(--xmlui-marginLeft-Text-sup);
3417
+ margin-right: var(--xmlui-marginRight-Text-sup);
3369
3418
  vertical-align: var(--xmlui-verticalAlign-Text-sup);
3370
3419
  }
3371
- ._text_wtc9w_13._sub_wtc9w_786 {
3420
+ ._text_xzkxl_13._sub_xzkxl_844 {
3372
3421
  padding: var(--xmlui-padding-Text-sub);
3373
3422
  padding-left: var(--xmlui-paddingLeft-Text-sub, var(--xmlui-paddingHorizontal-Text-sub, var(--xmlui-padding-Text-sub)));
3374
3423
  padding-right: var(--xmlui-paddingRight-Text-sub, var(--xmlui-paddingHorizontal-Text-sub, var(--xmlui-padding-Text-sub)));
@@ -3421,9 +3470,11 @@ See this source for details: https://css-tricks.com/line-clampin/
3421
3470
  line-break: var(--xmlui-lineBreak-Text-sub);
3422
3471
  margin-top: var(--xmlui-marginTop-Text-sub);
3423
3472
  margin-bottom: var(--xmlui-marginBottom-Text-sub);
3473
+ margin-left: var(--xmlui-marginLeft-Text-sub);
3474
+ margin-right: var(--xmlui-marginRight-Text-sub);
3424
3475
  vertical-align: var(--xmlui-verticalAlign-Text-sub);
3425
3476
  }
3426
- ._text_wtc9w_13._var_wtc9w_841 {
3477
+ ._text_xzkxl_13._var_xzkxl_901 {
3427
3478
  padding: var(--xmlui-padding-Text-var);
3428
3479
  padding-left: var(--xmlui-paddingLeft-Text-var, var(--xmlui-paddingHorizontal-Text-var, var(--xmlui-padding-Text-var)));
3429
3480
  padding-right: var(--xmlui-paddingRight-Text-var, var(--xmlui-paddingHorizontal-Text-var, var(--xmlui-padding-Text-var)));
@@ -3476,9 +3527,11 @@ See this source for details: https://css-tricks.com/line-clampin/
3476
3527
  line-break: var(--xmlui-lineBreak-Text-var);
3477
3528
  margin-top: var(--xmlui-marginTop-Text-var);
3478
3529
  margin-bottom: var(--xmlui-marginBottom-Text-var);
3530
+ margin-left: var(--xmlui-marginLeft-Text-var);
3531
+ margin-right: var(--xmlui-marginRight-Text-var);
3479
3532
  vertical-align: var(--xmlui-verticalAlign-Text-var);
3480
3533
  }
3481
- ._text_wtc9w_13._title_wtc9w_896 {
3534
+ ._text_xzkxl_13._title_xzkxl_958 {
3482
3535
  padding: var(--xmlui-padding-Text-title);
3483
3536
  padding-left: var(--xmlui-paddingLeft-Text-title, var(--xmlui-paddingHorizontal-Text-title, var(--xmlui-padding-Text-title)));
3484
3537
  padding-right: var(--xmlui-paddingRight-Text-title, var(--xmlui-paddingHorizontal-Text-title, var(--xmlui-padding-Text-title)));
@@ -3531,9 +3584,11 @@ See this source for details: https://css-tricks.com/line-clampin/
3531
3584
  line-break: var(--xmlui-lineBreak-Text-title);
3532
3585
  margin-top: var(--xmlui-marginTop-Text-title);
3533
3586
  margin-bottom: var(--xmlui-marginBottom-Text-title);
3587
+ margin-left: var(--xmlui-marginLeft-Text-title);
3588
+ margin-right: var(--xmlui-marginRight-Text-title);
3534
3589
  vertical-align: var(--xmlui-verticalAlign-Text-title);
3535
3590
  }
3536
- ._text_wtc9w_13._subtitle_wtc9w_951 {
3591
+ ._text_xzkxl_13._subtitle_xzkxl_1015 {
3537
3592
  padding: var(--xmlui-padding-Text-subtitle);
3538
3593
  padding-left: var(--xmlui-paddingLeft-Text-subtitle, var(--xmlui-paddingHorizontal-Text-subtitle, var(--xmlui-padding-Text-subtitle)));
3539
3594
  padding-right: var(--xmlui-paddingRight-Text-subtitle, var(--xmlui-paddingHorizontal-Text-subtitle, var(--xmlui-padding-Text-subtitle)));
@@ -3586,9 +3641,11 @@ See this source for details: https://css-tricks.com/line-clampin/
3586
3641
  line-break: var(--xmlui-lineBreak-Text-subtitle);
3587
3642
  margin-top: var(--xmlui-marginTop-Text-subtitle);
3588
3643
  margin-bottom: var(--xmlui-marginBottom-Text-subtitle);
3644
+ margin-left: var(--xmlui-marginLeft-Text-subtitle);
3645
+ margin-right: var(--xmlui-marginRight-Text-subtitle);
3589
3646
  vertical-align: var(--xmlui-verticalAlign-Text-subtitle);
3590
3647
  }
3591
- ._text_wtc9w_13._small_wtc9w_1006 {
3648
+ ._text_xzkxl_13._small_xzkxl_1072 {
3592
3649
  padding: var(--xmlui-padding-Text-small);
3593
3650
  padding-left: var(--xmlui-paddingLeft-Text-small, var(--xmlui-paddingHorizontal-Text-small, var(--xmlui-padding-Text-small)));
3594
3651
  padding-right: var(--xmlui-paddingRight-Text-small, var(--xmlui-paddingHorizontal-Text-small, var(--xmlui-padding-Text-small)));
@@ -3641,9 +3698,11 @@ See this source for details: https://css-tricks.com/line-clampin/
3641
3698
  line-break: var(--xmlui-lineBreak-Text-small);
3642
3699
  margin-top: var(--xmlui-marginTop-Text-small);
3643
3700
  margin-bottom: var(--xmlui-marginBottom-Text-small);
3701
+ margin-left: var(--xmlui-marginLeft-Text-small);
3702
+ margin-right: var(--xmlui-marginRight-Text-small);
3644
3703
  vertical-align: var(--xmlui-verticalAlign-Text-small);
3645
3704
  }
3646
- ._text_wtc9w_13._caption_wtc9w_1061 {
3705
+ ._text_xzkxl_13._caption_xzkxl_1129 {
3647
3706
  padding: var(--xmlui-padding-Text-caption);
3648
3707
  padding-left: var(--xmlui-paddingLeft-Text-caption, var(--xmlui-paddingHorizontal-Text-caption, var(--xmlui-padding-Text-caption)));
3649
3708
  padding-right: var(--xmlui-paddingRight-Text-caption, var(--xmlui-paddingHorizontal-Text-caption, var(--xmlui-padding-Text-caption)));
@@ -3696,9 +3755,11 @@ See this source for details: https://css-tricks.com/line-clampin/
3696
3755
  line-break: var(--xmlui-lineBreak-Text-caption);
3697
3756
  margin-top: var(--xmlui-marginTop-Text-caption);
3698
3757
  margin-bottom: var(--xmlui-marginBottom-Text-caption);
3758
+ margin-left: var(--xmlui-marginLeft-Text-caption);
3759
+ margin-right: var(--xmlui-marginRight-Text-caption);
3699
3760
  vertical-align: var(--xmlui-verticalAlign-Text-caption);
3700
3761
  }
3701
- ._text_wtc9w_13._placeholder_wtc9w_1116 {
3762
+ ._text_xzkxl_13._placeholder_xzkxl_1186 {
3702
3763
  padding: var(--xmlui-padding-Text-placeholder);
3703
3764
  padding-left: var(--xmlui-paddingLeft-Text-placeholder, var(--xmlui-paddingHorizontal-Text-placeholder, var(--xmlui-padding-Text-placeholder)));
3704
3765
  padding-right: var(--xmlui-paddingRight-Text-placeholder, var(--xmlui-paddingHorizontal-Text-placeholder, var(--xmlui-padding-Text-placeholder)));
@@ -3751,9 +3812,11 @@ See this source for details: https://css-tricks.com/line-clampin/
3751
3812
  line-break: var(--xmlui-lineBreak-Text-placeholder);
3752
3813
  margin-top: var(--xmlui-marginTop-Text-placeholder);
3753
3814
  margin-bottom: var(--xmlui-marginBottom-Text-placeholder);
3815
+ margin-left: var(--xmlui-marginLeft-Text-placeholder);
3816
+ margin-right: var(--xmlui-marginRight-Text-placeholder);
3754
3817
  vertical-align: var(--xmlui-verticalAlign-Text-placeholder);
3755
3818
  }
3756
- ._text_wtc9w_13._paragraph_wtc9w_1171 {
3819
+ ._text_xzkxl_13._paragraph_xzkxl_1243 {
3757
3820
  padding: var(--xmlui-padding-Text-paragraph);
3758
3821
  padding-left: var(--xmlui-paddingLeft-Text-paragraph, var(--xmlui-paddingHorizontal-Text-paragraph, var(--xmlui-padding-Text-paragraph)));
3759
3822
  padding-right: var(--xmlui-paddingRight-Text-paragraph, var(--xmlui-paddingHorizontal-Text-paragraph, var(--xmlui-padding-Text-paragraph)));
@@ -3806,9 +3869,11 @@ See this source for details: https://css-tricks.com/line-clampin/
3806
3869
  line-break: var(--xmlui-lineBreak-Text-paragraph);
3807
3870
  margin-top: var(--xmlui-marginTop-Text-paragraph);
3808
3871
  margin-bottom: var(--xmlui-marginBottom-Text-paragraph);
3872
+ margin-left: var(--xmlui-marginLeft-Text-paragraph);
3873
+ margin-right: var(--xmlui-marginRight-Text-paragraph);
3809
3874
  vertical-align: var(--xmlui-verticalAlign-Text-paragraph);
3810
3875
  }
3811
- ._text_wtc9w_13._subheading_wtc9w_1226 {
3876
+ ._text_xzkxl_13._subheading_xzkxl_1300 {
3812
3877
  padding: var(--xmlui-padding-Text-subheading);
3813
3878
  padding-left: var(--xmlui-paddingLeft-Text-subheading, var(--xmlui-paddingHorizontal-Text-subheading, var(--xmlui-padding-Text-subheading)));
3814
3879
  padding-right: var(--xmlui-paddingRight-Text-subheading, var(--xmlui-paddingHorizontal-Text-subheading, var(--xmlui-padding-Text-subheading)));
@@ -3861,9 +3926,11 @@ See this source for details: https://css-tricks.com/line-clampin/
3861
3926
  line-break: var(--xmlui-lineBreak-Text-subheading);
3862
3927
  margin-top: var(--xmlui-marginTop-Text-subheading);
3863
3928
  margin-bottom: var(--xmlui-marginBottom-Text-subheading);
3929
+ margin-left: var(--xmlui-marginLeft-Text-subheading);
3930
+ margin-right: var(--xmlui-marginRight-Text-subheading);
3864
3931
  vertical-align: var(--xmlui-verticalAlign-Text-subheading);
3865
3932
  }
3866
- ._text_wtc9w_13._tableheading_wtc9w_1281 {
3933
+ ._text_xzkxl_13._tableheading_xzkxl_1357 {
3867
3934
  padding: var(--xmlui-padding-Text-tableheading);
3868
3935
  padding-left: var(--xmlui-paddingLeft-Text-tableheading, var(--xmlui-paddingHorizontal-Text-tableheading, var(--xmlui-padding-Text-tableheading)));
3869
3936
  padding-right: var(--xmlui-paddingRight-Text-tableheading, var(--xmlui-paddingHorizontal-Text-tableheading, var(--xmlui-padding-Text-tableheading)));
@@ -3916,9 +3983,11 @@ See this source for details: https://css-tricks.com/line-clampin/
3916
3983
  line-break: var(--xmlui-lineBreak-Text-tableheading);
3917
3984
  margin-top: var(--xmlui-marginTop-Text-tableheading);
3918
3985
  margin-bottom: var(--xmlui-marginBottom-Text-tableheading);
3986
+ margin-left: var(--xmlui-marginLeft-Text-tableheading);
3987
+ margin-right: var(--xmlui-marginRight-Text-tableheading);
3919
3988
  vertical-align: var(--xmlui-verticalAlign-Text-tableheading);
3920
3989
  }
3921
- ._text_wtc9w_13._secondary_wtc9w_1336 {
3990
+ ._text_xzkxl_13._secondary_xzkxl_1414 {
3922
3991
  padding: var(--xmlui-padding-Text-secondary);
3923
3992
  padding-left: var(--xmlui-paddingLeft-Text-secondary, var(--xmlui-paddingHorizontal-Text-secondary, var(--xmlui-padding-Text-secondary)));
3924
3993
  padding-right: var(--xmlui-paddingRight-Text-secondary, var(--xmlui-paddingHorizontal-Text-secondary, var(--xmlui-padding-Text-secondary)));
@@ -3971,9 +4040,11 @@ See this source for details: https://css-tricks.com/line-clampin/
3971
4040
  line-break: var(--xmlui-lineBreak-Text-secondary);
3972
4041
  margin-top: var(--xmlui-marginTop-Text-secondary);
3973
4042
  margin-bottom: var(--xmlui-marginBottom-Text-secondary);
4043
+ margin-left: var(--xmlui-marginLeft-Text-secondary);
4044
+ margin-right: var(--xmlui-marginRight-Text-secondary);
3974
4045
  vertical-align: var(--xmlui-verticalAlign-Text-secondary);
3975
4046
  }
3976
- ._text_wtc9w_13._strong_wtc9w_1391 {
4047
+ ._text_xzkxl_13._strong_xzkxl_1471 {
3977
4048
  font-weight: var(--xmlui-fontWeight-bold);
3978
4049
  }
3979
4050
 
@@ -3981,18 +4052,18 @@ See this source for details: https://css-tricks.com/line-clampin/
3981
4052
  This is a Chromium based solution that is supported by most modern browsers.
3982
4053
  See this source for details: https://css-tricks.com/line-clampin/
3983
4054
  */
3984
- ._truncateOverflow_wtc9w_1399 {
4055
+ ._truncateOverflow_xzkxl_1479 {
3985
4056
  overflow: hidden;
3986
4057
  overflow-wrap: break-word;
3987
4058
  white-space: nowrap;
3988
4059
  max-width: 100%;
3989
4060
  }
3990
4061
 
3991
- ._preserveLinebreaks_wtc9w_1406 {
4062
+ ._preserveLinebreaks_xzkxl_1486 {
3992
4063
  white-space: pre-wrap;
3993
4064
  }
3994
4065
 
3995
- ._noEllipsis_wtc9w_1410 {
4066
+ ._noEllipsis_xzkxl_1490 {
3996
4067
  text-overflow: clip;
3997
4068
  }/*
3998
4069
  * This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
@@ -4297,7 +4368,7 @@ See this source for details: https://css-tricks.com/line-clampin/
4297
4368
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
4298
4369
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
4299
4370
  */
4300
- ._resetAppearance_m9kqa_13 {
4371
+ ._resetAppearance_ddph3_13 {
4301
4372
  /* Add if not using autoprefixer */
4302
4373
  -webkit-appearance: none;
4303
4374
  appearance: none;
@@ -4305,11 +4376,11 @@ See this source for details: https://css-tricks.com/line-clampin/
4305
4376
  margin: 0;
4306
4377
  }
4307
4378
 
4308
- ._label_m9kqa_21 {
4309
- width: fit-content;
4379
+ ._label_ddph3_21 {
4380
+ width: 100%;
4310
4381
  }
4311
4382
 
4312
- ._inputContainer_m9kqa_25 {
4383
+ ._inputContainer_ddph3_25 {
4313
4384
  z-index: -1;
4314
4385
  position: relative;
4315
4386
  opacity: 0;
@@ -4317,7 +4388,7 @@ See this source for details: https://css-tricks.com/line-clampin/
4317
4388
  height: 0;
4318
4389
  }
4319
4390
 
4320
- ._checkbox_m9kqa_33 {
4391
+ ._checkbox_ddph3_33 {
4321
4392
  display: grid;
4322
4393
  place-content: center;
4323
4394
  min-width: 1em;
@@ -4329,57 +4400,57 @@ See this source for details: https://css-tricks.com/line-clampin/
4329
4400
  border-color: var(--xmlui-borderColor-Checkbox-default);
4330
4401
  background-color: var(--xmlui-backgroundColor-Checkbox-default);
4331
4402
  }
4332
- ._checkbox_m9kqa_33:not([readonly]) {
4403
+ ._checkbox_ddph3_33:not([readonly]) {
4333
4404
  cursor: pointer;
4334
4405
  }
4335
- ._checkbox_m9kqa_33:focus-visible {
4406
+ ._checkbox_ddph3_33:focus-visible {
4336
4407
  outline-width: var(--xmlui-outlineWidth-Checkbox-default--focus);
4337
4408
  outline-color: var(--xmlui-outlineColor-Checkbox-default--focus);
4338
4409
  outline-style: var(--xmlui-outlineStyle-Checkbox-default--focus);
4339
4410
  outline-offset: var(--xmlui-outlineOffset-Checkbox-default--focus);
4340
4411
  }
4341
- ._checkbox_m9kqa_33:hover {
4412
+ ._checkbox_ddph3_33:hover {
4342
4413
  border-color: var(--xmlui-borderColor-Checkbox-default--hover);
4343
4414
  }
4344
- ._checkbox_m9kqa_33:disabled {
4415
+ ._checkbox_ddph3_33:disabled {
4345
4416
  cursor: not-allowed;
4346
4417
  background-color: var(--xmlui-backgroundColor-Checkbox--disabled);
4347
4418
  border-color: var(--xmlui-borderColor-Checkbox--disabled);
4348
4419
  }
4349
- ._checkbox_m9kqa_33._error_m9kqa_62 {
4420
+ ._checkbox_ddph3_33._error_ddph3_62 {
4350
4421
  border-radius: var(--xmlui-borderRadius-Checkbox-error);
4351
4422
  border-color: var(--xmlui-borderColor-Checkbox-error);
4352
4423
  background-color: var(--xmlui-backgroundColor-Checkbox-error);
4353
4424
  }
4354
- ._checkbox_m9kqa_33._error_m9kqa_62:focus-visible {
4425
+ ._checkbox_ddph3_33._error_ddph3_62:focus-visible {
4355
4426
  outline-width: var(--xmlui-outlineWidth-Checkbox-error--focus);
4356
4427
  outline-color: var(--xmlui-outlineColor-Checkbox-error--focus);
4357
4428
  outline-style: var(--xmlui-outlineStyle-Checkbox-error--focus);
4358
4429
  outline-offset: var(--xmlui-outlineOffset-Checkbox-error--focus);
4359
4430
  }
4360
- ._checkbox_m9kqa_33._warning_m9kqa_73 {
4431
+ ._checkbox_ddph3_33._warning_ddph3_73 {
4361
4432
  border-radius: var(--xmlui-borderRadius-Checkbox-warning);
4362
4433
  border-color: var(--xmlui-borderColor-Checkbox-warning);
4363
4434
  background-color: var(--xmlui-backgroundColor-Checkbox-warning);
4364
4435
  }
4365
- ._checkbox_m9kqa_33._warning_m9kqa_73:focus-visible {
4436
+ ._checkbox_ddph3_33._warning_ddph3_73:focus-visible {
4366
4437
  outline-width: var(--xmlui-outlineWidth-Checkbox-warning--focus);
4367
4438
  outline-color: var(--xmlui-outlineColor-Checkbox-warning--focus);
4368
4439
  outline-style: var(--xmlui-outlineStyle-Checkbox-warning--focus);
4369
4440
  outline-offset: var(--xmlui-outlineOffset-Checkbox-warning--focus);
4370
4441
  }
4371
- ._checkbox_m9kqa_33._valid_m9kqa_84 {
4442
+ ._checkbox_ddph3_33._valid_ddph3_84 {
4372
4443
  border-radius: var(--xmlui-borderRadius-Checkbox-success);
4373
4444
  border-color: var(--xmlui-borderColor-Checkbox-success);
4374
4445
  background-color: var(--xmlui-backgroundColor-Checkbox-success);
4375
4446
  }
4376
- ._checkbox_m9kqa_33._valid_m9kqa_84:focus-visible {
4447
+ ._checkbox_ddph3_33._valid_ddph3_84:focus-visible {
4377
4448
  outline-width: var(--xmlui-outlineWidth-Checkbox-success--focus);
4378
4449
  outline-color: var(--xmlui-outlineColor-Checkbox-success--focus);
4379
4450
  outline-style: var(--xmlui-outlineStyle-Checkbox-success--focus);
4380
4451
  outline-offset: var(--xmlui-outlineOffset-Checkbox-success--focus);
4381
4452
  }
4382
- ._checkbox_m9kqa_33::before {
4453
+ ._checkbox_ddph3_33::before {
4383
4454
  content: "";
4384
4455
  width: 0.5em;
4385
4456
  height: 0.5em;
@@ -4389,46 +4460,46 @@ See this source for details: https://css-tricks.com/line-clampin/
4389
4460
  transform-origin: center;
4390
4461
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
4391
4462
  }
4392
- ._checkbox_m9kqa_33:checked::before {
4463
+ ._checkbox_ddph3_33:checked::before {
4393
4464
  transform: scale(1);
4394
4465
  }
4395
- ._checkbox_m9kqa_33:checked {
4466
+ ._checkbox_ddph3_33:checked {
4396
4467
  border-color: var(--xmlui-borderColor-checked-Checkbox);
4397
4468
  background-color: var(--xmlui-backgroundColor-checked-Checkbox);
4398
4469
  }
4399
- ._checkbox_m9kqa_33:checked:disabled {
4470
+ ._checkbox_ddph3_33:checked:disabled {
4400
4471
  background-color: var(--xmlui-backgroundColor-Checkbox--disabled);
4401
4472
  border-color: var(--xmlui-borderColor-Checkbox--disabled);
4402
4473
  }
4403
- ._checkbox_m9kqa_33:checked._error_m9kqa_62 {
4474
+ ._checkbox_ddph3_33:checked._error_ddph3_62 {
4404
4475
  border-color: var(--xmlui-borderColor-checked-Checkbox-error);
4405
4476
  background-color: var(--xmlui-backgroundColor-checked-Checkbox-error);
4406
4477
  }
4407
- ._checkbox_m9kqa_33:checked._warning_m9kqa_73 {
4478
+ ._checkbox_ddph3_33:checked._warning_ddph3_73 {
4408
4479
  border-color: var(--xmlui-borderColor-checked-Checkbox-warning);
4409
4480
  background-color: var(--xmlui-backgroundColor-checked-Checkbox-warning);
4410
4481
  }
4411
- ._checkbox_m9kqa_33:checked._valid_m9kqa_84 {
4482
+ ._checkbox_ddph3_33:checked._valid_ddph3_84 {
4412
4483
  border-color: var(--xmlui-borderColor-checked-Checkbox-success);
4413
4484
  background-color: var(--xmlui-backgroundColor-checked-Checkbox-success);
4414
4485
  }
4415
- ._checkbox_m9kqa_33:indeterminate {
4486
+ ._checkbox_ddph3_33:indeterminate {
4416
4487
  background-color: var(--xmlui-backgroundColor-checked-Checkbox);
4417
4488
  border-color: var(--xmlui-borderColor-checked-Checkbox);
4418
4489
  }
4419
- ._checkbox_m9kqa_33:indeterminate[readonly] {
4490
+ ._checkbox_ddph3_33:indeterminate[readonly] {
4420
4491
  pointer-events: none;
4421
4492
  }
4422
- ._checkbox_m9kqa_33:indeterminate:disabled {
4493
+ ._checkbox_ddph3_33:indeterminate:disabled {
4423
4494
  background-color: var(--xmlui-backgroundColor-Checkbox--disabled);
4424
4495
  border-color: var(--xmlui-borderColor-Checkbox--disabled);
4425
4496
  }
4426
- ._checkbox_m9kqa_33:indeterminate::before {
4497
+ ._checkbox_ddph3_33:indeterminate::before {
4427
4498
  clip-path: circle(30% at 50% 50%);
4428
4499
  transform: scale(1);
4429
4500
  }
4430
4501
 
4431
- ._switch_m9kqa_144 {
4502
+ ._switch_ddph3_144 {
4432
4503
  border: 2px solid var(--xmlui-borderColor-Switch);
4433
4504
  width: 32px;
4434
4505
  height: 20px;
@@ -4438,24 +4509,24 @@ See this source for details: https://css-tricks.com/line-clampin/
4438
4509
  flex-shrink: 0;
4439
4510
  background-color: var(--xmlui-backgroundColor-Switch);
4440
4511
  }
4441
- ._switch_m9kqa_144:hover {
4512
+ ._switch_ddph3_144:hover {
4442
4513
  border-color: var(--xmlui-borderColor-Switch-default--hover);
4443
4514
  }
4444
- ._switch_m9kqa_144:disabled {
4515
+ ._switch_ddph3_144:disabled {
4445
4516
  cursor: not-allowed;
4446
4517
  background-color: var(--xmlui-backgroundColor-Switch--disabled);
4447
4518
  border-color: var(--xmlui-borderColor-Switch--disabled);
4448
4519
  }
4449
- ._switch_m9kqa_144._error_m9kqa_62 {
4520
+ ._switch_ddph3_144._error_ddph3_62 {
4450
4521
  border-color: var(--xmlui-borderColor-Switch-error);
4451
4522
  }
4452
- ._switch_m9kqa_144._warning_m9kqa_73 {
4523
+ ._switch_ddph3_144._warning_ddph3_73 {
4453
4524
  border-color: var(--xmlui-borderColor-Switch-warning);
4454
4525
  }
4455
- ._switch_m9kqa_144._valid_m9kqa_84 {
4526
+ ._switch_ddph3_144._valid_ddph3_84 {
4456
4527
  border-color: var(--xmlui-borderColor-Switch-success);
4457
4528
  }
4458
- ._switch_m9kqa_144::before {
4529
+ ._switch_ddph3_144::before {
4459
4530
  content: "";
4460
4531
  position: absolute;
4461
4532
  top: 0;
@@ -4466,33 +4537,33 @@ See this source for details: https://css-tricks.com/line-clampin/
4466
4537
  border-radius: 1rem;
4467
4538
  transition: 0.3s transform;
4468
4539
  }
4469
- ._switch_m9kqa_144:checked {
4540
+ ._switch_ddph3_144:checked {
4470
4541
  border-color: var(--xmlui-borderColor-checked-Switch);
4471
4542
  background-color: var(--xmlui-backgroundColor-checked-Switch);
4472
4543
  }
4473
- ._switch_m9kqa_144:checked:disabled {
4544
+ ._switch_ddph3_144:checked:disabled {
4474
4545
  background-color: var(--xmlui-backgroundColor-Switch--disabled);
4475
4546
  border-color: var(--xmlui-borderColor-Switch--disabled);
4476
4547
  }
4477
- ._switch_m9kqa_144:checked._error_m9kqa_62 {
4548
+ ._switch_ddph3_144:checked._error_ddph3_62 {
4478
4549
  border-color: var(--xmlui-borderColor-checked-Switch-error);
4479
4550
  background-color: var(--xmlui-backgroundColor-checked-Switch-error);
4480
4551
  }
4481
- ._switch_m9kqa_144:checked._warning_m9kqa_73 {
4552
+ ._switch_ddph3_144:checked._warning_ddph3_73 {
4482
4553
  border-color: var(--xmlui-borderColor-checked-Switch-warning);
4483
4554
  background-color: var(--xmlui-backgroundColor-checked-Switch-warning);
4484
4555
  }
4485
- ._switch_m9kqa_144:checked._valid_m9kqa_84 {
4556
+ ._switch_ddph3_144:checked._valid_ddph3_84 {
4486
4557
  border-color: var(--xmlui-borderColor-checked-Switch-success);
4487
4558
  background-color: var(--xmlui-backgroundColor-checked-Switch-success);
4488
4559
  }
4489
- ._switch_m9kqa_144:focus-visible {
4560
+ ._switch_ddph3_144:focus-visible {
4490
4561
  outline-width: var(--xmlui-outlineWidth-Switch--focus);
4491
4562
  outline-color: var(--xmlui-outlineColor-Switch--focus);
4492
4563
  outline-style: var(--xmlui-outlineStyle-Switch--focus);
4493
4564
  outline-offset: var(--xmlui-outlineOffset-Switch--focus);
4494
4565
  }
4495
- ._switch_m9kqa_144:checked::before {
4566
+ ._switch_ddph3_144:checked::before {
4496
4567
  transform: translateX(calc(100% - 4px));
4497
4568
  }/*
4498
4569
  * This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
@@ -4506,12 +4577,12 @@ See this source for details: https://css-tricks.com/line-clampin/
4506
4577
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
4507
4578
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
4508
4579
  */
4509
- ._wrapper_16ocz_13 {
4580
+ ._wrapper_1c2sc_13 {
4510
4581
  z-index: 1;
4511
4582
  }
4512
4583
 
4513
- ._sentinel_16ocz_17 ~ *:has([data-anchor=true]) [data-anchor=true] {
4514
- 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));
4515
4586
  }/*
4516
4587
  * This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
4517
4588
  *
@@ -5296,10 +5367,10 @@ See this source for details: https://css-tricks.com/line-clampin/
5296
5367
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
5297
5368
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
5298
5369
  */
5299
- ._inputRoot_ley74_13 {
5370
+ ._inputRoot_qxt8y_13 {
5300
5371
  display: flex;
5301
5372
  align-items: center;
5302
- gap: var(--xmlui-space-2);
5373
+ gap: var(--xmlui-gap-adornment-TextBox);
5303
5374
  width: 100%;
5304
5375
  border-style: solid;
5305
5376
  border-width: 1px;
@@ -5315,31 +5386,31 @@ See this source for details: https://css-tricks.com/line-clampin/
5315
5386
  box-shadow: var(--xmlui-boxShadow-TextBox-default);
5316
5387
  color: var(--xmlui-textColor-TextBox-default);
5317
5388
  }
5318
- ._inputRoot_ley74_13:hover {
5389
+ ._inputRoot_qxt8y_13:hover {
5319
5390
  border-color: var(--xmlui-borderColor-TextBox-default--hover);
5320
5391
  background-color: var(--xmlui-backgroundColor-TextBox-default--hover);
5321
5392
  box-shadow: var(--xmlui-boxShadow-TextBox-default--hover);
5322
5393
  color: var(--xmlui-textColor-TextBox-default--hover);
5323
5394
  }
5324
- ._inputRoot_ley74_13:focus-within {
5395
+ ._inputRoot_qxt8y_13:focus-within {
5325
5396
  border-color: var(--xmlui-borderColor-TextBox-default--focus);
5326
5397
  background-color: var(--xmlui-backgroundColor-TextBox-default--focus);
5327
5398
  box-shadow: var(--xmlui-boxShadow-TextBox-default--focus);
5328
5399
  color: var(--xmlui-textColor-TextBox-default--focus);
5329
5400
  }
5330
- ._inputRoot_ley74_13:has(._input_ley74_13:focus-visible) {
5401
+ ._inputRoot_qxt8y_13:has(._input_qxt8y_13:focus-visible) {
5331
5402
  outline-width: var(--xmlui-outlineWidth-TextBox-default--focus);
5332
5403
  outline-color: var(--xmlui-outlineColor-TextBox-default--focus);
5333
5404
  outline-style: var(--xmlui-outlineStyle-TextBox-default--focus);
5334
5405
  outline-offset: var(--xmlui-outlineOffset-TextBox-default--focus);
5335
5406
  }
5336
- ._inputRoot_ley74_13 ._input_ley74_13::placeholder {
5407
+ ._inputRoot_qxt8y_13 ._input_qxt8y_13::placeholder {
5337
5408
  color: var(--xmlui-color-placeholder-TextBox-default);
5338
5409
  }
5339
- ._inputRoot_ley74_13 ._adornment_ley74_53 {
5410
+ ._inputRoot_qxt8y_13 ._adornment_qxt8y_53 {
5340
5411
  color: var(--xmlui-color-adornment-TextBox-default);
5341
5412
  }
5342
- ._inputRoot_ley74_13._error_ley74_56 {
5413
+ ._inputRoot_qxt8y_13._error_qxt8y_56 {
5343
5414
  border-radius: var(--xmlui-borderRadius-TextBox-error);
5344
5415
  border-color: var(--xmlui-borderColor-TextBox-error);
5345
5416
  border-width: var(--xmlui-borderWidth-TextBox-error);
@@ -5350,31 +5421,31 @@ See this source for details: https://css-tricks.com/line-clampin/
5350
5421
  box-shadow: var(--xmlui-boxShadow-TextBox-error);
5351
5422
  color: var(--xmlui-textColor-TextBox-error);
5352
5423
  }
5353
- ._inputRoot_ley74_13._error_ley74_56:hover {
5424
+ ._inputRoot_qxt8y_13._error_qxt8y_56:hover {
5354
5425
  border-color: var(--xmlui-borderColor-TextBox-error--hover);
5355
5426
  background-color: var(--xmlui-backgroundColor-TextBox-error--hover);
5356
5427
  box-shadow: var(--xmlui-boxShadow-TextBox-error--hover);
5357
5428
  color: var(--xmlui-textColor-TextBox-error--hover);
5358
5429
  }
5359
- ._inputRoot_ley74_13._error_ley74_56:focus-within {
5430
+ ._inputRoot_qxt8y_13._error_qxt8y_56:focus-within {
5360
5431
  border-color: var(--xmlui-borderColor-TextBox-error--focus);
5361
5432
  background-color: var(--xmlui-backgroundColor-TextBox-error--focus);
5362
5433
  box-shadow: var(--xmlui-boxShadow-TextBox-error--focus);
5363
5434
  color: var(--xmlui-textColor-TextBox-error--focus);
5364
5435
  }
5365
- ._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) {
5366
5437
  outline-width: var(--xmlui-outlineWidth-TextBox-error--focus);
5367
5438
  outline-color: var(--xmlui-outlineColor-TextBox-error--focus);
5368
5439
  outline-style: var(--xmlui-outlineStyle-TextBox-error--focus);
5369
5440
  outline-offset: var(--xmlui-outlineOffset-TextBox-error--focus);
5370
5441
  }
5371
- ._inputRoot_ley74_13._error_ley74_56 ._input_ley74_13::placeholder {
5442
+ ._inputRoot_qxt8y_13._error_qxt8y_56 ._input_qxt8y_13::placeholder {
5372
5443
  color: var(--xmlui-color-placeholder-TextBox-error);
5373
5444
  }
5374
- ._inputRoot_ley74_13._error_ley74_56 ._adornment_ley74_53 {
5445
+ ._inputRoot_qxt8y_13._error_qxt8y_56 ._adornment_qxt8y_53 {
5375
5446
  color: var(--xmlui-color-adornment-TextBox-error);
5376
5447
  }
5377
- ._inputRoot_ley74_13._warning_ley74_91 {
5448
+ ._inputRoot_qxt8y_13._warning_qxt8y_91 {
5378
5449
  border-radius: var(--xmlui-borderRadius-TextBox-warning);
5379
5450
  border-color: var(--xmlui-borderColor-TextBox-warning);
5380
5451
  border-width: var(--xmlui-borderWidth-TextBox-warning);
@@ -5385,31 +5456,31 @@ See this source for details: https://css-tricks.com/line-clampin/
5385
5456
  box-shadow: var(--xmlui-boxShadow-TextBox-warning);
5386
5457
  color: var(--xmlui-textColor-TextBox-warning);
5387
5458
  }
5388
- ._inputRoot_ley74_13._warning_ley74_91:hover {
5459
+ ._inputRoot_qxt8y_13._warning_qxt8y_91:hover {
5389
5460
  border-color: var(--xmlui-borderColor-TextBox-warning--hover);
5390
5461
  background-color: var(--xmlui-backgroundColor-TextBox-warning--hover);
5391
5462
  box-shadow: var(--xmlui-boxShadow-TextBox-warning--hover);
5392
5463
  color: var(--xmlui-textColor-TextBox-warning--hover);
5393
5464
  }
5394
- ._inputRoot_ley74_13._warning_ley74_91:focus-within {
5465
+ ._inputRoot_qxt8y_13._warning_qxt8y_91:focus-within {
5395
5466
  border-color: var(--xmlui-borderColor-TextBox-warning--focus);
5396
5467
  background-color: var(--xmlui-backgroundColor-TextBox-warning--focus);
5397
5468
  box-shadow: var(--xmlui-boxShadow-TextBox-warning--focus);
5398
5469
  color: var(--xmlui-textColor-TextBox-warning--focus);
5399
5470
  }
5400
- ._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) {
5401
5472
  outline-width: var(--xmlui-outlineWidth-TextBox-warning--focus);
5402
5473
  outline-color: var(--xmlui-outlineColor-TextBox-warning--focus);
5403
5474
  outline-style: var(--xmlui-outlineStyle-TextBox-warning--focus);
5404
5475
  outline-offset: var(--xmlui-outlineOffset-TextBox-warning--focus);
5405
5476
  }
5406
- ._inputRoot_ley74_13._warning_ley74_91 ._input_ley74_13::placeholder {
5477
+ ._inputRoot_qxt8y_13._warning_qxt8y_91 ._input_qxt8y_13::placeholder {
5407
5478
  color: var(--xmlui-color-placeholder-TextBox-warning);
5408
5479
  }
5409
- ._inputRoot_ley74_13._warning_ley74_91 ._adornment_ley74_53 {
5480
+ ._inputRoot_qxt8y_13._warning_qxt8y_91 ._adornment_qxt8y_53 {
5410
5481
  color: var(--xmlui-color-adornment-TextBox-warning);
5411
5482
  }
5412
- ._inputRoot_ley74_13._valid_ley74_126 {
5483
+ ._inputRoot_qxt8y_13._valid_qxt8y_126 {
5413
5484
  border-radius: var(--xmlui-borderRadius-TextBox-success);
5414
5485
  border-color: var(--xmlui-borderColor-TextBox-success);
5415
5486
  border-width: var(--xmlui-borderWidth-TextBox-success);
@@ -5420,37 +5491,37 @@ See this source for details: https://css-tricks.com/line-clampin/
5420
5491
  box-shadow: var(--xmlui-boxShadow-TextBox-success);
5421
5492
  color: var(--xmlui-textColor-TextBox-success);
5422
5493
  }
5423
- ._inputRoot_ley74_13._valid_ley74_126:hover {
5494
+ ._inputRoot_qxt8y_13._valid_qxt8y_126:hover {
5424
5495
  border-color: var(--xmlui-borderColor-TextBox-success--hover);
5425
5496
  background-color: var(--xmlui-backgroundColor-TextBox-success--hover);
5426
5497
  box-shadow: var(--xmlui-boxShadow-TextBox-success--hover);
5427
5498
  color: var(--xmlui-textColor-TextBox-success--hover);
5428
5499
  }
5429
- ._inputRoot_ley74_13._valid_ley74_126:focus-within {
5500
+ ._inputRoot_qxt8y_13._valid_qxt8y_126:focus-within {
5430
5501
  border-color: var(--xmlui-borderColor-TextBox-success--focus);
5431
5502
  background-color: var(--xmlui-backgroundColor-TextBox-success--focus);
5432
5503
  box-shadow: var(--xmlui-boxShadow-TextBox-success--focus);
5433
5504
  color: var(--xmlui-textColor-TextBox-success--focus);
5434
5505
  }
5435
- ._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) {
5436
5507
  outline-width: var(--xmlui-outlineWidth-TextBox-success--focus);
5437
5508
  outline-color: var(--xmlui-outlineColor-TextBox-success--focus);
5438
5509
  outline-style: var(--xmlui-outlineStyle-TextBox-success--focus);
5439
5510
  outline-offset: var(--xmlui-outlineOffset-TextBox-success--focus);
5440
5511
  }
5441
- ._inputRoot_ley74_13._valid_ley74_126 ._input_ley74_13::placeholder {
5512
+ ._inputRoot_qxt8y_13._valid_qxt8y_126 ._input_qxt8y_13::placeholder {
5442
5513
  color: var(--xmlui-color-placeholder-TextBox-success);
5443
5514
  }
5444
- ._inputRoot_ley74_13._valid_ley74_126 ._adornment_ley74_53 {
5515
+ ._inputRoot_qxt8y_13._valid_qxt8y_126 ._adornment_qxt8y_53 {
5445
5516
  color: var(--xmlui-color-adornment-TextBox-success);
5446
5517
  }
5447
- ._inputRoot_ley74_13:has(._input_ley74_13:is(:disabled)) {
5518
+ ._inputRoot_qxt8y_13:has(._input_qxt8y_13:is(:disabled)) {
5448
5519
  cursor: not-allowed;
5449
5520
  background-color: var(--xmlui-backgroundColor-TextBox--disabled);
5450
5521
  color: var(--xmlui-textColor-TextBox--disabled);
5451
5522
  border-color: var(--xmlui-borderColor-TextBox--disabled);
5452
5523
  }
5453
- ._inputRoot_ley74_13 ._input_ley74_13 {
5524
+ ._inputRoot_qxt8y_13 ._input_qxt8y_13 {
5454
5525
  font-size: inherit;
5455
5526
  color: inherit;
5456
5527
  border: 0;
@@ -5460,11 +5531,11 @@ See this source for details: https://css-tricks.com/line-clampin/
5460
5531
  padding: 0;
5461
5532
  cursor: inherit;
5462
5533
  }
5463
- ._inputRoot_ley74_13 ._input_ley74_13::-ms-reveal {
5534
+ ._inputRoot_qxt8y_13 ._input_qxt8y_13::-ms-reveal {
5464
5535
  display: none;
5465
5536
  }
5466
5537
 
5467
- ._readOnly_ley74_181 {
5538
+ ._readOnly_qxt8y_181 {
5468
5539
  cursor: default;
5469
5540
  }/*
5470
5541
  * This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
@@ -5534,10 +5605,10 @@ See this source for details: https://css-tricks.com/line-clampin/
5534
5605
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
5535
5606
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
5536
5607
  */
5537
- ._inputRoot_1dsq1_13 {
5608
+ ._inputRoot_1ynbq_13 {
5538
5609
  display: flex;
5539
5610
  align-items: center;
5540
- gap: var(--xmlui-space-2);
5611
+ gap: var(--xmlui-gap-adornment-NumberBox);
5541
5612
  padding: var(--xmlui-space-2);
5542
5613
  width: 100%;
5543
5614
  border-style: solid;
@@ -5553,31 +5624,31 @@ See this source for details: https://css-tricks.com/line-clampin/
5553
5624
  box-shadow: var(--xmlui-boxShadow-NumberBox-default);
5554
5625
  color: var(--xmlui-textColor-NumberBox-default);
5555
5626
  }
5556
- ._inputRoot_1dsq1_13:hover {
5627
+ ._inputRoot_1ynbq_13:hover {
5557
5628
  border-color: var(--xmlui-borderColor-NumberBox-default--hover);
5558
5629
  background-color: var(--xmlui-backgroundColor-NumberBox-default--hover);
5559
5630
  box-shadow: var(--xmlui-boxShadow-NumberBox-default--hover);
5560
5631
  color: var(--xmlui-textColor-NumberBox-default--hover);
5561
5632
  }
5562
- ._inputRoot_1dsq1_13:focus-within {
5633
+ ._inputRoot_1ynbq_13:focus-within {
5563
5634
  border-color: var(--xmlui-borderColor-NumberBox-default--focus);
5564
5635
  background-color: var(--xmlui-backgroundColor-NumberBox-default--focus);
5565
5636
  box-shadow: var(--xmlui-boxShadow-NumberBox-default--focus);
5566
5637
  color: var(--xmlui-textColor-NumberBox-default--focus);
5567
5638
  }
5568
- ._inputRoot_1dsq1_13:has(._input_1dsq1_13:focus-visible) {
5639
+ ._inputRoot_1ynbq_13:has(._input_1ynbq_13:focus-visible) {
5569
5640
  outline-width: var(--xmlui-outlineWidth-NumberBox-default--focus);
5570
5641
  outline-color: var(--xmlui-outlineColor-NumberBox-default--focus);
5571
5642
  outline-style: var(--xmlui-outlineStyle-NumberBox-default--focus);
5572
5643
  outline-offset: var(--xmlui-outlineOffset-NumberBox-default--focus);
5573
5644
  }
5574
- ._inputRoot_1dsq1_13 ._input_1dsq1_13::placeholder {
5645
+ ._inputRoot_1ynbq_13 ._input_1ynbq_13::placeholder {
5575
5646
  color: var(--xmlui-textColor-placeholder-NumberBox-default);
5576
5647
  }
5577
- ._inputRoot_1dsq1_13 ._adornment_1dsq1_53 {
5648
+ ._inputRoot_1ynbq_13 ._adornment_1ynbq_53 {
5578
5649
  color: var(--xmlui-textColor-adornment-NumberBox-default);
5579
5650
  }
5580
- ._inputRoot_1dsq1_13._error_1dsq1_56 {
5651
+ ._inputRoot_1ynbq_13._error_1ynbq_56 {
5581
5652
  border-radius: var(--xmlui-borderRadius-NumberBox-error);
5582
5653
  border-color: var(--xmlui-borderColor-NumberBox-error);
5583
5654
  border-width: var(--xmlui-borderWidth-NumberBox-error);
@@ -5587,31 +5658,31 @@ See this source for details: https://css-tricks.com/line-clampin/
5587
5658
  box-shadow: var(--xmlui-boxShadow-NumberBox-error);
5588
5659
  color: var(--xmlui-textColor-NumberBox-error);
5589
5660
  }
5590
- ._inputRoot_1dsq1_13._error_1dsq1_56:hover {
5661
+ ._inputRoot_1ynbq_13._error_1ynbq_56:hover {
5591
5662
  border-color: var(--xmlui-borderColor-NumberBox-error--hover);
5592
5663
  background-color: var(--xmlui-backgroundColor-NumberBox-error--hover);
5593
5664
  box-shadow: var(--xmlui-boxShadow-NumberBox-error--hover);
5594
5665
  color: var(--xmlui-textColor-NumberBox-error--hover);
5595
5666
  }
5596
- ._inputRoot_1dsq1_13._error_1dsq1_56:focus-within {
5667
+ ._inputRoot_1ynbq_13._error_1ynbq_56:focus-within {
5597
5668
  border-color: var(--xmlui-borderColor-NumberBox-error--focus);
5598
5669
  background-color: var(--xmlui-backgroundColor-NumberBox-error--focus);
5599
5670
  box-shadow: var(--xmlui-boxShadow-NumberBox-error--focus);
5600
5671
  color: var(--xmlui-textColor-NumberBox-error--focus);
5601
5672
  }
5602
- ._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) {
5603
5674
  outline-width: var(--xmlui-outlineWidth-NumberBox-error--focus);
5604
5675
  outline-color: var(--xmlui-outlineColor-NumberBox-error--focus);
5605
5676
  outline-style: var(--xmlui-outlineStyle-NumberBox-error--focus);
5606
5677
  outline-offset: var(--xmlui-outlineOffset-NumberBox-error--focus);
5607
5678
  }
5608
- ._inputRoot_1dsq1_13._error_1dsq1_56 ._input_1dsq1_13::placeholder {
5679
+ ._inputRoot_1ynbq_13._error_1ynbq_56 ._input_1ynbq_13::placeholder {
5609
5680
  color: var(--xmlui-textColor-placeholder-NumberBox-error);
5610
5681
  }
5611
- ._inputRoot_1dsq1_13._error_1dsq1_56 ._adornment_1dsq1_53 {
5682
+ ._inputRoot_1ynbq_13._error_1ynbq_56 ._adornment_1ynbq_53 {
5612
5683
  color: var(--xmlui-textColor-adornment-NumberBox-error);
5613
5684
  }
5614
- ._inputRoot_1dsq1_13._warning_1dsq1_90 {
5685
+ ._inputRoot_1ynbq_13._warning_1ynbq_90 {
5615
5686
  border-radius: var(--xmlui-borderRadius-NumberBox-warning);
5616
5687
  border-color: var(--xmlui-borderColor-NumberBox-warning);
5617
5688
  border-width: var(--xmlui-borderWidth-NumberBox-warning);
@@ -5621,31 +5692,31 @@ See this source for details: https://css-tricks.com/line-clampin/
5621
5692
  box-shadow: var(--xmlui-boxShadow-NumberBox-warning);
5622
5693
  color: var(--xmlui-textColor-NumberBox-warning);
5623
5694
  }
5624
- ._inputRoot_1dsq1_13._warning_1dsq1_90:hover {
5695
+ ._inputRoot_1ynbq_13._warning_1ynbq_90:hover {
5625
5696
  border-color: var(--xmlui-borderColor-NumberBox-warning--hover);
5626
5697
  background-color: var(--xmlui-backgroundColor-NumberBox-warning--hover);
5627
5698
  box-shadow: var(--xmlui-boxShadow-NumberBox-warning--hover);
5628
5699
  color: var(--xmlui-textColor-NumberBox-warning--hover);
5629
5700
  }
5630
- ._inputRoot_1dsq1_13._warning_1dsq1_90:focus-within {
5701
+ ._inputRoot_1ynbq_13._warning_1ynbq_90:focus-within {
5631
5702
  border-color: var(--xmlui-borderColor-NumberBox-warning--focus);
5632
5703
  background-color: var(--xmlui-backgroundColor-NumberBox-warning--focus);
5633
5704
  box-shadow: var(--xmlui-boxShadow-NumberBox-warning--focus);
5634
5705
  color: var(--xmlui-textColor-NumberBox-warning--focus);
5635
5706
  }
5636
- ._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) {
5637
5708
  outline-width: var(--xmlui-outlineWidth-NumberBox-warning--focus);
5638
5709
  outline-color: var(--xmlui-outlineColor-NumberBox-warning--focus);
5639
5710
  outline-style: var(--xmlui-outlineStyle-NumberBox-warning--focus);
5640
5711
  outline-offset: var(--xmlui-outlineOffset-NumberBox-warning--focus);
5641
5712
  }
5642
- ._inputRoot_1dsq1_13._warning_1dsq1_90 ._input_1dsq1_13::placeholder {
5713
+ ._inputRoot_1ynbq_13._warning_1ynbq_90 ._input_1ynbq_13::placeholder {
5643
5714
  color: var(--xmlui-textColor-placeholder-NumberBox-warning);
5644
5715
  }
5645
- ._inputRoot_1dsq1_13._warning_1dsq1_90 ._adornment_1dsq1_53 {
5716
+ ._inputRoot_1ynbq_13._warning_1ynbq_90 ._adornment_1ynbq_53 {
5646
5717
  color: var(--xmlui-textColor-adornment-NumberBox-warning);
5647
5718
  }
5648
- ._inputRoot_1dsq1_13._valid_1dsq1_124 {
5719
+ ._inputRoot_1ynbq_13._valid_1ynbq_124 {
5649
5720
  border-radius: var(--xmlui-borderRadius-NumberBox-success);
5650
5721
  border-color: var(--xmlui-borderColor-NumberBox-success);
5651
5722
  border-width: var(--xmlui-borderWidth-NumberBox-success);
@@ -5655,37 +5726,37 @@ See this source for details: https://css-tricks.com/line-clampin/
5655
5726
  box-shadow: var(--xmlui-boxShadow-NumberBox-success);
5656
5727
  color: var(--xmlui-textColor-NumberBox-success);
5657
5728
  }
5658
- ._inputRoot_1dsq1_13._valid_1dsq1_124:hover {
5729
+ ._inputRoot_1ynbq_13._valid_1ynbq_124:hover {
5659
5730
  border-color: var(--xmlui-borderColor-NumberBox-success--hover);
5660
5731
  background-color: var(--xmlui-backgroundColor-NumberBox-success--hover);
5661
5732
  box-shadow: var(--xmlui-boxShadow-NumberBox-success--hover);
5662
5733
  color: var(--xmlui-textColor-NumberBox-success--hover);
5663
5734
  }
5664
- ._inputRoot_1dsq1_13._valid_1dsq1_124:focus-within {
5735
+ ._inputRoot_1ynbq_13._valid_1ynbq_124:focus-within {
5665
5736
  border-color: var(--xmlui-borderColor-NumberBox-success--focus);
5666
5737
  background-color: var(--xmlui-backgroundColor-NumberBox-success--focus);
5667
5738
  box-shadow: var(--xmlui-boxShadow-NumberBox-success--focus);
5668
5739
  color: var(--xmlui-textColor-NumberBox-success--focus);
5669
5740
  }
5670
- ._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) {
5671
5742
  outline-width: var(--xmlui-outlineWidth-NumberBox-success--focus);
5672
5743
  outline-color: var(--xmlui-outlineColor-NumberBox-success--focus);
5673
5744
  outline-style: var(--xmlui-outlineStyle-NumberBox-success--focus);
5674
5745
  outline-offset: var(--xmlui-outlineOffset-NumberBox-success--focus);
5675
5746
  }
5676
- ._inputRoot_1dsq1_13._valid_1dsq1_124 ._input_1dsq1_13::placeholder {
5747
+ ._inputRoot_1ynbq_13._valid_1ynbq_124 ._input_1ynbq_13::placeholder {
5677
5748
  color: var(--xmlui-textColor-placeholder-NumberBox-success);
5678
5749
  }
5679
- ._inputRoot_1dsq1_13._valid_1dsq1_124 ._adornment_1dsq1_53 {
5750
+ ._inputRoot_1ynbq_13._valid_1ynbq_124 ._adornment_1ynbq_53 {
5680
5751
  color: var(--xmlui-textColor-adornment-NumberBox-success);
5681
5752
  }
5682
- ._inputRoot_1dsq1_13:has(._input_1dsq1_13:is(:disabled)) {
5753
+ ._inputRoot_1ynbq_13:has(._input_1ynbq_13:is(:disabled)) {
5683
5754
  cursor: not-allowed;
5684
5755
  background-color: var(--xmlui-backgroundColor-NumberBox--disabled);
5685
5756
  color: var(--xmlui-textColor-NumberBox--disabled);
5686
5757
  border-color: var(--xmlui-borderColor-NumberBox--disabled);
5687
5758
  }
5688
- ._inputRoot_1dsq1_13 ._input_1dsq1_13 {
5759
+ ._inputRoot_1ynbq_13 ._input_1ynbq_13 {
5689
5760
  font-size: inherit;
5690
5761
  color: inherit;
5691
5762
  border: 0;
@@ -5701,24 +5772,24 @@ See this source for details: https://css-tricks.com/line-clampin/
5701
5772
  -moz-appearance: textfield;
5702
5773
  appearance: textfield;
5703
5774
  }
5704
- ._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 {
5705
5776
  -webkit-appearance: none;
5706
5777
  margin: 0;
5707
5778
  }
5708
- ._inputRoot_1dsq1_13 ._spinnerBox_1dsq1_184 {
5779
+ ._inputRoot_1ynbq_13 ._spinnerBox_1ynbq_184 {
5709
5780
  display: flex;
5710
5781
  flex-direction: column;
5711
5782
  height: 0;
5712
5783
  align-items: center;
5713
5784
  justify-content: center;
5714
5785
  }
5715
- ._inputRoot_1dsq1_13 ._spinnerButton_1dsq1_191 {
5786
+ ._inputRoot_1ynbq_13 ._spinnerButton_1ynbq_191 {
5716
5787
  padding: 0 !important;
5717
5788
  width: var(--xmlui-space-6);
5718
5789
  border: none;
5719
5790
  }
5720
5791
 
5721
- ._readOnly_1dsq1_197 {
5792
+ ._readOnly_1ynbq_197 {
5722
5793
  cursor: text;
5723
5794
  }/*
5724
5795
  * This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
@@ -5732,40 +5803,40 @@ See this source for details: https://css-tricks.com/line-clampin/
5732
5803
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
5733
5804
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
5734
5805
  */
5735
- ._selectValue_1xb91_13 > span {
5806
+ ._selectValue_1cwq0_13 > span {
5736
5807
  font-size: var(--xmlui-fontSize-Select-default);
5737
5808
  color: var(--xmlui-textColor-placeholder-Select-default);
5738
5809
  }
5739
- ._selectValue_1xb91_13 > span > div {
5810
+ ._selectValue_1cwq0_13 > span > div {
5740
5811
  color: var(--xmlui-textColor-Select-default);
5741
5812
  font-size: var(--xmlui-fontSize-Select-default);
5742
5813
  }
5743
- ._selectValue_1xb91_13._error_1xb91_21 > span {
5814
+ ._selectValue_1cwq0_13._error_1cwq0_21 > span {
5744
5815
  font-size: var(--xmlui-fontSize-Select-error);
5745
5816
  color: var(--xmlui-textColor-placeholder-Select-error);
5746
5817
  }
5747
- ._selectValue_1xb91_13._error_1xb91_21 > span > div {
5818
+ ._selectValue_1cwq0_13._error_1cwq0_21 > span > div {
5748
5819
  color: var(--xmlui-textColor-Select-error);
5749
5820
  font-size: var(--xmlui-fontSize-Select-error);
5750
5821
  }
5751
- ._selectValue_1xb91_13._warning_1xb91_29 > span {
5822
+ ._selectValue_1cwq0_13._warning_1cwq0_29 > span {
5752
5823
  font-size: var(--xmlui-fontSize-Select-warning);
5753
5824
  color: var(--xmlui-textColor-placeholder-Select-warning);
5754
5825
  }
5755
- ._selectValue_1xb91_13._warning_1xb91_29 > span > div {
5826
+ ._selectValue_1cwq0_13._warning_1cwq0_29 > span > div {
5756
5827
  color: var(--xmlui-textColor-Select-warning);
5757
5828
  font-size: var(--xmlui-fontSize-Select-warning);
5758
5829
  }
5759
- ._selectValue_1xb91_13._valid_1xb91_37 > span {
5830
+ ._selectValue_1cwq0_13._valid_1cwq0_37 > span {
5760
5831
  font-size: var(--xmlui-fontSize-Select-success);
5761
5832
  color: var(--xmlui-textColor-placeholder-Select-success);
5762
5833
  }
5763
- ._selectValue_1xb91_13._valid_1xb91_37 > span > div {
5834
+ ._selectValue_1cwq0_13._valid_1cwq0_37 > span > div {
5764
5835
  color: var(--xmlui-textColor-Select-success);
5765
5836
  font-size: var(--xmlui-fontSize-Select-success);
5766
5837
  }
5767
5838
 
5768
- button._selectTrigger_1xb91_46 {
5839
+ button._selectTrigger_1cwq0_46 {
5769
5840
  min-height: 2.6rem;
5770
5841
  display: flex;
5771
5842
  padding: var(--xmlui-space-1) var(--xmlui-space-2);
@@ -5783,22 +5854,22 @@ button._selectTrigger_1xb91_46 {
5783
5854
  box-shadow: var(--xmlui-boxShadow-Select-default);
5784
5855
  color: var(--xmlui-textColor-Select-default);
5785
5856
  }
5786
- button._selectTrigger_1xb91_46:hover {
5857
+ button._selectTrigger_1cwq0_46:hover {
5787
5858
  border-color: var(--xmlui-borderColor-Select-default--hover);
5788
5859
  background-color: var(--xmlui-backgroundColor-Select-default--hover);
5789
5860
  box-shadow: var(--xmlui-boxShadow-Select-default--hover);
5790
5861
  color: var(--xmlui-textColor-Select-default--hover);
5791
5862
  }
5792
- button._selectTrigger_1xb91_46:focus {
5863
+ button._selectTrigger_1cwq0_46:focus {
5793
5864
  outline-width: var(--xmlui-outlineWidth-Select-default--focus);
5794
5865
  outline-color: var(--xmlui-outlineColor-Select-default--focus);
5795
5866
  outline-style: var(--xmlui-outlineStyle-Select-default--focus);
5796
5867
  outline-offset: var(--xmlui-outlineOffset-Select-default--focus);
5797
5868
  }
5798
- button._selectTrigger_1xb91_46::placeholder {
5869
+ button._selectTrigger_1cwq0_46::placeholder {
5799
5870
  color: var(--xmlui-textColor-placeholder-Select-default);
5800
5871
  }
5801
- button._selectTrigger_1xb91_46._error_1xb91_21 {
5872
+ button._selectTrigger_1cwq0_46._error_1cwq0_21 {
5802
5873
  border-radius: var(--xmlui-borderRadius-Select-error);
5803
5874
  border-color: var(--xmlui-borderColor-Select-error);
5804
5875
  border-width: var(--xmlui-borderWidth-Select-error);
@@ -5808,22 +5879,22 @@ button._selectTrigger_1xb91_46._error_1xb91_21 {
5808
5879
  box-shadow: var(--xmlui-boxShadow-Select-error);
5809
5880
  color: var(--xmlui-textColor-Select-error);
5810
5881
  }
5811
- button._selectTrigger_1xb91_46._error_1xb91_21:hover {
5882
+ button._selectTrigger_1cwq0_46._error_1cwq0_21:hover {
5812
5883
  border-color: var(--xmlui-borderColor-Select-error--hover);
5813
5884
  background-color: var(--xmlui-backgroundColor-Select-error--hover);
5814
5885
  box-shadow: var(--xmlui-boxShadow-Select-error--hover);
5815
5886
  color: var(--xmlui-textColor-Select-error--hover);
5816
5887
  }
5817
- button._selectTrigger_1xb91_46._error_1xb91_21:focus {
5888
+ button._selectTrigger_1cwq0_46._error_1cwq0_21:focus {
5818
5889
  outline-width: var(--xmlui-outlineWidth-Select-error--focus);
5819
5890
  outline-color: var(--xmlui-outlineColor-Select-error--focus);
5820
5891
  outline-style: var(--xmlui-outlineStyle-Select-error--focus);
5821
5892
  outline-offset: var(--xmlui-outlineOffset-Select-error--focus);
5822
5893
  }
5823
- button._selectTrigger_1xb91_46._error_1xb91_21::placeholder {
5894
+ button._selectTrigger_1cwq0_46._error_1cwq0_21::placeholder {
5824
5895
  color: var(--xmlui-textColor-placeholder-Select-error);
5825
5896
  }
5826
- button._selectTrigger_1xb91_46._warning_1xb91_29 {
5897
+ button._selectTrigger_1cwq0_46._warning_1cwq0_29 {
5827
5898
  border-radius: var(--xmlui-borderRadius-Select-warning);
5828
5899
  border-color: var(--xmlui-borderColor-Select-warning);
5829
5900
  border-width: var(--xmlui-borderWidth-Select-warning);
@@ -5833,22 +5904,22 @@ button._selectTrigger_1xb91_46._warning_1xb91_29 {
5833
5904
  box-shadow: var(--xmlui-boxShadow-Select-warning);
5834
5905
  color: var(--xmlui-textColor-Select-warning);
5835
5906
  }
5836
- button._selectTrigger_1xb91_46._warning_1xb91_29:hover {
5907
+ button._selectTrigger_1cwq0_46._warning_1cwq0_29:hover {
5837
5908
  border-color: var(--xmlui-borderColor-Select-warning--hover);
5838
5909
  background-color: var(--xmlui-backgroundColor-Select-warning--hover);
5839
5910
  box-shadow: var(--xmlui-boxShadow-Select-warning--hover);
5840
5911
  color: var(--xmlui-textColor-Select-warning--hover);
5841
5912
  }
5842
- button._selectTrigger_1xb91_46._warning_1xb91_29:focus {
5913
+ button._selectTrigger_1cwq0_46._warning_1cwq0_29:focus {
5843
5914
  outline-width: var(--xmlui-outlineWidth-Select-warning--focus);
5844
5915
  outline-color: var(--xmlui-outlineColor-Select-warning--focus);
5845
5916
  outline-style: var(--xmlui-outlineStyle-Select-warning--focus);
5846
5917
  outline-offset: var(--xmlui-outlineOffset-Select-warning--focus);
5847
5918
  }
5848
- button._selectTrigger_1xb91_46._warning_1xb91_29::placeholder {
5919
+ button._selectTrigger_1cwq0_46._warning_1cwq0_29::placeholder {
5849
5920
  color: var(--xmlui-textColor-placeholder-Select-warning);
5850
5921
  }
5851
- button._selectTrigger_1xb91_46._valid_1xb91_37 {
5922
+ button._selectTrigger_1cwq0_46._valid_1cwq0_37 {
5852
5923
  border-radius: var(--xmlui-borderRadius-Select-success);
5853
5924
  border-color: var(--xmlui-borderColor-Select-success);
5854
5925
  border-width: var(--xmlui-borderWidth-Select-success);
@@ -5858,23 +5929,23 @@ button._selectTrigger_1xb91_46._valid_1xb91_37 {
5858
5929
  box-shadow: var(--xmlui-boxShadow-Select-success);
5859
5930
  color: var(--xmlui-textColor-Select-success);
5860
5931
  }
5861
- button._selectTrigger_1xb91_46._valid_1xb91_37:hover {
5932
+ button._selectTrigger_1cwq0_46._valid_1cwq0_37:hover {
5862
5933
  border-color: var(--xmlui-borderColor-Select-success--hover);
5863
5934
  background-color: var(--xmlui-backgroundColor-Select-success--hover);
5864
5935
  box-shadow: var(--xmlui-boxShadow-Select-success--hover);
5865
5936
  color: var(--xmlui-textColor-Select-success--hover);
5866
5937
  }
5867
- button._selectTrigger_1xb91_46._valid_1xb91_37:focus {
5938
+ button._selectTrigger_1cwq0_46._valid_1cwq0_37:focus {
5868
5939
  outline-width: var(--xmlui-outlineWidth-Select-success--focus);
5869
5940
  outline-color: var(--xmlui-outlineColor-Select-success--focus);
5870
5941
  outline-style: var(--xmlui-outlineStyle-Select-success--focus);
5871
5942
  outline-offset: var(--xmlui-outlineOffset-Select-success--focus);
5872
5943
  }
5873
- button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
5944
+ button._selectTrigger_1cwq0_46._valid_1cwq0_37::placeholder {
5874
5945
  color: var(--xmlui-textColor-placeholder-Select-success);
5875
5946
  }
5876
5947
 
5877
- ._selectTrigger_1xb91_46:disabled {
5948
+ ._selectTrigger_1cwq0_46:disabled {
5878
5949
  cursor: not-allowed;
5879
5950
  opacity: var(--xmlui-opacity-Select--disabled);
5880
5951
  background-color: var(--xmlui-backgroundColor-Select--disabled);
@@ -5882,28 +5953,28 @@ button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
5882
5953
  border-color: var(--xmlui-borderColor-Select--disabled);
5883
5954
  }
5884
5955
 
5885
- ._selectTrigger_1xb91_46 > span {
5956
+ ._selectTrigger_1cwq0_46 > span {
5886
5957
  display: -webkit-box;
5887
5958
  -webkit-box-orient: vertical;
5888
5959
  -webkit-line-clamp: 1;
5889
5960
  overflow: hidden;
5890
5961
  }
5891
5962
 
5892
- ._badgeListContainer_1xb91_170 {
5963
+ ._badgeListContainer_1cwq0_170 {
5893
5964
  display: flex;
5894
5965
  justify-content: space-between;
5895
5966
  align-items: center;
5896
5967
  width: 100%;
5897
5968
  }
5898
5969
 
5899
- ._badgeList_1xb91_170 {
5970
+ ._badgeList_1cwq0_170 {
5900
5971
  gap: 4px;
5901
5972
  display: flex;
5902
5973
  flex-wrap: wrap;
5903
5974
  align-items: center;
5904
5975
  }
5905
5976
 
5906
- ._badge_1xb91_170 {
5977
+ ._badge_1cwq0_170 {
5907
5978
  width: fit-content;
5908
5979
  height: fit-content;
5909
5980
  min-width: 0;
@@ -5920,27 +5991,27 @@ button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
5920
5991
  background-color: var(--xmlui-backgroundColor-Select-badge);
5921
5992
  color: var(--xmlui-textColor-Select-badge);
5922
5993
  }
5923
- ._badge_1xb91_170:hover {
5994
+ ._badge_1cwq0_170:hover {
5924
5995
  background-color: var(--xmlui-backgroundColor-Select-badge--hover);
5925
5996
  color: var(--xmlui-textColor-Select-badge--hover);
5926
5997
  }
5927
- ._badge_1xb91_170:active {
5998
+ ._badge_1cwq0_170:active {
5928
5999
  background-color: var(--xmlui-backgroundColor-Select-badge--active);
5929
6000
  color: var(--xmlui-textColor-Select-badge--active);
5930
6001
  }
5931
6002
 
5932
- ._actions_1xb91_210 {
6003
+ ._actions_1cwq0_210 {
5933
6004
  display: flex;
5934
6005
  align-items: center;
5935
6006
  justify-content: space-between;
5936
6007
  }
5937
6008
 
5938
- ._placeholder_1xb91_216 {
6009
+ ._placeholder_1cwq0_216 {
5939
6010
  display: block;
5940
6011
  color: var(--xmlui-textColor-placeholder-Select);
5941
6012
  }
5942
6013
 
5943
- ._emptyList_1xb91_221 {
6014
+ ._emptyList_1cwq0_221 {
5944
6015
  display: flex;
5945
6016
  gap: 0.2rem;
5946
6017
  padding: 10px 0;
@@ -5950,7 +6021,7 @@ button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
5950
6021
  width: 100%;
5951
6022
  }
5952
6023
 
5953
- ._selectScrollUpButton_1xb91_231 {
6024
+ ._selectScrollUpButton_1cwq0_231 {
5954
6025
  display: flex;
5955
6026
  cursor: default;
5956
6027
  align-items: center;
@@ -5959,7 +6030,7 @@ button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
5959
6030
  padding-bottom: 0.25rem;
5960
6031
  }
5961
6032
 
5962
- ._selectScrollDownButton_1xb91_240 {
6033
+ ._selectScrollDownButton_1cwq0_240 {
5963
6034
  display: flex;
5964
6035
  cursor: default;
5965
6036
  align-items: center;
@@ -5968,7 +6039,7 @@ button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
5968
6039
  padding-bottom: 0.25rem;
5969
6040
  }
5970
6041
 
5971
- ._command_1xb91_249 {
6042
+ ._command_1cwq0_249 {
5972
6043
  display: flex;
5973
6044
  flex-direction: column;
5974
6045
  height: 100%;
@@ -5978,14 +6049,14 @@ button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
5978
6049
  background-color: var(--xmlui-backgroundColor-menu-Select);
5979
6050
  }
5980
6051
 
5981
- ._commandInputContainer_1xb91_259 {
6052
+ ._commandInputContainer_1cwq0_259 {
5982
6053
  display: flex;
5983
6054
  align-items: center;
5984
6055
  padding: 0 12px;
5985
6056
  border-bottom: 1px solid var(--xmlui-borderColor);
5986
6057
  }
5987
6058
 
5988
- ._commandInput_1xb91_259 {
6059
+ ._commandInput_1cwq0_259 {
5989
6060
  flex: 1;
5990
6061
  background-color: transparent;
5991
6062
  padding: 0.5rem;
@@ -5993,23 +6064,25 @@ button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
5993
6064
  outline: none;
5994
6065
  border: none;
5995
6066
  }
5996
- ._commandInput_1xb91_259:focus {
6067
+ ._commandInput_1cwq0_259:focus {
5997
6068
  outline: none;
5998
6069
  box-shadow: none;
5999
6070
  border: 0;
6000
6071
  }
6001
- ._commandInput_1xb91_259:disabled {
6072
+ ._commandInput_1cwq0_259:disabled {
6002
6073
  cursor: not-allowed;
6003
6074
  opacity: var(--xmlui-opacity-Select--disabled);
6004
6075
  }
6005
6076
 
6006
- ._commandList_1xb91_284 {
6077
+ ._commandList_1cwq0_284 {
6007
6078
  overflow-y: auto;
6008
6079
  overflow-x: hidden;
6009
6080
  }
6010
6081
 
6011
- ._selectContent_1xb91_289 {
6082
+ ._selectContent_1cwq0_289 {
6012
6083
  position: relative;
6084
+ width: 100%;
6085
+ max-height: 280px;
6013
6086
  z-index: 50;
6014
6087
  overflow: auto;
6015
6088
  background-color: var(--xmlui-backgroundColor-menu-Select);
@@ -6017,38 +6090,38 @@ button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
6017
6090
  box-shadow: var(--xmlui-boxShadow-menu-Select);
6018
6091
  border: var(--xmlui-borderWidth-menu-Select) solid var(--xmlui-borderColor-menu-Select);
6019
6092
  }
6020
- ._selectContent_1xb91_289[data-state=open] {
6021
- animation: _fadeIn_1xb91_1 0.1s ease-in-out, _zoomIn_1xb91_1 0.1s 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;
6022
6095
  }
6023
- ._selectContent_1xb91_289[data-state=closed] {
6024
- animation: _fadeOut_1xb91_1 0.1s ease-in-out, _zoomOut_1xb91_1 0.1s 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;
6025
6098
  }
6026
- ._selectContent_1xb91_289[data-side=bottom] {
6027
- animation: _slideInFromTop_1xb91_1 0.08s ease-in-out;
6099
+ ._selectContent_1cwq0_289[data-side=bottom] {
6100
+ animation: _slideInFromTop_1cwq0_1 0.08s ease-in-out;
6028
6101
  }
6029
- ._selectContent_1xb91_289[data-side=left] {
6030
- animation: _slideInFromRight_1xb91_1 0.1s ease-in-out;
6102
+ ._selectContent_1cwq0_289[data-side=left] {
6103
+ animation: _slideInFromRight_1cwq0_1 0.1s ease-in-out;
6031
6104
  }
6032
- ._selectContent_1xb91_289[data-side=right] {
6033
- animation: _slideInFromLeft_1xb91_1 0.1s ease-in-out;
6105
+ ._selectContent_1cwq0_289[data-side=right] {
6106
+ animation: _slideInFromLeft_1cwq0_1 0.1s ease-in-out;
6034
6107
  }
6035
- ._selectContent_1xb91_289[data-side=top] {
6036
- animation: _slideInFromBottom_1xb91_1 0.1s ease-in-out;
6108
+ ._selectContent_1cwq0_289[data-side=top] {
6109
+ animation: _slideInFromBottom_1cwq0_1 0.1s ease-in-out;
6037
6110
  }
6038
- ._selectContent_1xb91_289[data-side=bottom] {
6111
+ ._selectContent_1cwq0_289[data-side=bottom] {
6039
6112
  transform: translateY(0.15rem);
6040
6113
  }
6041
- ._selectContent_1xb91_289[data-side=left] {
6114
+ ._selectContent_1cwq0_289[data-side=left] {
6042
6115
  transform: translateX(-0.15rem);
6043
6116
  }
6044
- ._selectContent_1xb91_289[data-side=right] {
6117
+ ._selectContent_1cwq0_289[data-side=right] {
6045
6118
  transform: translateX(0.15rem);
6046
6119
  }
6047
- ._selectContent_1xb91_289[data-side=top] {
6120
+ ._selectContent_1cwq0_289[data-side=top] {
6048
6121
  transform: translateY(-0.15rem);
6049
6122
  }
6050
6123
 
6051
- ._multiComboboxOption_1xb91_329 ._multiComboboxOptionContent_1xb91_329 {
6124
+ ._multiComboboxOption_1cwq0_331 ._multiComboboxOptionContent_1cwq0_331 {
6052
6125
  width: 100%;
6053
6126
  gap: 1rem;
6054
6127
  display: flex;
@@ -6063,17 +6136,17 @@ button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
6063
6136
  padding-top: var(--xmlui-paddingTop-item-Select, var(--xmlui-paddingVertical-item-Select, var(--xmlui-padding-item-Select)));
6064
6137
  padding-bottom: var(--xmlui-paddingBottom-item-Select, var(--xmlui-paddingVertical-item-Select, var(--xmlui-padding-item-Select)));
6065
6138
  }
6066
- ._multiComboboxOption_1xb91_329[data-selected=true] {
6139
+ ._multiComboboxOption_1cwq0_331[data-selected=true] {
6067
6140
  background-color: var(--xmlui-backgroundColor-item-Select--hover);
6068
6141
  }
6069
- ._multiComboboxOption_1xb91_329[data-disabled=true] {
6142
+ ._multiComboboxOption_1cwq0_331[data-disabled=true] {
6070
6143
  pointer-events: none;
6071
6144
  opacity: var(--xmlui-opacity-text-item-Select--disabled);
6072
6145
  cursor: not-allowed;
6073
6146
  font-style: italic;
6074
6147
  }
6075
6148
 
6076
- ._selectItem_1xb91_354 {
6149
+ ._selectItem_1cwq0_356 {
6077
6150
  position: relative;
6078
6151
  display: flex;
6079
6152
  cursor: default;
@@ -6082,13 +6155,13 @@ button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
6082
6155
  outline: none;
6083
6156
  font-size: var(--xmlui-fontSize-Select);
6084
6157
  }
6085
- ._selectItem_1xb91_354[data-highlighted] {
6158
+ ._selectItem_1cwq0_356[data-highlighted] {
6086
6159
  background-color: var(--xmlui-backgroundColor-item-Select--hover);
6087
6160
  }
6088
- ._selectItem_1xb91_354[data-state=checked] {
6161
+ ._selectItem_1cwq0_356[data-state=checked] {
6089
6162
  background-color: var(--xmlui-backgroundColor-item-Select--active);
6090
6163
  }
6091
- ._selectItem_1xb91_354 ._selectItemContent_1xb91_369 {
6164
+ ._selectItem_1cwq0_356 ._selectItemContent_1cwq0_371 {
6092
6165
  width: 100%;
6093
6166
  display: flex;
6094
6167
  cursor: default;
@@ -6102,14 +6175,14 @@ button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
6102
6175
  padding-bottom: var(--xmlui-paddingBottom-item-Select, var(--xmlui-paddingVertical-item-Select, var(--xmlui-padding-item-Select)));
6103
6176
  }
6104
6177
 
6105
- ._selectItem_1xb91_354[data-disabled] {
6178
+ ._selectItem_1cwq0_356[data-disabled] {
6106
6179
  pointer-events: none;
6107
6180
  opacity: var(--xmlui-opacity-text-item-Select--disabled);
6108
6181
  cursor: not-allowed;
6109
6182
  font-style: italic;
6110
6183
  }
6111
6184
 
6112
- ._selectItemIndicator_1xb91_390 {
6185
+ ._selectItemIndicator_1cwq0_392 {
6113
6186
  position: absolute;
6114
6187
  right: 0.5rem;
6115
6188
  display: flex;
@@ -6120,13 +6193,13 @@ button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
6120
6193
  color: var(--xmlui-textColor-indicator-Select);
6121
6194
  }
6122
6195
 
6123
- ._selectViewport_1xb91_401 {
6124
- height: var(--radix-select-trigger-height);
6196
+ ._selectViewport_1cwq0_403 {
6197
+ height: fit-content;
6125
6198
  width: 100%;
6126
6199
  min-width: var(--radix-select-trigger-width);
6127
6200
  }
6128
6201
 
6129
- ._selectEmpty_1xb91_407 {
6202
+ ._selectEmpty_1cwq0_409 {
6130
6203
  display: flex;
6131
6204
  gap: 0.2rem;
6132
6205
  height: 100%;
@@ -6137,11 +6210,11 @@ button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
6137
6210
  width: 100%;
6138
6211
  }
6139
6212
 
6140
- ._loading_1xb91_418 {
6213
+ ._loading_1cwq0_420 {
6141
6214
  padding: 0.5rem 1rem;
6142
6215
  }
6143
6216
 
6144
- ._srOnly_1xb91_422 {
6217
+ ._srOnly_1cwq0_424 {
6145
6218
  position: absolute;
6146
6219
  width: 1px;
6147
6220
  height: 1px;
@@ -6153,7 +6226,7 @@ button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
6153
6226
  border: 0;
6154
6227
  }
6155
6228
 
6156
- @keyframes _fadeIn_1xb91_1 {
6229
+ @keyframes _fadeIn_1cwq0_1 {
6157
6230
  from {
6158
6231
  opacity: 0;
6159
6232
  }
@@ -6161,7 +6234,7 @@ button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
6161
6234
  opacity: 1;
6162
6235
  }
6163
6236
  }
6164
- @keyframes _fadeOut_1xb91_1 {
6237
+ @keyframes _fadeOut_1cwq0_1 {
6165
6238
  from {
6166
6239
  opacity: 1;
6167
6240
  }
@@ -6169,7 +6242,7 @@ button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
6169
6242
  opacity: 0;
6170
6243
  }
6171
6244
  }
6172
- @keyframes _zoomIn_1xb91_1 {
6245
+ @keyframes _zoomIn_1cwq0_1 {
6173
6246
  from {
6174
6247
  transform: scale(0.95);
6175
6248
  }
@@ -6177,7 +6250,7 @@ button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
6177
6250
  transform: scale(1);
6178
6251
  }
6179
6252
  }
6180
- @keyframes _zoomOut_1xb91_1 {
6253
+ @keyframes _zoomOut_1cwq0_1 {
6181
6254
  from {
6182
6255
  transform: scale(1);
6183
6256
  }
@@ -6185,7 +6258,7 @@ button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
6185
6258
  transform: scale(0.95);
6186
6259
  }
6187
6260
  }
6188
- @keyframes _slideInFromTop_1xb91_1 {
6261
+ @keyframes _slideInFromTop_1cwq0_1 {
6189
6262
  from {
6190
6263
  transform: translateY(-0.75rem);
6191
6264
  }
@@ -6193,7 +6266,7 @@ button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
6193
6266
  transform: translateY(0);
6194
6267
  }
6195
6268
  }
6196
- @keyframes _slideInFromBottom_1xb91_1 {
6269
+ @keyframes _slideInFromBottom_1cwq0_1 {
6197
6270
  from {
6198
6271
  transform: translateY(0.75rem);
6199
6272
  }
@@ -6201,7 +6274,7 @@ button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
6201
6274
  transform: translateY(0);
6202
6275
  }
6203
6276
  }
6204
- @keyframes _slideInFromLeft_1xb91_1 {
6277
+ @keyframes _slideInFromLeft_1cwq0_1 {
6205
6278
  from {
6206
6279
  transform: translateX(-100%);
6207
6280
  }
@@ -6209,7 +6282,7 @@ button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
6209
6282
  transform: translateX(0);
6210
6283
  }
6211
6284
  }
6212
- @keyframes _slideInFromRight_1xb91_1 {
6285
+ @keyframes _slideInFromRight_1cwq0_1 {
6213
6286
  from {
6214
6287
  transform: translateX(100%);
6215
6288
  }
@@ -6925,7 +6998,428 @@ button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
6925
6998
 
6926
6999
  ._day_range_middle_qilmv_589 {
6927
7000
  border-radius: 0;
6928
- }/*
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
+ /*
6929
7423
  * This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
6930
7424
  *
6931
7425
  * We use a subset of these CSS variables in themes.
@@ -7051,15 +7545,16 @@ button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
7051
7545
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
7052
7546
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
7053
7547
  */
7054
- ._command_17zx6_13 {
7548
+ ._command_1xx47_13 {
7055
7549
  width: 100%;
7056
7550
  height: auto;
7057
7551
  overflow: visible;
7058
7552
  background-color: transparent;
7059
7553
  }
7060
7554
 
7061
- ._badgeListWrapper_17zx6_20 {
7555
+ ._badgeListWrapper_1xx47_20 {
7062
7556
  outline: none;
7557
+ width: 100%;
7063
7558
  display: flex;
7064
7559
  padding: var(--xmlui-space-1) var(--xmlui-space-2);
7065
7560
  min-height: 2.5rem; /* h-12 */
@@ -7072,16 +7567,16 @@ button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
7072
7567
  box-shadow: var(--xmlui-boxShadow-AutoComplete-default);
7073
7568
  color: var(--xmlui-textColor-AutoComplete-default);
7074
7569
  }
7075
- ._badgeListWrapper_17zx6_20:hover {
7570
+ ._badgeListWrapper_1xx47_20:hover {
7076
7571
  border-color: var(--xmlui-borderColor-AutoComplete-default--hover);
7077
7572
  background-color: var(--xmlui-backgroundColor-AutoComplete-default--hover);
7078
7573
  box-shadow: var(--xmlui-boxShadow-AutoComplete-default--hover);
7079
7574
  color: var(--xmlui-textColor-AutoComplete-default--hover);
7080
7575
  }
7081
- ._badgeListWrapper_17zx6_20::placeholder {
7576
+ ._badgeListWrapper_1xx47_20::placeholder {
7082
7577
  color: var(--xmlui-textColor-placeholder-AutoComplete-default);
7083
7578
  }
7084
- ._badgeListWrapper_17zx6_20._error_17zx6_43 {
7579
+ ._badgeListWrapper_1xx47_20._error_1xx47_44 {
7085
7580
  border-radius: var(--xmlui-borderRadius-AutoComplete-error);
7086
7581
  border-color: var(--xmlui-borderColor-AutoComplete-error);
7087
7582
  border-width: var(--xmlui-borderWidth-AutoComplete-error);
@@ -7091,16 +7586,16 @@ button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
7091
7586
  box-shadow: var(--xmlui-boxShadow-AutoComplete-error);
7092
7587
  color: var(--xmlui-textColor-AutoComplete-error);
7093
7588
  }
7094
- ._badgeListWrapper_17zx6_20._error_17zx6_43:hover {
7589
+ ._badgeListWrapper_1xx47_20._error_1xx47_44:hover {
7095
7590
  border-color: var(--xmlui-borderColor-AutoComplete-error--hover);
7096
7591
  background-color: var(--xmlui-backgroundColor-AutoComplete-error--hover);
7097
7592
  box-shadow: var(--xmlui-boxShadow-AutoComplete-error--hover);
7098
7593
  color: var(--xmlui-textColor-AutoComplete-error--hover);
7099
7594
  }
7100
- ._badgeListWrapper_17zx6_20._error_17zx6_43::placeholder {
7595
+ ._badgeListWrapper_1xx47_20._error_1xx47_44::placeholder {
7101
7596
  color: var(--xmlui-textColor-placeholder-AutoComplete-error);
7102
7597
  }
7103
- ._badgeListWrapper_17zx6_20._warning_17zx6_62 {
7598
+ ._badgeListWrapper_1xx47_20._warning_1xx47_63 {
7104
7599
  border-radius: var(--xmlui-borderRadius-AutoComplete-warning);
7105
7600
  border-color: var(--xmlui-borderColor-AutoComplete-warning);
7106
7601
  border-width: var(--xmlui-borderWidth-AutoComplete-warning);
@@ -7110,16 +7605,16 @@ button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
7110
7605
  box-shadow: var(--xmlui-boxShadow-AutoComplete-warning);
7111
7606
  color: var(--xmlui-textColor-AutoComplete-warning);
7112
7607
  }
7113
- ._badgeListWrapper_17zx6_20._warning_17zx6_62:hover {
7608
+ ._badgeListWrapper_1xx47_20._warning_1xx47_63:hover {
7114
7609
  border-color: var(--xmlui-borderColor-AutoComplete-warning--hover);
7115
7610
  background-color: var(--xmlui-backgroundColor-AutoComplete-warning--hover);
7116
7611
  box-shadow: var(--xmlui-boxShadow-AutoComplete-warning--hover);
7117
7612
  color: var(--xmlui-textColor-AutoComplete-warning--hover);
7118
7613
  }
7119
- ._badgeListWrapper_17zx6_20._warning_17zx6_62::placeholder {
7614
+ ._badgeListWrapper_1xx47_20._warning_1xx47_63::placeholder {
7120
7615
  color: var(--xmlui-textColor-placeholder-AutoComplete-warning);
7121
7616
  }
7122
- ._badgeListWrapper_17zx6_20._valid_17zx6_81 {
7617
+ ._badgeListWrapper_1xx47_20._valid_1xx47_82 {
7123
7618
  border-radius: var(--xmlui-borderRadius-AutoComplete-success);
7124
7619
  border-color: var(--xmlui-borderColor-AutoComplete-success);
7125
7620
  border-width: var(--xmlui-borderWidth-AutoComplete-success);
@@ -7129,30 +7624,30 @@ button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
7129
7624
  box-shadow: var(--xmlui-boxShadow-AutoComplete-success);
7130
7625
  color: var(--xmlui-textColor-AutoComplete-success);
7131
7626
  }
7132
- ._badgeListWrapper_17zx6_20._valid_17zx6_81:hover {
7627
+ ._badgeListWrapper_1xx47_20._valid_1xx47_82:hover {
7133
7628
  border-color: var(--xmlui-borderColor-AutoComplete-success--hover);
7134
7629
  background-color: var(--xmlui-backgroundColor-AutoComplete-success--hover);
7135
7630
  box-shadow: var(--xmlui-boxShadow-AutoComplete-success--hover);
7136
7631
  color: var(--xmlui-textColor-AutoComplete-success--hover);
7137
7632
  }
7138
- ._badgeListWrapper_17zx6_20._valid_17zx6_81::placeholder {
7633
+ ._badgeListWrapper_1xx47_20._valid_1xx47_82::placeholder {
7139
7634
  color: var(--xmlui-textColor-placeholder-AutoComplete-success);
7140
7635
  }
7141
- ._badgeListWrapper_17zx6_20._disabled_17zx6_100 {
7636
+ ._badgeListWrapper_1xx47_20._disabled_1xx47_101 {
7142
7637
  cursor: not-allowed;
7143
7638
  opacity: 0.5;
7144
7639
  background-color: var(--xmlui-backgroundColor-AutoComplete--disabled);
7145
7640
  color: var(--xmlui-textColor-AutoComplete--disabled);
7146
7641
  border-color: var(--xmlui-borderColor-AutoComplete--disabled);
7147
7642
  }
7148
- ._badgeListWrapper_17zx6_20._focused_17zx6_107 {
7643
+ ._badgeListWrapper_1xx47_20._focused_1xx47_108 {
7149
7644
  outline-width: var(--xmlui-outlineWidth-AutoComplete--focus);
7150
7645
  outline-color: var(--xmlui-outlineColor-AutoComplete--focus);
7151
7646
  outline-style: var(--xmlui-outlineStyle-AutoComplete--focus);
7152
7647
  outline-offset: var(--xmlui-outlineOffset-AutoComplete--focus);
7153
7648
  }
7154
7649
 
7155
- ._badgeList_17zx6_20 {
7650
+ ._badgeList_1xx47_20 {
7156
7651
  position: relative;
7157
7652
  flex-grow: 1;
7158
7653
  align-items: center;
@@ -7161,7 +7656,7 @@ button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
7161
7656
  gap: 0.25rem;
7162
7657
  }
7163
7658
 
7164
- ._badge_17zx6_20 {
7659
+ ._badge_1xx47_20 {
7165
7660
  width: fit-content;
7166
7661
  height: fit-content;
7167
7662
  min-width: 0;
@@ -7178,38 +7673,38 @@ button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
7178
7673
  background-color: var(--xmlui-backgroundColor-AutoComplete-badge);
7179
7674
  color: var(--xmlui-textColor-AutoComplete-badge);
7180
7675
  }
7181
- ._badge_17zx6_20:hover {
7676
+ ._badge_1xx47_20:hover {
7182
7677
  background-color: var(--xmlui-backgroundColor-AutoComplete-badge--hover);
7183
7678
  color: var(--xmlui-textColor-AutoComplete-badge--hover);
7184
7679
  }
7185
- ._badge_17zx6_20:active {
7680
+ ._badge_1xx47_20:active {
7186
7681
  background-color: var(--xmlui-backgroundColor-AutoComplete-badge--active);
7187
7682
  color: var(--xmlui-textColor-AutoComplete-badge--active);
7188
7683
  }
7189
7684
 
7190
- ._commandInput_17zx6_149 {
7685
+ ._commandInput_1xx47_150 {
7191
7686
  flex: 1;
7192
7687
  background-color: transparent;
7193
7688
  outline: none;
7194
7689
  }
7195
- ._commandInput_17zx6_149:disabled {
7690
+ ._commandInput_1xx47_150:disabled {
7196
7691
  cursor: not-allowed;
7197
7692
  opacity: 0.5;
7198
7693
  }
7199
- ._commandInput_17zx6_149::placeholder {
7694
+ ._commandInput_1xx47_150::placeholder {
7200
7695
  color: var(--xmlui-textColor-placeholder-AutoComplete);
7201
7696
  }
7202
- ._commandInput_17zx6_149:focus-within {
7697
+ ._commandInput_1xx47_150:focus-within {
7203
7698
  outline: none;
7204
7699
  }
7205
7700
 
7206
- ._actions_17zx6_165 {
7701
+ ._actions_1xx47_166 {
7207
7702
  display: flex;
7208
7703
  align-items: center;
7209
7704
  justify-content: space-between;
7210
7705
  }
7211
7706
 
7212
- ._autoCompleteEmpty_17zx6_171 {
7707
+ ._autoCompleteEmpty_1xx47_172 {
7213
7708
  display: flex;
7214
7709
  gap: 0.2rem;
7215
7710
  padding: 10px 0;
@@ -7219,7 +7714,7 @@ button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
7219
7714
  width: 100%;
7220
7715
  }
7221
7716
 
7222
- ._commandList_17zx6_181 {
7717
+ ._commandList_1xx47_182 {
7223
7718
  position: absolute;
7224
7719
  overflow: hidden;
7225
7720
  top: 0.25rem;
@@ -7229,10 +7724,10 @@ button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
7229
7724
  background-color: var(--xmlui-backgroundColor-menu-AutoComplete);
7230
7725
  border-radius: var(--xmlui-borderRadius-menu-AutoComplete);
7231
7726
  box-shadow: var(--xmlui-boxShadow-menu-AutoComplete);
7232
- 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 */
7233
7728
  }
7234
7729
 
7235
- ._autoCompleteOption_17zx6_194 {
7730
+ ._autoCompleteOption_1xx47_195 {
7236
7731
  padding: 0.5rem 1rem;
7237
7732
  display: flex;
7238
7733
  gap: 1rem;
@@ -7242,10 +7737,10 @@ button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
7242
7737
  transition: background-color 0.2s ease;
7243
7738
  background-color: var(--xmlui-backgroundColor-item-AutoComplete);
7244
7739
  }
7245
- ._autoCompleteOption_17zx6_194[data-selected=true] {
7740
+ ._autoCompleteOption_1xx47_195[data-selected=true] {
7246
7741
  background-color: var(--xmlui-backgroundColor-item-AutoComplete--hover);
7247
7742
  }
7248
- ._autoCompleteOption_17zx6_194[data-disabled=true] {
7743
+ ._autoCompleteOption_1xx47_195[data-disabled=true] {
7249
7744
  pointer-events: none;
7250
7745
  opacity: 0.5;
7251
7746
  cursor: not-allowed;
@@ -7554,7 +8049,7 @@ button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
7554
8049
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
7555
8050
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
7556
8051
  */
7557
- ._outerWrapper_1iosm_13 {
8052
+ ._outerWrapper_1fv9c_13 {
7558
8053
  border-left: var(--xmlui-borderLeft-Footer, var(--xmlui-borderHorizontal-Footer, var(--xmlui-border-Footer)));
7559
8054
  border-right: var(--xmlui-borderRight-Footer, var(--xmlui-borderHorizontal-Footer, var(--xmlui-border-Footer)));
7560
8055
  border-top: var(--xmlui-borderTop-Footer, var(--xmlui-borderVertical-Footer, var(--xmlui-border-Footer)));
@@ -7579,7 +8074,7 @@ button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
7579
8074
  height: var(--xmlui-height-Footer);
7580
8075
  }
7581
8076
 
7582
- ._wrapper_1iosm_38 {
8077
+ ._wrapper_1fv9c_38 {
7583
8078
  width: 100%;
7584
8079
  display: flex;
7585
8080
  min-height: 0;
@@ -7590,37 +8085,14 @@ button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
7590
8085
  padding-right: var(--xmlui-paddingRight-Footer, var(--xmlui-paddingHorizontal-Footer, var(--xmlui-padding-Footer)));
7591
8086
  padding-top: var(--xmlui-paddingTop-Footer, var(--xmlui-paddingVertical-Footer, var(--xmlui-padding-Footer)));
7592
8087
  padding-bottom: var(--xmlui-paddingBottom-Footer, var(--xmlui-paddingVertical-Footer, var(--xmlui-padding-Footer)));
7593
- color: var(--xmlui-textColor-Footer);
7594
- font-family: var(--xmlui-fontFamily-Footer);
7595
8088
  font-size: var(--xmlui-fontSize-Footer);
7596
- font-style: var(--xmlui-fontStyle-Footer);
7597
- font-weight: var(--xmlui-fontWeight-Footer);
7598
- font-stretch: var(--xmlui-fontStretch-Footer);
7599
- text-decoration-line: var(--xmlui-textDecorationLine-Footer);
7600
- text-decoration-color: var(--xmlui-textDecorationColor-Footer);
7601
- text-decoration-style: var(--xmlui-textDecorationStyle-Footer);
7602
- text-decoration-thickness: var(--xmlui-textDecorationThickness-Footer);
7603
- text-underline-offset: var(--xmlui-textUnderlineOffset-Footer);
7604
- line-height: var(--xmlui-lineHeight-Footer);
7605
- background-color: var(--xmlui-backgroundColor-Footer);
7606
- text-transform: var(--xmlui-textTransform-Footer);
7607
- letter-spacing: var(--xmlui-letterSpacing-Footer);
7608
- word-spacing: var(--xmlui-wordSpacing-Footer);
7609
- text-shadow: var(--xmlui-textShadow-Footer);
7610
- text-indent: var(--xmlui-textIndent-Footer);
7611
- text-align: var(--xmlui-textAlign-Footer);
7612
- text-align-last: var(--xmlui-textAlignLast-Footer);
7613
- word-break: var(--xmlui-wordBreak-Footer);
7614
- word-wrap: var(--xmlui-wordWrap-Footer);
7615
- direction: var(--xmlui-direction-Footer);
7616
- writing-mode: var(--xmlui-writingMode-Footer);
7617
- line-break: var(--xmlui-lineBreak-Footer);
7618
8089
  align-items: var(--xmlui-verticalAlign-Footer);
7619
8090
  max-width: var(--xmlui-maxWidth-content-Footer);
8091
+ color: var(--xmlui-textColor-Footer);
7620
8092
  margin: 0 auto;
7621
8093
  }
7622
- ._wrapper_1iosm_38._verticalFullHeader_1iosm_78 {
7623
- max-width: var(--xmlui-maxWidth-App-vertical);
8094
+ ._wrapper_1fv9c_38._full_1fv9c_55 {
8095
+ max-width: 100%;
7624
8096
  }/*
7625
8097
  * This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
7626
8098
  *
@@ -7662,18 +8134,55 @@ button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
7662
8134
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
7663
8135
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
7664
8136
  */
7665
- ._markdownContent_mgetx_13 {
7666
- max-width: var(--xmlui-maxWidth-Markdown);
8137
+ ._markdownContent_1q19g_13 {
7667
8138
  padding-top: var(--xmlui-paddingTop-Markdown);
7668
8139
  padding-bottom: var(--xmlui-paddingBottom-Markdown);
7669
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;
7670
8152
  }
7671
- ._markdownContent_mgetx_13 ._blockquote_mgetx_19 {
8153
+ ._markdownContent_1q19g_13 h3 {
8154
+ margin-top: var(--xmlui-marginTop-H3-markdown) !important;
8155
+ margin-bottom: var(--xmlui-marginBottom-H3-markdown) !important;
8156
+ }
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 {
7672
8170
  position: relative;
7673
8171
  margin-top: var(--xmlui-marginTop-Blockquote);
7674
8172
  margin-bottom: var(--xmlui-marginBottom-Blockquote);
7675
8173
  background-color: var(--xmlui-backgroundColor-Blockquote);
7676
- 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 {
7677
8186
  border-left: var(--xmlui-borderLeft-Blockquote, var(--xmlui-borderHorizontal-Blockquote, var(--xmlui-border-Blockquote)));
7678
8187
  border-right: var(--xmlui-borderRight-Blockquote, var(--xmlui-borderHorizontal-Blockquote, var(--xmlui-border-Blockquote)));
7679
8188
  border-top: var(--xmlui-borderTop-Blockquote, var(--xmlui-borderVertical-Blockquote, var(--xmlui-border-Blockquote)));
@@ -7701,60 +8210,78 @@ button._selectTrigger_1xb91_46._valid_1xb91_37::placeholder {
7701
8210
  padding-top: var(--xmlui-paddingTop-Blockquote, var(--xmlui-paddingVertical-Blockquote, var(--xmlui-padding-Blockquote)));
7702
8211
  padding-bottom: var(--xmlui-paddingBottom-Blockquote, var(--xmlui-paddingVertical-Blockquote, var(--xmlui-padding-Blockquote)));
7703
8212
  }
7704
- ._markdownContent_mgetx_13 ._blockquote_mgetx_19::before {
7705
- background-color: var(--xmlui-accentColor-Blockquote);
7706
- position: absolute;
7707
- top: 0;
7708
- left: 0;
7709
- display: block;
7710
- content: "";
7711
- height: 100%;
7712
- width: var(--xmlui-accentWidth-Blockquote);
7713
- }
7714
- ._markdownContent_mgetx_13 ._blockquoteContainer_mgetx_62 {
7715
- padding: 0.5rem 0.5rem 0.1rem 0.5rem;
7716
- }
7717
- ._markdownContent_mgetx_13 ._admonitionBlockquote_mgetx_65 {
8213
+ ._markdownContent_1q19g_13 ._admonitionBlockquote_1q19g_89 {
7718
8214
  margin-top: var(--xmlui-marginTop-Admonition);
7719
8215
  margin-bottom: var(--xmlui-marginBottom-Admonition);
7720
8216
  background-color: var(--xmlui-backgroundColor-Admonition);
7721
8217
  border-radius: var(--xmlui-borderRadius-Admonition);
7722
- }
7723
- ._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 {
7724
8246
  padding: 0.5rem;
7725
8247
  display: flex;
7726
8248
  align-items: flex-start;
7727
8249
  }
7728
- ._markdownContent_mgetx_13 ._admonitionContent_mgetx_76 {
8250
+ ._markdownContent_1q19g_13 ._admonitionContent_1q19g_126 {
7729
8251
  margin-left: var(--xmlui-marginLeft-Admonition-content);
7730
8252
  }
7731
- ._markdownContent_mgetx_13 ._admonitionIcon_mgetx_79 {
8253
+ ._markdownContent_1q19g_13 ._admonitionIcon_1q19g_129 {
7732
8254
  font-size: var(--xmlui-iconSize-Admonition);
7733
8255
  line-height: 1;
7734
8256
  }
7735
- ._markdownContent_mgetx_13 ._admonitionContent_mgetx_76 {
8257
+ ._markdownContent_1q19g_13 ._admonitionContent_1q19g_126 {
7736
8258
  flex: 1;
7737
8259
  min-width: 0;
7738
8260
  }
7739
- ._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_] {
7740
8262
  margin-top: 0;
7741
8263
  margin-bottom: 0;
7742
8264
  }
7743
- ._markdownContent_mgetx_13 li:has(> input[type=checkbox]),
7744
- ._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]) {
7745
8272
  display: flex;
7746
8273
  align-items: flex-start;
7747
8274
  }
7748
- ._markdownContent_mgetx_13 li:has(> input[type=checkbox]) > input[type=checkbox],
7749
- ._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] {
7750
8277
  margin-right: 8px;
7751
8278
  margin-top: 4px;
7752
8279
  flex-shrink: 0;
7753
8280
  }
7754
- ._markdownContent_mgetx_13 > *:first-child {
8281
+ ._markdownContent_1q19g_13 > *:first-child {
7755
8282
  margin-top: 0;
7756
8283
  }
7757
- ._markdownContent_mgetx_13 > *:last-child {
8284
+ ._markdownContent_1q19g_13 > *:last-child {
7758
8285
  margin-bottom: 0;
7759
8286
  }
7760
8287
 
@@ -7803,7 +8330,7 @@ $color-marker-ListItem: createThemeVar("color-marker-ListItem");
7803
8330
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
7804
8331
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
7805
8332
  */
7806
- ._htmlTable_11909_13 {
8333
+ ._htmlTable_1usjo_13 {
7807
8334
  background-color: var(--xmlui-backgroundColor-HtmlTable);
7808
8335
  color: var(--xmlui-textColor-HtmlTable);
7809
8336
  font-family: var(--xmlui-fontFamily-HtmlTable);
@@ -7840,7 +8367,7 @@ $color-marker-ListItem: createThemeVar("color-marker-ListItem");
7840
8367
  padding-bottom: var(--xmlui-paddingBottom-HtmlTable, var(--xmlui-paddingVertical-HtmlTable, var(--xmlui-padding-HtmlTable)));
7841
8368
  }
7842
8369
 
7843
- ._htmlThead_11909_50 {
8370
+ ._htmlThead_1usjo_50 {
7844
8371
  background-color: var(--xmlui-backgroundColor-HtmlThead);
7845
8372
  color: var(--xmlui-textColor-HtmlThead);
7846
8373
  font-weight: var(--xmlui-fontWeight-HtmlThead);
@@ -7873,7 +8400,7 @@ $color-marker-ListItem: createThemeVar("color-marker-ListItem");
7873
8400
  padding-bottom: var(--xmlui-paddingBottom-HtmlThead, var(--xmlui-paddingVertical-HtmlThead, var(--xmlui-padding-HtmlThead)));
7874
8401
  }
7875
8402
 
7876
- ._htmlTbody_11909_83 {
8403
+ ._htmlTbody_1usjo_83 {
7877
8404
  background-color: var(--xmlui-backgroundColor-HtmlTbody);
7878
8405
  color: var(--xmlui-textColor-HtmlTbody);
7879
8406
  text-align: var(--xmlui-textAlign-HtmlTbody);
@@ -7881,12 +8408,12 @@ $color-marker-ListItem: createThemeVar("color-marker-ListItem");
7881
8408
  text-transform: var(--xmlui-textTransform-HtmlTbody);
7882
8409
  }
7883
8410
 
7884
- ._htmlTfoot_11909_91 {
8411
+ ._htmlTfoot_1usjo_91 {
7885
8412
  background-color: var(--xmlui-backgroundColor-HtmlTfoot);
7886
8413
  color: var(--xmlui-textColor-HtmlTfoot);
7887
8414
  }
7888
8415
 
7889
- ._htmlTh_11909_50 {
8416
+ ._htmlTh_1usjo_50 {
7890
8417
  background-color: var(--xmlui-backgroundColor-HtmlTh);
7891
8418
  color: var(--xmlui-textColor-HtmlTh);
7892
8419
  font-weight: var(--xmlui-fontWeight-HtmlTh);
@@ -7917,11 +8444,11 @@ $color-marker-ListItem: createThemeVar("color-marker-ListItem");
7917
8444
  padding-top: var(--xmlui-paddingTop-HtmlTh, var(--xmlui-paddingVertical-HtmlTh, var(--xmlui-padding-HtmlTh)));
7918
8445
  padding-bottom: var(--xmlui-paddingBottom-HtmlTh, var(--xmlui-paddingVertical-HtmlTh, var(--xmlui-padding-HtmlTh)));
7919
8446
  }
7920
- ._htmlTh_11909_50:hover {
8447
+ ._htmlTh_1usjo_50:hover {
7921
8448
  background-color: var(--xmlui-backgroundColor-HtmlTh--hover);
7922
8449
  }
7923
8450
 
7924
- ._htmlTr_11909_131 {
8451
+ ._htmlTr_1usjo_131 {
7925
8452
  background-color: var(--xmlui-backgroundColor-HtmlTr);
7926
8453
  color: var(--xmlui-textColor-HtmlTr);
7927
8454
  font-weight: var(--xmlui-fontWeight-HtmlTr);
@@ -7947,18 +8474,18 @@ $color-marker-ListItem: createThemeVar("color-marker-ListItem");
7947
8474
  border-end-start-radius: var(--xmlui-borderEndStartRadius-HtmlTr, var(--xmlui-borderRadius-HtmlTr));
7948
8475
  border-end-end-radius: var(--xmlui-borderEndEndRadius-HtmlTr, var(--xmlui-borderRadius-HtmlTr));
7949
8476
  }
7950
- ._htmlTr_11909_131:nth-child(even) {
8477
+ ._htmlTr_1usjo_131:nth-child(even) {
7951
8478
  background-color: var(--xmlui-backgroundColor-even-HtmlTr);
7952
8479
  }
7953
- ._htmlTr_11909_131:hover {
8480
+ ._htmlTr_1usjo_131:hover {
7954
8481
  background-color: var(--xmlui-backgroundColor-HtmlTr--hover);
7955
8482
  color: var(--xmlui-textColor-HtmlTr--hover);
7956
8483
  }
7957
- ._htmlTr_11909_131:hover:not(:has(:not(th))) {
8484
+ ._htmlTr_1usjo_131:hover:not(:has(:not(th))) {
7958
8485
  background-color: initial;
7959
8486
  }
7960
8487
 
7961
- ._htmlTd_11909_168 {
8488
+ ._htmlTd_1usjo_168 {
7962
8489
  background-color: var(--xmlui-backgroundColor-HtmlTd);
7963
8490
  text-align: var(--xmlui-text-align-HtmlTd);
7964
8491
  vertical-align: var(--xmlui-verticalAlign-HtmlTd);
@@ -7991,7 +8518,7 @@ $color-marker-ListItem: createThemeVar("color-marker-ListItem");
7991
8518
  padding-bottom: var(--xmlui-paddingBottom-HtmlTd, var(--xmlui-paddingVertical-HtmlTd, var(--xmlui-padding-HtmlTd)));
7992
8519
  }
7993
8520
 
7994
- ._htmlUl_11909_201 {
8521
+ ._htmlUl_1usjo_201 {
7995
8522
  margin-top: var(--xmlui-marginTop-HtmlUl);
7996
8523
  margin-bottom: var(--xmlui-marginBottom-HtmlUl);
7997
8524
  border-left: var(--xmlui-borderLeft-HtmlUl, var(--xmlui-borderHorizontal-HtmlUl, var(--xmlui-border-HtmlUl)));
@@ -8021,7 +8548,7 @@ $color-marker-ListItem: createThemeVar("color-marker-ListItem");
8021
8548
  padding-bottom: var(--xmlui-paddingBottom-HtmlUl, var(--xmlui-paddingVertical-HtmlUl, var(--xmlui-padding-HtmlUl)));
8022
8549
  }
8023
8550
 
8024
- ._htmlOl_11909_231 {
8551
+ ._htmlOl_1usjo_231 {
8025
8552
  margin-top: var(--xmlui-marginTop-HtmlOl);
8026
8553
  margin-bottom: var(--xmlui-marginBottom-HtmlOl);
8027
8554
  border-left: var(--xmlui-borderLeft-HtmlOl, var(--xmlui-borderHorizontal-HtmlOl, var(--xmlui-border-HtmlOl)));
@@ -8051,10 +8578,11 @@ $color-marker-ListItem: createThemeVar("color-marker-ListItem");
8051
8578
  padding-bottom: var(--xmlui-paddingBottom-HtmlOl, var(--xmlui-paddingVertical-HtmlOl, var(--xmlui-padding-HtmlOl)));
8052
8579
  }
8053
8580
 
8054
- ._htmlLi_11909_261 {
8581
+ ._htmlLi_1usjo_261 {
8055
8582
  margin-top: var(--xmlui-marginTop-HtmlLi);
8056
8583
  margin-bottom: var(--xmlui-marginBottom-HtmlLi);
8057
8584
  list-style-type: var(--xmlui-listStyleType-HtmlLi);
8585
+ margin-left: var(--xmlui-marginLeft-HtmlLi);
8058
8586
  border-left: var(--xmlui-borderLeft-HtmlLi, var(--xmlui-borderHorizontal-HtmlLi, var(--xmlui-border-HtmlLi)));
8059
8587
  border-right: var(--xmlui-borderRight-HtmlLi, var(--xmlui-borderHorizontal-HtmlLi, var(--xmlui-border-HtmlLi)));
8060
8588
  border-top: var(--xmlui-borderTop-HtmlLi, var(--xmlui-borderVertical-HtmlLi, var(--xmlui-border-HtmlLi)));
@@ -8090,22 +8618,22 @@ li .htmlOl {
8090
8618
  margin-bottom: 0;
8091
8619
  }
8092
8620
  */
8093
- ._htmlH1_11909_300,
8094
- ._htmlH2_11909_301,
8095
- ._htmlH3_11909_302,
8096
- ._htmlH4_11909_303,
8097
- ._htmlH5_11909_304,
8098
- ._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 {
8099
8627
  margin-top: var(--xmlui-marginTop-HtmlHeading);
8100
8628
  margin-bottom: var(--xmlui-marginBottom-HtmlHeading);
8101
8629
  }
8102
8630
 
8103
- ._htmlVideo_11909_310 {
8631
+ ._htmlVideo_1usjo_311 {
8104
8632
  margin-top: var(--xmlui-marginTop-HtmlVideo);
8105
8633
  margin-bottom: var(--xmlui-marginBottom-HtmlVideo);
8106
8634
  }
8107
8635
 
8108
- ._htmlDetails_11909_315 {
8636
+ ._htmlDetails_1usjo_316 {
8109
8637
  margin-top: var(--xmlui-marginTop-HtmlDetails);
8110
8638
  margin-bottom: var(--xmlui-marginBottom-HtmlDetails);
8111
8639
  border-left: var(--xmlui-borderLeft-HtmlDetails, var(--xmlui-borderHorizontal-HtmlDetails, var(--xmlui-border-HtmlDetails)));
@@ -8135,12 +8663,12 @@ li .htmlOl {
8135
8663
  padding-bottom: var(--xmlui-paddingBottom-HtmlDetails, var(--xmlui-paddingVertical-HtmlDetails, var(--xmlui-padding-HtmlDetails)));
8136
8664
  }
8137
8665
 
8138
- ._htmlDetails_11909_315 {
8666
+ ._htmlDetails_1usjo_316 {
8139
8667
  margin-top: var(--xmlui-marginTop-HtmlDetails);
8140
8668
  margin-bottom: var(--xmlui-marginBottom-HtmlDetails);
8141
8669
  }
8142
8670
 
8143
- ._htmlImage_11909_350 {
8671
+ ._htmlImage_1usjo_351 {
8144
8672
  width: var(--xmlui-width-HtmlImage);
8145
8673
  height: var(--xmlui-height-HtmlImage);
8146
8674
  border-left: var(--xmlui-borderLeft-HtmlImage, var(--xmlui-borderHorizontal-HtmlImage, var(--xmlui-border-HtmlImage)));
@@ -8180,6 +8708,282 @@ li .htmlOl {
8180
8708
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
8181
8709
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
8182
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
+ */
8183
8987
  ._DropdownMenuContent_1ty8e_13,
8184
8988
  ._DropdownMenuSubContent_1ty8e_14 {
8185
8989
  background-color: var(--xmlui-backgroundColor-DropdownMenu);
@@ -8290,39 +9094,6 @@ li .htmlOl {
8290
9094
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
8291
9095
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
8292
9096
  */
8293
- ._errorOverlay_1t96q_13 {
8294
- background-color: var(--xmlui-color-danger-500);
8295
- position: relative;
8296
- inset: 0;
8297
- border-radius: 4px;
8298
- padding: 8px;
8299
- }
8300
-
8301
- ._title_1t96q_21 {
8302
- color: white;
8303
- font-weight: var(--xmlui-fontWeight-normal);
8304
- padding-left: 4px;
8305
- padding-right: 8px;
8306
- }
8307
-
8308
- ._errorItem_1t96q_28 {
8309
- font-weight: var(--xmlui-fontWeight-bold);
8310
- padding-left: 4px;
8311
- padding-right: 8px;
8312
- color: white;
8313
- white-space: pre-wrap;
8314
- }/*
8315
- * This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
8316
- *
8317
- * We use a subset of these CSS variables in themes.
8318
- */
8319
- /*
8320
- * This function creates a CSS variable name by combining the prefix and the argument variable name
8321
- */
8322
- /*
8323
- * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
8324
- Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
8325
- */
8326
9097
  ._wrapper_mzu91_13 {
8327
9098
  position: relative;
8328
9099
  opacity: 0.5;
@@ -8484,6 +9255,9 @@ li .htmlOl {
8484
9255
  ._tabsContent_1ggvi_111 {
8485
9256
  flex-grow: 1;
8486
9257
  outline: none;
9258
+ }._anchorRef_1d4md_1 {
9259
+ --my-scroll-margin-top: var(--header-height);
9260
+ scroll-margin-top: var(--my-scroll-margin-top);
8487
9261
  }/*
8488
9262
  * This file contains all CSS variables AppEngine uses for styling the UI, including individual visual components.
8489
9263
  *
@@ -8496,7 +9270,7 @@ li .htmlOl {
8496
9270
  * This function allows other CSS modules to get the value of the CSS variable specified in $componentVariable.
8497
9271
  Optionally, you can provide a $fallbackValue to set the variable's value if that is not defined.
8498
9272
  */
8499
- ._nav_1biyk_13 {
9273
+ ._nav_1gght_13 {
8500
9274
  background-color: var(--xmlui-backgroundColor-TableOfContents);
8501
9275
  min-width: 240px;
8502
9276
  width: var(--xmlui-width-TableOfContents);
@@ -8506,7 +9280,7 @@ li .htmlOl {
8506
9280
  overflow-y: auto;
8507
9281
  overflow-x: hidden;
8508
9282
  z-index: 99;
8509
- top: 0;
9283
+ top: var(--header-height);
8510
9284
  position: sticky;
8511
9285
  scrollbar-color: lab(48.438% 0 0/0.4) transparent;
8512
9286
  scrollbar-width: thin;
@@ -8518,16 +9292,16 @@ li .htmlOl {
8518
9292
  margin-bottom: var(--xmlui-marginBottom-TableOfContents);
8519
9293
  padding: var(--xmlui-paddingVertical-TableOfContents) var(--xmlui-paddingHorizontal-TableOfContents);
8520
9294
  }
8521
- ._nav_1biyk_13 ._list_1biyk_35 {
9295
+ ._nav_1gght_13 ._list_1gght_35 {
8522
9296
  margin: 0;
8523
9297
  padding: 0;
8524
9298
  list-style: none;
8525
9299
  }
8526
- ._nav_1biyk_13 ._list_1biyk_35 ._listItem_1biyk_40 {
9300
+ ._nav_1gght_13 ._list_1gght_35 ._listItem_1gght_40 {
8527
9301
  list-style-type: none;
8528
- 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);
8529
9303
  }
8530
- ._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 {
8531
9305
  color: var(--xmlui-textColor-TableOfContentsItem);
8532
9306
  overflow-wrap: break-word;
8533
9307
  display: block;
@@ -8562,7 +9336,7 @@ li .htmlOl {
8562
9336
  writing-mode: var(--xmlui-writingMode-TableOfContentsItem);
8563
9337
  line-break: var(--xmlui-lineBreak-TableOfContentsItem);
8564
9338
  }
8565
- ._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 {
8566
9340
  padding: var(--xmlui-padding-TableOfContentsItem-level-1);
8567
9341
  padding-left: var(--xmlui-paddingLeft-TableOfContentsItem-level-1, var(--xmlui-paddingHorizontal-TableOfContentsItem-level-1, var(--xmlui-padding-TableOfContentsItem-level-1)));
8568
9342
  padding-right: var(--xmlui-paddingRight-TableOfContentsItem-level-1, var(--xmlui-paddingHorizontal-TableOfContentsItem-level-1, var(--xmlui-padding-TableOfContentsItem-level-1)));
@@ -8594,7 +9368,7 @@ li .htmlOl {
8594
9368
  writing-mode: var(--xmlui-writingMode-TableOfContentsItem-level-1);
8595
9369
  line-break: var(--xmlui-lineBreak-TableOfContentsItem-level-1);
8596
9370
  }
8597
- ._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 {
8598
9372
  padding: var(--xmlui-padding-TableOfContentsItem-level-2);
8599
9373
  padding-left: var(--xmlui-paddingLeft-TableOfContentsItem-level-2, var(--xmlui-paddingHorizontal-TableOfContentsItem-level-2, var(--xmlui-padding-TableOfContentsItem-level-2)));
8600
9374
  padding-right: var(--xmlui-paddingRight-TableOfContentsItem-level-2, var(--xmlui-paddingHorizontal-TableOfContentsItem-level-2, var(--xmlui-padding-TableOfContentsItem-level-2)));
@@ -8626,7 +9400,7 @@ li .htmlOl {
8626
9400
  writing-mode: var(--xmlui-writingMode-TableOfContentsItem-level-2);
8627
9401
  line-break: var(--xmlui-lineBreak-TableOfContentsItem-level-2);
8628
9402
  }
8629
- ._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 {
8630
9404
  padding: var(--xmlui-padding-TableOfContentsItem-level-3);
8631
9405
  padding-left: var(--xmlui-paddingLeft-TableOfContentsItem-level-3, var(--xmlui-paddingHorizontal-TableOfContentsItem-level-3, var(--xmlui-padding-TableOfContentsItem-level-3)));
8632
9406
  padding-right: var(--xmlui-paddingRight-TableOfContentsItem-level-3, var(--xmlui-paddingHorizontal-TableOfContentsItem-level-3, var(--xmlui-padding-TableOfContentsItem-level-3)));
@@ -8658,7 +9432,7 @@ li .htmlOl {
8658
9432
  writing-mode: var(--xmlui-writingMode-TableOfContentsItem-level-3);
8659
9433
  line-break: var(--xmlui-lineBreak-TableOfContentsItem-level-3);
8660
9434
  }
8661
- ._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 {
8662
9436
  padding: var(--xmlui-padding-TableOfContentsItem-level-4);
8663
9437
  padding-left: var(--xmlui-paddingLeft-TableOfContentsItem-level-4, var(--xmlui-paddingHorizontal-TableOfContentsItem-level-4, var(--xmlui-padding-TableOfContentsItem-level-4)));
8664
9438
  padding-right: var(--xmlui-paddingRight-TableOfContentsItem-level-4, var(--xmlui-paddingHorizontal-TableOfContentsItem-level-4, var(--xmlui-padding-TableOfContentsItem-level-4)));
@@ -8690,7 +9464,7 @@ li .htmlOl {
8690
9464
  writing-mode: var(--xmlui-writingMode-TableOfContentsItem-level-4);
8691
9465
  line-break: var(--xmlui-lineBreak-TableOfContentsItem-level-4);
8692
9466
  }
8693
- ._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 {
8694
9468
  padding: var(--xmlui-padding-TableOfContentsItem-level-5);
8695
9469
  padding-left: var(--xmlui-paddingLeft-TableOfContentsItem-level-5, var(--xmlui-paddingHorizontal-TableOfContentsItem-level-5, var(--xmlui-padding-TableOfContentsItem-level-5)));
8696
9470
  padding-right: var(--xmlui-paddingRight-TableOfContentsItem-level-5, var(--xmlui-paddingHorizontal-TableOfContentsItem-level-5, var(--xmlui-padding-TableOfContentsItem-level-5)));
@@ -8722,7 +9496,7 @@ li .htmlOl {
8722
9496
  writing-mode: var(--xmlui-writingMode-TableOfContentsItem-level-5);
8723
9497
  line-break: var(--xmlui-lineBreak-TableOfContentsItem-level-5);
8724
9498
  }
8725
- ._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 {
8726
9500
  padding: var(--xmlui-padding-TableOfContentsItem-level-6);
8727
9501
  padding-left: var(--xmlui-paddingLeft-TableOfContentsItem-level-6, var(--xmlui-paddingHorizontal-TableOfContentsItem-level-6, var(--xmlui-padding-TableOfContentsItem-level-6)));
8728
9502
  padding-right: var(--xmlui-paddingRight-TableOfContentsItem-level-6, var(--xmlui-paddingHorizontal-TableOfContentsItem-level-6, var(--xmlui-padding-TableOfContentsItem-level-6)));
@@ -8754,10 +9528,13 @@ li .htmlOl {
8754
9528
  writing-mode: var(--xmlui-writingMode-TableOfContentsItem-level-6);
8755
9529
  line-break: var(--xmlui-lineBreak-TableOfContentsItem-level-6);
8756
9530
  }
8757
- ._nav_1biyk_13 ._list_1biyk_35 ._listItem_1biyk_40._active_1biyk_271 {
8758
- 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);
8759
9536
  }
8760
- ._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 {
8761
9538
  color: var(--xmlui-color-TableOfContentsItem--active);
8762
9539
  font-weight: var(--xmlui-fontWeight-TableOfContentsItem--active);
8763
9540
  }/*