/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
2. [UnoCSS]: allow to override the default border color with css var `--un-default-border-color`
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: var(--un-default-border-color, #e5e7eb); /* 2 */
}

::before,
::after {
  --un-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS.
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/*
Make elements with the HTML hidden attribute stay hidden by default.
*/

[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
.animate-in,.data-\[expanded\]\:animate-in[data-expanded],.data-\[loading\=\'true\'\]\:animate-in[data-loading='true'],.data-\[open\=\'true\'\]\:animate-in[data-open='true'],.ui-expanded\:animate-in[data-expanded],:where([data-expanded]) .ui-expanded\:animate-in{animation:una-in;animation-name:una-in;animation-duration:150ms;--una-enter-opacity:initial;--una-enter-scale:initial;--una-enter-rotate:initial;--una-enter-translate-x:initial;--una-enter-translate-y:initial;}.data-\[closed\]\:animate-out[data-closed],.data-\[loading\=\'false\'\]\:animate-out[data-loading='false'],.data-\[open\=\'false\'\]\:animate-out[data-open='false'],.ui-closed\:animate-out[data-closed],:where([data-closed]) .ui-closed\:animate-out{animation:una-out;animation-name:una-out;animation-duration:150ms;--una-exit-opacity:initial;--una-exit-scale:initial;--una-exit-rotate:initial;--una-exit-translate-x:initial;--una-exit-translate-y:initial;}*,::before,::after{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgb(0 0 0 / 0);--un-ring-shadow:0 0 rgb(0 0 0 / 0);--un-shadow-inset: ;--un-shadow:0 0 rgb(0 0 0 / 0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgb(147 197 253 / 0.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: ;}::backdrop{--un-rotate:0;--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-scale-x:1;--un-scale-y:1;--un-scale-z:1;--un-skew-x:0;--un-skew-y:0;--un-translate-x:0;--un-translate-y:0;--un-translate-z:0;--un-pan-x: ;--un-pan-y: ;--un-pinch-zoom: ;--un-scroll-snap-strictness:proximity;--un-ordinal: ;--un-slashed-zero: ;--un-numeric-figure: ;--un-numeric-spacing: ;--un-numeric-fraction: ;--un-border-spacing-x:0;--un-border-spacing-y:0;--un-ring-offset-shadow:0 0 rgb(0 0 0 / 0);--un-ring-shadow:0 0 rgb(0 0 0 / 0);--un-shadow-inset: ;--un-shadow:0 0 rgb(0 0 0 / 0);--un-ring-inset: ;--un-ring-offset-width:0px;--un-ring-offset-color:#fff;--un-ring-width:0px;--un-ring-color:rgb(147 197 253 / 0.5);--un-blur: ;--un-brightness: ;--un-contrast: ;--un-drop-shadow: ;--un-grayscale: ;--un-hue-rotate: ;--un-invert: ;--un-saturate: ;--un-sepia: ;--un-backdrop-blur: ;--un-backdrop-brightness: ;--un-backdrop-contrast: ;--un-backdrop-grayscale: ;--un-backdrop-hue-rotate: ;--un-backdrop-invert: ;--un-backdrop-opacity: ;--un-backdrop-saturate: ;--un-backdrop-sepia: ;}.container{width:100%;}.scrollbar-none{scrollbar-width:none;}.scrollbar{--scrollbar-track:#f5f5f5;--scrollbar-thumb:#ddd;--scrollbar-width:8px;--scrollbar-height:8px;--scrollbar-track-radius:4px;--scrollbar-thumb-radius:4px;overflow:auto;}.scrollbar::-webkit-scrollbar{width:var(--scrollbar-width);height:var(--scrollbar-height);}.scrollbar::-webkit-scrollbar-thumb{background-color:var(--scrollbar-thumb);}.scrollbar::-webkit-scrollbar-track{background-color:var(--scrollbar-track);}.scrollbar-none::-webkit-scrollbar{display:none;}@media (min-width: 640px){.container{max-width:640px;}}@media (min-width: 768px){.container{max-width:768px;}}@media (min-width: 1024px){.container{max-width:1024px;}}@media (min-width: 1280px){.container{max-width:1280px;}}@media (min-width: 1536px){.container{max-width:1536px;}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0;}.pointer-events-auto{pointer-events:auto;}.data-\[disabled\]\:pointer-events-none[data-disabled],.pointer-events-none{pointer-events:none;}.disabled\:pointer-events-none:disabled{pointer-events:none;}.visible{visibility:visible;}.absolute{position:absolute;}.fixed{position:fixed;}.relative{position:relative;}.-inset-2{inset:-0.5rem;}.inset-0{inset:0;}.-inset-x-1{left:-0.25rem;right:-0.25rem;}.inset-y-0{top:0;bottom:0;}.-bottom-0\.5{bottom:-0.125rem;}.-bottom-1{bottom:-0.25rem;}.-left-1{left:-0.25rem;}.-right-\[1\.5px\]{right:-1.5px;}.-right-1{right:-0.25rem;}.-top-0\.5{top:-0.125rem;}.-top-1{top:-0.25rem;}.bottom-0{bottom:0;}.bottom-px{bottom:1px;}.left-0{left:0;}.left-0\.5{left:0.125rem;}.left-2{left:0.5rem;}.left-full{left:100%;}.right-0{right:0;}.right-1{right:0.25rem;}.right-4{right:1rem;}.right-full{right:100%;}.top-0{top:0;}.top-0\.5{top:0.125rem;}.top-1\/2{top:50%;}.top-4{top:1rem;}.z-10{z-index:10;}.z-50{z-index:50;}.grid{display:grid;}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr));}.m-2{margin:0.5rem;}.m17\.687{margin:4.42175rem;}.m5{margin:1.25rem;}.m6{margin:1.5rem;}.m9{margin:2.25rem;}.-mx-1{margin-left:-0.25rem;margin-right:-0.25rem;}.-my-1{margin-top:-0.25rem;margin-bottom:-0.25rem;}.-my-px{margin-top:-1px;margin-bottom:-1px;}.mx-1{margin-left:0.25rem;margin-right:0.25rem;}.mx-2{margin-left:0.5rem;margin-right:0.5rem;}.mx-auto{margin-left:auto;margin-right:auto;}.my-1{margin-top:0.25rem;margin-bottom:0.25rem;}.my-4{margin-top:1rem;margin-bottom:1rem;}.-ml-0\.5{margin-left:-0.125rem;}.-mr-0\.5{margin-right:-0.125rem;}.-mt-0\.5{margin-top:-0.125rem;}.-mt-1{margin-top:-0.25rem;}.mb-0\.5{margin-bottom:0.125rem;}.mb-1{margin-bottom:0.25rem;}.mb-2{margin-bottom:0.5rem;}.mb-3{margin-bottom:0.75rem;}.mb-4{margin-bottom:1rem;}.mb-8{margin-bottom:2rem;}.mb-auto{margin-bottom:auto;}.me{margin-inline-end:1rem;}.ml-1{margin-left:0.25rem;}.ml-2{margin-left:0.5rem;}.ml-4{margin-left:1rem;}.ml-auto{margin-left:auto;}.mr-0\.5{margin-right:0.125rem;}.mr-1{margin-right:0.25rem;}.mr-2{margin-right:0.5rem;}.mr-4{margin-right:1rem;}.ms{margin-inline-start:1rem;}.mt-0\.5{margin-top:0.125rem;}.mt-1{margin-top:0.25rem;}.mt-2{margin-top:0.5rem;}.mt-20{margin-top:5rem;}.mt-32{margin-top:8rem;}.mt-4{margin-top:1rem;}.mt-96{margin-top:24rem;}.mt-auto{margin-top:auto;}.block{display:block;}.size-12{width:3rem;height:3rem;}.size-16{width:4rem;height:4rem;}.size-2{width:0.5rem;height:0.5rem;}.size-28{width:7rem;height:7rem;}.size-3{width:0.75rem;height:0.75rem;}.size-3\.5{width:0.875rem;height:0.875rem;}.size-4{width:1rem;height:1rem;}.size-5{width:1.25rem;height:1.25rem;}.size-6{width:1.5rem;height:1.5rem;}.size-7{width:1.75rem;height:1.75rem;}.size-9{width:2.25rem;height:2.25rem;}.size-full{width:100%;height:100%;}.\!w-fit{width:fit-content !important;}.h-\[0\.1875rem\]{height:0.1875rem;}.h-\[22rem\]{height:22rem;}.h-\[30rem\]{height:30rem;}.h-0{height:0;}.h-1{height:0.25rem;}.h-10{height:2.5rem;}.h-11{height:2.75rem;}.h-12{height:3rem;}.h-16{height:4rem;}.h-2,.h2{height:0.5rem;}.h-3,.h3{height:0.75rem;}.h-3\.5{height:0.875rem;}.h-4{height:1rem;}.h-4\.5{height:1.125rem;}.h-5{height:1.25rem;}.h-5\.5{height:1.375rem;}.h-6{height:1.5rem;}.h-8{height:2rem;}.h-9{height:2.25rem;}.h-full{height:100%;}.h-px{height:1px;}.h-screen{height:100vh;}.max-h-\[12rem\],.max-h-48{max-height:12rem;}.max-h-52{max-height:13rem;}.max-w-\[16rem\]{max-width:16rem;}.max-w-120{max-width:30rem;}.max-w-2xl{max-width:42rem;}.max-w-3xl{max-width:48rem;}.max-w-4xl{max-width:56rem;}.max-w-full{max-width:100%;}.max-w-lg{max-width:32rem;}.min-h-\[25rem\]{min-height:25rem;}.min-w-\[2\.5rem\]{min-width:2.5rem;}.min-w-\[32rem\]{min-width:32rem;}.min-w-\[8rem\],.min-w-32{min-width:8rem;}.min-w-0{min-width:0;}.min-w-40{min-width:10rem;}.min-w-6{min-width:1.5rem;}.w-\[0\.1875rem\]{width:0.1875rem;}.w-\[2px\]{width:2px;}.w-0{width:0;}.w-1{width:0.25rem;}.w-1\.5{width:0.375rem;}.w-16{width:4rem;}.w-2{width:0.5rem;}.w-20{width:5rem;}.w-24{width:6rem;}.w-3{width:0.75rem;}.w-3\.5{width:0.875rem;}.w-4{width:1rem;}.w-40{width:10rem;}.w-48{width:12rem;}.w-52{width:13rem;}.w-56{width:14rem;}.w-72{width:18rem;}.w-80{width:20rem;}.w-full{width:100%;}.w-px{width:1px;}.w-screen{width:100vw;}.flex{display:flex;}.inline-flex{display:inline-flex;}.flex-1{flex:1 1 0%;}.flex-shrink{flex-shrink:1;}.shrink-0{flex-shrink:0;}.flex-row{flex-direction:row;}.flex-col{flex-direction:column;}.flex-col-reverse{flex-direction:column-reverse;}.flex-nowrap{flex-wrap:nowrap;}.table-auto{table-layout:auto;}.origin-\[0\,0\]{transform-origin:0,0;}.origin-\[var\(--kb-menu-content-transform-origin\)\]{transform-origin:var(--kb-menu-content-transform-origin);}.origin-top{transform-origin:top;}.origin-top-left{transform-origin:top left;}.-translate-y-1\/2{--un-translate-y:-50%;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.group[data-open='true'] .group-data-\[open\=\'true\'\]\:rotate-90,.rotate-90,.ui-closed\:rotate-90[data-closed],:where([data-closed]) .ui-closed\:rotate-90,.ui-expanded\:rotate-90[data-expanded],:where([data-expanded]) .ui-expanded\:rotate-90{--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-rotate:90deg;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.rotate-180{--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-rotate:180deg;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.ui-expanded\:-rotate-90[data-expanded],:where([data-expanded]) .ui-expanded\:-rotate-90{--un-rotate-x:0;--un-rotate-y:0;--un-rotate-z:0;--un-rotate:-90deg;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.scale-125{--un-scale-x:1.25;--un-scale-y:1.25;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.scale-150{--un-scale-x:1.5;--un-scale-y:1.5;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.hover\:scale-\[1\.02\]:hover{--un-scale-x:1.02;--un-scale-y:1.02;transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}.transform{transform:translateX(var(--un-translate-x)) translateY(var(--un-translate-y)) translateZ(var(--un-translate-z)) rotate(var(--un-rotate)) rotateX(var(--un-rotate-x)) rotateY(var(--un-rotate-y)) rotateZ(var(--un-rotate-z)) skewX(var(--un-skew-x)) skewY(var(--un-skew-y)) scaleX(var(--un-scale-x)) scaleY(var(--un-scale-y)) scaleZ(var(--un-scale-z));}@keyframes una-in{from{opacity:var(--una-enter-opacity,1);transform:translate3d(var(--una-enter-translate-x,0),var(--una-enter-translate-y,0),0) scale3d(var(--una-enter-scale,1),var(--una-enter-scale,1),var(--una-enter-scale,1)) rotate(var(--una-enter-rotate,0))}}@keyframes una-out{to{opacity:var(--una-exit-opacity,1);transform:translate3d(var(--una-exit-translate-x,0),var(--una-exit-translate-y,0),0) scale3d(var(--una-exit-scale,1),var(--una-exit-scale,1),var(--una-exit-scale,1)) rotate(var(--una-exit-rotate,0))}}@keyframes accordion-down{from { height: 0; } to { height: var(--kb-accordion-content-height); }}@keyframes accordion-up{from { height: var(--kb-accordion-content-height); } to { height: 0; }}@keyframes content-hide{from { opacity: 1; transform: scale(1); } to { opacity: 0; transform: scale(0.96); }}@keyframes content-show{from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); }}@keyframes pulse{0%, 100% {opacity:1} 50% {opacity:.5}}@keyframes spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}.animate-content-hide{animation:content-hide 0.2s ease-out 1;}.animate-pulse{animation:pulse 2s cubic-bezier(0.4,0,.6,1) infinite;}.animate-spin{animation:spin 1s linear infinite;}.data-\[expanded\]\:animate-content-show[data-expanded]{animation:content-show 0.2s ease-out 1;}.ui-closed\:animate-accordion-up[data-closed],:where([data-closed]) .ui-closed\:animate-accordion-up{animation:accordion-up 0.2s ease-out 1;}.ui-expanded\:animate-accordion-down[data-expanded],:where([data-expanded]) .ui-expanded\:animate-accordion-down{animation:accordion-down 0.2s ease-out 1;}.cursor-auto{cursor:auto;}.\*\:cursor-default > *,.cursor-default{cursor:default;}.cursor-pointer{cursor:pointer;}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed;}.cursor-ew-resize{cursor:ew-resize;}.cursor-ns-resize{cursor:ns-resize;}.cursor-nesw-resize{cursor:nesw-resize;}.cursor-nwse-resize{cursor:nwse-resize;}.touch-none{touch-action:none;}.select-all{-webkit-user-select:all;user-select:all;}.\*\:select-none > *,.select-none{-webkit-user-select:none;user-select:none;}.resize{resize:both;}.appearance-none{-webkit-appearance:none;appearance:none;}.items-start{align-items:flex-start;}.items-end{align-items:flex-end;}.items-center{align-items:center;}.items-stretch{align-items:stretch;}.justify-start{justify-content:flex-start;}.justify-end{justify-content:flex-end;}.justify-center{justify-content:center;}.justify-between{justify-content:space-between;}.gap-0\.5{gap:0.125rem;}.gap-1{gap:0.25rem;}.gap-1\.5{gap:0.375rem;}.gap-2{gap:0.5rem;}.gap-2\.5{gap:0.625rem;}.gap-3{gap:0.75rem;}.gap-4{gap:1rem;}.gap-px{gap:1px;}.gap-y-2{row-gap:0.5rem;}.\*\:space-x-1 > *>:not([hidden])~:not([hidden]){--un-space-x-reverse:0;margin-left:calc(0.25rem * calc(1 - var(--un-space-x-reverse)));margin-right:calc(0.25rem * var(--un-space-x-reverse));}.space-x-0\.5>:not([hidden])~:not([hidden]){--un-space-x-reverse:0;margin-left:calc(0.125rem * calc(1 - var(--un-space-x-reverse)));margin-right:calc(0.125rem * var(--un-space-x-reverse));}.space-x-1\.5>:not([hidden])~:not([hidden]){--un-space-x-reverse:0;margin-left:calc(0.375rem * calc(1 - var(--un-space-x-reverse)));margin-right:calc(0.375rem * var(--un-space-x-reverse));}.space-x-2>:not([hidden])~:not([hidden]){--un-space-x-reverse:0;margin-left:calc(0.5rem * calc(1 - var(--un-space-x-reverse)));margin-right:calc(0.5rem * var(--un-space-x-reverse));}.space-x-4>:not([hidden])~:not([hidden]){--un-space-x-reverse:0;margin-left:calc(1rem * calc(1 - var(--un-space-x-reverse)));margin-right:calc(1rem * var(--un-space-x-reverse));}.space-y-0\.5>:not([hidden])~:not([hidden]){--un-space-y-reverse:0;margin-top:calc(0.125rem * calc(1 - var(--un-space-y-reverse)));margin-bottom:calc(0.125rem * var(--un-space-y-reverse));}.space-y-1\.5>:not([hidden])~:not([hidden]){--un-space-y-reverse:0;margin-top:calc(0.375rem * calc(1 - var(--un-space-y-reverse)));margin-bottom:calc(0.375rem * var(--un-space-y-reverse));}.space-y-1>:not([hidden])~:not([hidden]){--un-space-y-reverse:0;margin-top:calc(0.25rem * calc(1 - var(--un-space-y-reverse)));margin-bottom:calc(0.25rem * var(--un-space-y-reverse));}.space-y-2\.5>:not([hidden])~:not([hidden]){--un-space-y-reverse:0;margin-top:calc(0.625rem * calc(1 - var(--un-space-y-reverse)));margin-bottom:calc(0.625rem * var(--un-space-y-reverse));}.space-y-2>:not([hidden])~:not([hidden]){--un-space-y-reverse:0;margin-top:calc(0.5rem * calc(1 - var(--un-space-y-reverse)));margin-bottom:calc(0.5rem * var(--un-space-y-reverse));}.space-y-4>:not([hidden])~:not([hidden]){--un-space-y-reverse:0;margin-top:calc(1rem * calc(1 - var(--un-space-y-reverse)));margin-bottom:calc(1rem * var(--un-space-y-reverse));}.space-y-5>:not([hidden])~:not([hidden]){--un-space-y-reverse:0;margin-top:calc(1.25rem * calc(1 - var(--un-space-y-reverse)));margin-bottom:calc(1.25rem * var(--un-space-y-reverse));}.divide-x-1>:not([hidden])~:not([hidden]),.divide-x>:not([hidden])~:not([hidden]){--un-divide-x-reverse:0;border-left-width:calc(1px * calc(1 - var(--un-divide-x-reverse)));border-right-width:calc(1px * var(--un-divide-x-reverse));}.divide-y-1>:not([hidden])~:not([hidden]),.divide-y>:not([hidden])~:not([hidden]){--un-divide-y-reverse:0;border-top-width:calc(1px * calc(1 - var(--un-divide-y-reverse)));border-bottom-width:calc(1px * var(--un-divide-y-reverse));}.divide-gray-5>:not([hidden])~:not([hidden]){border-color:var(--gray-5) /* var(--gray-5) */;}.divide-gray-6>:not([hidden])~:not([hidden]){border-color:var(--gray-6) /* var(--gray-6) */;}.divide-neutral-700>:not([hidden])~:not([hidden]){--un-divide-opacity:1;border-color:rgb(64 64 64 / var(--un-divide-opacity)) /* #404040 */;}.divide-neutral-800>:not([hidden])~:not([hidden]){--un-divide-opacity:1;border-color:rgb(38 38 38 / var(--un-divide-opacity)) /* #262626 */;}.divide-white\/10>:not([hidden])~:not([hidden]){border-color:rgb(255 255 255 / 0.1) /* #fff */;}.overflow-auto{overflow:auto;}.overflow-hidden{overflow:hidden;}.overflow-visible{overflow:visible;}.overflow-x-auto{overflow-x:auto;}.overflow-x-hidden{overflow-x:hidden;}.overflow-y-auto{overflow-y:auto;}.overflow-y-hidden{overflow-y:hidden;}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.text-ellipsis{text-overflow:ellipsis;}.whitespace-nowrap{white-space:nowrap;}.whitespace-pre-wrap{white-space:pre-wrap;}.break-words{overflow-wrap:break-word;}.b,.border{border-width:1px;}.border-\[1\.5px\]{border-width:1.5px;}.border-\[2\.5px\]{border-width:2.5px;}.border-0{border-width:0px;}.border-2{border-width:2px;}.file\:border-0::file-selector-button{border-width:0px;}.border-y{border-top-width:1px;border-bottom-width:1px;}.border-b{border-bottom-width:1px;}.border-l{border-left-width:1px;}.border-r{border-right-width:1px;}.group\/tab[data-selected='true'] .group-data-\[selected\=\'true\'\]\/tab\:border-transparent,.border-transparent{border-color:transparent;}.border-black{--un-border-opacity:1;border-color:rgb(0 0 0 / var(--un-border-opacity));}.border-black\/75{border-color:rgb(0 0 0 / 0.75);}.border-border{--un-border-opacity:1;border-color:hsl(var(--border) / var(--un-border-opacity));}.border-current{border-color:currentColor;}.border-gray-3{border-color:var(--gray-3);}.border-gray-5{border-color:var(--gray-5);}.border-input{--un-border-opacity:1;border-color:hsl(var(--input) / var(--un-border-opacity));}.border-mg-current{border-color:var(--mg-current);}.border-mg-focus,.border-yellow-500,.ui-expanded\:border-mg-focus[data-expanded],:where([data-expanded]) .ui-expanded\:border-mg-focus,.group:focus-within .group-focus-within\:border-mg-focus{--un-border-opacity:1;border-color:rgb(234 179 8 / var(--un-border-opacity));}.border-neutral-400{--un-border-opacity:1;border-color:rgb(163 163 163 / var(--un-border-opacity));}.border-neutral-500{--un-border-opacity:1;border-color:rgb(115 115 115 / var(--un-border-opacity));}.border-neutral-600{--un-border-opacity:1;border-color:rgb(82 82 82 / var(--un-border-opacity));}.border-neutral-700{--un-border-opacity:1;border-color:rgb(64 64 64 / var(--un-border-opacity));}.border-neutral-800{--un-border-opacity:1;border-color:rgb(38 38 38 / var(--un-border-opacity));}.border-neutral-900{--un-border-opacity:1;border-color:rgb(23 23 23 / var(--un-border-opacity));}.border-white{--un-border-opacity:1;border-color:rgb(255 255 255 / var(--un-border-opacity));}.peer:checked~.peer-checked\:border-\[\#0075FF\]{--un-border-opacity:1;border-color:rgb(0 117 255 / var(--un-border-opacity));}.focus\:border-mg-focus:focus{--un-border-opacity:1;border-color:rgb(234 179 8 / var(--un-border-opacity));}.rounded{border-radius:0.25rem;}.rounded-\[0\.0625rem\]{border-radius:0.0625rem;}.rounded-\[0\.125rem\],.rounded-sm{border-radius:0.125rem;}.rounded-\[0\.1875rem\]{border-radius:0.1875rem;}.rounded-full{border-radius:9999px;}.rounded-lg{border-radius:0.5rem;}.rounded-md{border-radius:0.375rem;}.rounded-xl{border-radius:0.75rem;}.rounded-b-sm{border-bottom-left-radius:0.125rem;border-bottom-right-radius:0.125rem;}.rounded-l{border-top-left-radius:0.25rem;border-bottom-left-radius:0.25rem;}.rounded-r{border-top-right-radius:0.25rem;border-bottom-right-radius:0.25rem;}.rounded-t{border-top-left-radius:0.25rem;border-top-right-radius:0.25rem;}.rounded-t-sm{border-top-left-radius:0.125rem;border-top-right-radius:0.125rem;}.border-none{border-style:none;}.bg-\[\#2c2c2c\]{--un-bg-opacity:1;background-color:rgb(44 44 44 / var(--un-bg-opacity)) /* #2c2c2c */;}.bg-background{--un-bg-opacity:1;background-color:hsl(var(--background) / var(--un-bg-opacity)) /* hsl(var(--background)) */;}.bg-background\/80{background-color:hsl(var(--background) / 0.8) /* hsl(var(--background)) */;}.bg-black{--un-bg-opacity:1;background-color:rgb(0 0 0 / var(--un-bg-opacity)) /* #000 */;}.bg-black\/30{background-color:rgb(0 0 0 / 0.3) /* #000 */;}.bg-black\/40{background-color:rgb(0 0 0 / 0.4) /* #000 */;}.bg-black\/75{background-color:rgb(0 0 0 / 0.75) /* #000 */;}.bg-blue-600,.ui-highlighted\:bg-blue-6[data-highlighted],:where([data-highlighted]) .ui-highlighted\:bg-blue-6,.ui-highlighted\:bg-blue-600[data-highlighted],:where([data-highlighted]) .ui-highlighted\:bg-blue-600{--un-bg-opacity:1;background-color:rgb(37 99 235 / var(--un-bg-opacity)) /* #2563eb */;}.bg-current{background-color:currentColor /* currentColor */;}.bg-destructive{--un-bg-opacity:1;background-color:hsl(var(--destructive) / var(--un-bg-opacity)) /* hsl(var(--destructive)) */;}.bg-emerald-700{--un-bg-opacity:1;background-color:rgb(4 120 87 / var(--un-bg-opacity)) /* #047857 */;}.bg-gray-1{background-color:var(--gray-1) /* var(--gray-1) */;}.bg-gray-12{background-color:var(--gray-12) /* var(--gray-12) */;}.bg-gray-2,.dark .dark\:bg-gray-2,.data-\[selected\=\'true\'\]\:bg-gray-2[data-selected='true']{background-color:var(--gray-2) /* var(--gray-2) */;}.bg-gray-3,.data-\[selected\=\'true\'\]\:bg-gray-3[data-selected='true']{background-color:var(--gray-3) /* var(--gray-3) */;}.bg-gray-4{background-color:var(--gray-4) /* var(--gray-4) */;}.bg-gray-6,.data-\[zoomed\=\'true\'\]\:bg-gray-6[data-zoomed='true']{background-color:var(--gray-6) /* var(--gray-6) */;}.bg-green-600{--un-bg-opacity:1;background-color:rgb(22 163 74 / var(--un-bg-opacity)) /* #16a34a */;}.bg-inherit{background-color:inherit /* inherit */;}.bg-mg-base{--un-bg-opacity:1;background-color:rgb(105 105 105 / var(--un-bg-opacity)) /* #696969 */;}.bg-mg-current{background-color:var(--mg-current) /* var(--mg-current) */;}.bg-mg-event{--un-bg-opacity:1;background-color:rgb(194 0 0 / var(--un-bg-opacity)) /* #C20000 */;}.bg-mg-exec{--un-bg-opacity:1;background-color:rgb(33 99 235 / var(--un-bg-opacity)) /* #2163EB */;}.bg-mg-focus{--un-bg-opacity:1;background-color:rgb(234 179 8 / var(--un-bg-opacity)) /* #eab308 */;}.bg-mg-focus\/20{background-color:rgb(234 179 8 / 0.2) /* #eab308 */;}.bg-mg-graph,.bg-neutral-800{--un-bg-opacity:1;background-color:rgb(38 38 38 / var(--un-bg-opacity)) /* #262626 */;}.bg-mg-pure{--un-bg-opacity:1;background-color:rgb(0 142 98 / var(--un-bg-opacity)) /* #008E62 */;}.bg-mg-string{--un-bg-opacity:1;background-color:rgb(218 86 151 / var(--un-bg-opacity)) /* #DA5697 */;}.bg-muted{--un-bg-opacity:1;background-color:hsl(var(--muted) / var(--un-bg-opacity)) /* hsl(var(--muted)) */;}.bg-neutral-300\/5{background-color:rgb(212 212 212 / 0.05) /* #d4d4d4 */;}.bg-neutral-500{--un-bg-opacity:1;background-color:rgb(115 115 115 / var(--un-bg-opacity)) /* #737373 */;}.bg-neutral-600{--un-bg-opacity:1;background-color:rgb(82 82 82 / var(--un-bg-opacity)) /* #525252 */;}.bg-neutral-700,.data-\[active\=true\]\:bg-neutral-700[data-active=true]{--un-bg-opacity:1;background-color:rgb(64 64 64 / var(--un-bg-opacity)) /* #404040 */;}.bg-neutral-900{--un-bg-opacity:1;background-color:rgb(23 23 23 / var(--un-bg-opacity)) /* #171717 */;}.bg-popover{--un-bg-opacity:1;background-color:hsl(var(--popover) / var(--un-bg-opacity)) /* hsl(var(--popover)) */;}.bg-primary{--un-bg-opacity:1;background-color:hsl(var(--primary) / var(--un-bg-opacity)) /* hsl(var(--primary)) */;}.bg-red-600{--un-bg-opacity:1;background-color:rgb(220 38 38 / var(--un-bg-opacity)) /* #dc2626 */;}.bg-red-700{--un-bg-opacity:1;background-color:rgb(185 28 28 / var(--un-bg-opacity)) /* #b91c1c */;}.bg-secondary{--un-bg-opacity:1;background-color:hsl(var(--secondary) / var(--un-bg-opacity)) /* hsl(var(--secondary)) */;}.bg-transparent{background-color:transparent /* transparent */;}.bg-white{--un-bg-opacity:1;background-color:rgb(255 255 255 / var(--un-bg-opacity)) /* #fff */;}.bg-white\/10,.ui-expanded\:bg-white\/10[data-expanded],:where([data-expanded]) .ui-expanded\:bg-white\/10,.ui-highlighted\:bg-white\/10[data-highlighted],:where([data-highlighted]) .ui-highlighted\:bg-white\/10{background-color:rgb(255 255 255 / 0.1) /* #fff */;}.bg-white\/20{background-color:rgb(255 255 255 / 0.2) /* #fff */;}.bg-white\/50{background-color:rgb(255 255 255 / 0.5) /* #fff */;}.bg-white\/85{background-color:rgb(255 255 255 / 0.85) /* #fff */;}.bg-yellow-500\/10{background-color:rgb(234 179 8 / 0.1) /* #eab308 */;}.bg-yellow-600{--un-bg-opacity:1;background-color:rgb(202 138 4 / var(--un-bg-opacity)) /* #ca8a04 */;}.dark .dark\:bg-black\/25{background-color:rgb(0 0 0 / 0.25) /* #000 */;}.data-\[expanded\]\:bg-accent[data-expanded],.data-\[state\=open\]\:bg-accent[data-state=open],.ui-highlighted\:bg-accent[data-highlighted],:where([data-highlighted]) .ui-highlighted\:bg-accent{--un-bg-opacity:1;background-color:hsl(var(--accent) / var(--un-bg-opacity)) /* hsl(var(--accent)) */;}.peer:checked~.peer-checked\:bg-\[\#0075FF\]{--un-bg-opacity:1;background-color:rgb(0 117 255 / var(--un-bg-opacity)) /* #0075FF */;}.hover\:bg-accent:hover{--un-bg-opacity:1;background-color:hsl(var(--accent) / var(--un-bg-opacity)) /* hsl(var(--accent)) */;}.hover\:bg-blue-600:hover{--un-bg-opacity:1;background-color:rgb(37 99 235 / var(--un-bg-opacity)) /* #2563eb */;}.hover\:bg-destructive\/80:hover{background-color:hsl(var(--destructive) / 0.8) /* hsl(var(--destructive)) */;}.hover\:bg-destructive\/90:hover{background-color:hsl(var(--destructive) / 0.9) /* hsl(var(--destructive)) */;}.hover\:bg-gray-11:hover{background-color:var(--gray-11) /* var(--gray-11) */;}.hover\:bg-gray-2:hover{background-color:var(--gray-2) /* var(--gray-2) */;}.hover\:bg-gray-3:hover{background-color:var(--gray-3) /* var(--gray-3) */;}.hover\:bg-gray-6:hover{background-color:var(--gray-6) /* var(--gray-6) */;}.hover\:bg-primary\/80:hover{background-color:hsl(var(--primary) / 0.8) /* hsl(var(--primary)) */;}.hover\:bg-primary\/90:hover{background-color:hsl(var(--primary) / 0.9) /* hsl(var(--primary)) */;}.hover\:bg-secondary\/80:hover{background-color:hsl(var(--secondary) / 0.8) /* hsl(var(--secondary)) */;}.hover\:bg-white\/10:hover{background-color:rgb(255 255 255 / 0.1) /* #fff */;}.hover\:bg-white\/20:hover{background-color:rgb(255 255 255 / 0.2) /* #fff */;}.hover\:bg-white\/30:hover{background-color:rgb(255 255 255 / 0.3) /* #fff */;}.not-disabled\:hover\:bg-gray-3:hover:not(:disabled){background-color:var(--gray-3) /* var(--gray-3) */;}.focus\:bg-accent:focus{--un-bg-opacity:1;background-color:hsl(var(--accent) / var(--un-bg-opacity)) /* hsl(var(--accent)) */;}.focus-visible\:bg-gray-6:focus-visible{background-color:var(--gray-6) /* var(--gray-6) */;}.active\:bg-white\/10:active{background-color:rgb(255 255 255 / 0.1) /* #fff */;}.enabled\:focus-visible\:bg-gray-3:focus-visible:enabled{background-color:var(--gray-3) /* var(--gray-3) */;}.enabled\:focus-visible\:bg-red-3:focus-visible:enabled{background-color:var(--red-3) /* var(--red-3) */;}.enabled\:hover\:bg-gray-3:hover:enabled{background-color:var(--gray-3) /* var(--gray-3) */;}.enabled\:hover\:bg-red-3:hover:enabled{background-color:var(--red-3) /* var(--red-3) */;}.disabled\:bg-gray-10:disabled{background-color:var(--gray-10) /* var(--gray-10) */;}.disabled\:bg-gray-3:disabled{background-color:var(--gray-3) /* var(--gray-3) */;}.disabled\:bg-neutral-300:disabled{--un-bg-opacity:1;background-color:rgb(212 212 212 / var(--un-bg-opacity)) /* #d4d4d4 */;}.disabled\:bg-red-3:disabled{background-color:var(--red-3) /* var(--red-3) */;}.file\:bg-transparent::file-selector-button{background-color:transparent /* transparent */;}.from-transparent{--un-gradient-from-position:0%;--un-gradient-from:transparent var(--un-gradient-from-position);--un-gradient-to-position:100%;--un-gradient-to:rgb(255 255 255 / 0) var(--un-gradient-to-position);--un-gradient-stops:var(--un-gradient-from), var(--un-gradient-to);}.bg-gradient-to-current{--un-gradient-to-position:100%;--un-gradient-to:currentColor var(--un-gradient-to-position);}.to-20\%{--un-gradient-to-position:20%;}.bg-gradient-to-r{--un-gradient-shape:to right in oklch;--un-gradient:var(--un-gradient-shape), var(--un-gradient-stops);background-image:linear-gradient(var(--un-gradient));}.fill-current{fill:currentColor /* currentColor */;}.stroke-2{stroke-width:2px;}.object-contain{object-fit:contain;}.p-0{padding:0;}.p-0\.5{padding:0.125rem;}.p-1{padding:0.25rem;}.p-1\.5{padding:0.375rem;}.p-2{padding:0.5rem;}.p-4{padding:1rem;}.p-6{padding:1.5rem;}.p-8{padding:2rem;}.p\[index\]{padding:index;}.-py-1{padding-top:-0.25rem;padding-bottom:-0.25rem;}.px,.px-4{padding-left:1rem;padding-right:1rem;}.px-1{padding-left:0.25rem;padding-right:0.25rem;}.px-1\.5{padding-left:0.375rem;padding-right:0.375rem;}.px-1\.75{padding-left:0.4375rem;padding-right:0.4375rem;}.px-2{padding-left:0.5rem;padding-right:0.5rem;}.px-2\.5{padding-left:0.625rem;padding-right:0.625rem;}.px-3{padding-left:0.75rem;padding-right:0.75rem;}.py-0\.5{padding-top:0.125rem;padding-bottom:0.125rem;}.py-1{padding-top:0.25rem;padding-bottom:0.25rem;}.py-1\.5{padding-top:0.375rem;padding-bottom:0.375rem;}.py-10{padding-top:2.5rem;padding-bottom:2.5rem;}.py-2{padding-top:0.5rem;padding-bottom:0.5rem;}.py-px{padding-top:1px;padding-bottom:1px;}.\!pl-1\.5{padding-left:0.375rem !important;}.pb-1{padding-bottom:0.25rem;}.pb-2{padding-bottom:0.5rem;}.pl-0\.5{padding-left:0.125rem;}.pl-1{padding-left:0.25rem;}.pl-1\.5{padding-left:0.375rem;}.pl-2{padding-left:0.5rem;}.pl-3{padding-left:0.75rem;}.pl-8{padding-left:2rem;}.pr-1{padding-right:0.25rem;}.pr-2{padding-right:0.5rem;}.pr-4{padding-right:1rem;}.ps{padding-inline-start:1rem;}.pt-0{padding-top:0;}.pt-1{padding-top:0.25rem;}.pt-4{padding-top:1rem;}.pt-6{padding-top:1.5rem;}.first\:pt-0:first-child{padding-top:0;}.last\:pb-0:last-child{padding-bottom:0;}.text-center{text-align:center;}.text-left{text-align:left;}.\!text-right{text-align:right !important;}.text-nowrap{text-wrap:nowrap;}.text-\[12px\]{font-size:12px;}.text-2xl{font-size:1.5rem;line-height:2rem;}.text-3xl{font-size:1.875rem;line-height:2.25rem;}.text-4xl{font-size:2.25rem;line-height:2.5rem;}.text-5xl{font-size:3rem;line-height:1;}.text-base{font-size:1rem;line-height:1.5rem;}.text-lg{font-size:1.125rem;line-height:1.75rem;}.text-sm{font-size:0.875rem;line-height:1.25rem;}.text-xl{font-size:1.25rem;line-height:1.75rem;}.text-xs{font-size:0.75rem;line-height:1rem;}.file\:text-sm::file-selector-button{font-size:0.875rem;line-height:1.25rem;}.data-\[expanded\]\:text-muted-foreground[data-expanded],.text-muted-foreground{--un-text-opacity:1;color:hsl(var(--muted-foreground) / var(--un-text-opacity)) /* hsl(var(--muted-foreground)) */;}.data-\[zoomed\=\'true\'\]\:text-gray-12[data-zoomed='true'],.text-gray-12{color:var(--gray-12) /* var(--gray-12) */;}.text-black{--un-text-opacity:1;color:rgb(0 0 0 / var(--un-text-opacity)) /* #000 */;}.text-blue-500{--un-text-opacity:1;color:rgb(59 130 246 / var(--un-text-opacity)) /* #3b82f6 */;}.text-destructive-foreground{--un-text-opacity:1;color:hsl(var(--destructive-foreground) / var(--un-text-opacity)) /* hsl(var(--destructive-foreground)) */;}.text-foreground{--un-text-opacity:1;color:hsl(var(--foreground) / var(--un-text-opacity)) /* hsl(var(--foreground)) */;}.text-gray-1{color:var(--gray-1) /* var(--gray-1) */;}.text-gray-11{color:var(--gray-11) /* var(--gray-11) */;}.text-gray-2{color:var(--gray-2) /* var(--gray-2) */;}.text-gray-200{--un-text-opacity:1;color:rgb(229 231 235 / var(--un-text-opacity)) /* #e5e7eb */;}.text-gray-3{color:var(--gray-3) /* var(--gray-3) */;}.text-gray-300{--un-text-opacity:1;color:rgb(209 213 219 / var(--un-text-opacity)) /* #d1d5db */;}.text-gray-400{--un-text-opacity:1;color:rgb(156 163 175 / var(--un-text-opacity)) /* #9ca3af */;}.text-green-600{--un-text-opacity:1;color:rgb(22 163 74 / var(--un-text-opacity)) /* #16a34a */;}.text-neutral-100{--un-text-opacity:1;color:rgb(245 245 245 / var(--un-text-opacity)) /* #f5f5f5 */;}.text-neutral-300{--un-text-opacity:1;color:rgb(212 212 212 / var(--un-text-opacity)) /* #d4d4d4 */;}.text-neutral-400{--un-text-opacity:1;color:rgb(163 163 163 / var(--un-text-opacity)) /* #a3a3a3 */;}.text-pink-500{--un-text-opacity:1;color:rgb(236 72 153 / var(--un-text-opacity)) /* #ec4899 */;}.text-popover-foreground{--un-text-opacity:1;color:hsl(var(--popover-foreground) / var(--un-text-opacity)) /* hsl(var(--popover-foreground)) */;}.text-primary{--un-text-opacity:1;color:hsl(var(--primary) / var(--un-text-opacity)) /* hsl(var(--primary)) */;}.text-primary-foreground{--un-text-opacity:1;color:hsl(var(--primary-foreground) / var(--un-text-opacity)) /* hsl(var(--primary-foreground)) */;}.text-red-10{color:var(--red-10) /* var(--red-10) */;}.text-red-300{--un-text-opacity:1;color:rgb(252 165 165 / var(--un-text-opacity)) /* #fca5a5 */;}.text-red-500{--un-text-opacity:1;color:rgb(239 68 68 / var(--un-text-opacity)) /* #ef4444 */;}.text-red-600{--un-text-opacity:1;color:rgb(220 38 38 / var(--un-text-opacity)) /* #dc2626 */;}.text-secondary-foreground{--un-text-opacity:1;color:hsl(var(--secondary-foreground) / var(--un-text-opacity)) /* hsl(var(--secondary-foreground)) */;}.text-teal-300{--un-text-opacity:1;color:rgb(94 234 212 / var(--un-text-opacity)) /* #5eead4 */;}.text-transparent{color:transparent /* transparent */;}.text-white,.ui-selected\:text-white[data-selected],:where([data-selected]) .ui-selected\:text-white{--un-text-opacity:1;color:rgb(255 255 255 / var(--un-text-opacity)) /* #fff */;}.text-white\/50{color:rgb(255 255 255 / 0.5) /* #fff */;}.text-yellow-500{--un-text-opacity:1;color:rgb(234 179 8 / var(--un-text-opacity)) /* #eab308 */;}.ui-highlighted\:text-accent-foreground[data-highlighted],:where([data-highlighted]) .ui-highlighted\:text-accent-foreground{--un-text-opacity:1;color:hsl(var(--accent-foreground) / var(--un-text-opacity)) /* hsl(var(--accent-foreground)) */;}.hover\:text-\[\#4078c0\]:hover{--un-text-opacity:1;color:rgb(64 120 192 / var(--un-text-opacity)) /* #4078c0 */;}.hover\:text-\[\#7289da\]:hover{--un-text-opacity:1;color:rgb(114 137 218 / var(--un-text-opacity)) /* #7289da */;}.hover\:text-accent-foreground:hover{--un-text-opacity:1;color:hsl(var(--accent-foreground) / var(--un-text-opacity)) /* hsl(var(--accent-foreground)) */;}.hover\:text-gray-12:hover{color:var(--gray-12) /* var(--gray-12) */;}.hover\:text-neutral-500:hover{--un-text-opacity:1;color:rgb(115 115 115 / var(--un-text-opacity)) /* #737373 */;}.hover\:text-white:hover{--un-text-opacity:1;color:rgb(255 255 255 / var(--un-text-opacity)) /* #fff */;}.focus\:text-accent-foreground:focus{--un-text-opacity:1;color:hsl(var(--accent-foreground) / var(--un-text-opacity)) /* hsl(var(--accent-foreground)) */;}.enabled\:focus-visible\:text-gray-12:focus-visible:enabled{color:var(--gray-12) /* var(--gray-12) */;}.enabled\:hover\:text-gray-12:hover:enabled{color:var(--gray-12) /* var(--gray-12) */;}.disabled\:text-gray-10:disabled{color:var(--gray-10) /* var(--gray-10) */;}.disabled\:text-red-9:disabled{color:var(--red-9) /* var(--red-9) */;}.placeholder\:text-muted-foreground::placeholder{--un-text-opacity:1;color:hsl(var(--muted-foreground) / var(--un-text-opacity)) /* hsl(var(--muted-foreground)) */;}.placeholder\:text-white\/60::placeholder{color:rgb(255 255 255 / 0.6) /* #fff */;}.text-inherit{color:inherit;}.font-black{font-weight:900;}.font-bold{font-weight:700;}.font-light{font-weight:300;}.font-medium{font-weight:500;}.font-semibold{font-weight:600;}.file\:font-medium::file-selector-button{font-weight:500;}.leading-5{line-height:1.25rem;}.leading-none{line-height:1;}.tracking-tight{letter-spacing:-0.025em;}.tracking-widest{letter-spacing:0.1em;}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;}.font-sans{font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";}.font-italic,.italic{font-style:italic;}.underline{text-decoration-line:underline;}.hover\:underline:hover{text-decoration-line:underline;}.underline-offset-4{text-underline-offset:4px;}.disabled\:hover\:no-underline:hover:disabled{text-decoration:none;}.tab{-moz-tab-size:4;-o-tab-size:4;tab-size:4;}.group\/bar[data-focused='true'] .group-data-\[focused\=\'true\'\]\/bar\:opacity-100,.opacity-100,.group:hover .group-hover\:opacity-100,.group\/bar:hover .group-hover\/bar\:opacity-100,.group\/field:hover .group-hover\/field\:opacity-100,.group\/item:hover .group-hover\/item\:opacity-100,.group\/tab:hover .group-hover\/tab\:opacity-100,.group\/variant:hover .group-hover\/variant\:opacity-100{opacity:1;}.data-\[dim\=true\]\:opacity-20[data-dim=true]{opacity:0.2;}.data-\[disabled\]\:opacity-50[data-disabled],.opacity-50{opacity:0.5;}.opacity-0{opacity:0;}.opacity-60{opacity:0.6;}.opacity-70{opacity:0.7;}.focus-within\:opacity-100:focus-within{opacity:1;}.hover\:opacity-100:hover{opacity:1;}.focus\:opacity-100:focus{opacity:1;}.focus-visible\:opacity-100:focus-visible{opacity:1;}.disabled\:opacity-50:disabled{opacity:0.5;}.shadow{--un-shadow:var(--un-shadow-inset) 0 1px 3px 0 var(--un-shadow-color, rgb(0 0 0 / 0.1)),var(--un-shadow-inset) 0 1px 2px -1px var(--un-shadow-color, rgb(0 0 0 / 0.1));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.shadow-lg{--un-shadow:var(--un-shadow-inset) 0 10px 15px -3px var(--un-shadow-color, rgb(0 0 0 / 0.1)),var(--un-shadow-inset) 0 4px 6px -4px var(--un-shadow-color, rgb(0 0 0 / 0.1));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.shadow-md{--un-shadow:var(--un-shadow-inset) 0 4px 6px -1px var(--un-shadow-color, rgb(0 0 0 / 0.1)),var(--un-shadow-inset) 0 2px 4px -2px var(--un-shadow-color, rgb(0 0 0 / 0.1));box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.outline-\[0\.1px\]{outline-width:0.1px;}.focus-visible\:outline-1\.5:focus-visible{outline-width:1.5px;}.enabled\:focus-visible\:outline-1:focus-visible:enabled{outline-width:1px;}.focus-visible\:outline-transparent:focus-visible{outline-color:transparent /* transparent */;}.focus-visible\:outline-yellow-400:focus-visible{--un-outline-color-opacity:1;outline-color:rgb(250 204 21 / var(--un-outline-color-opacity)) /* #facc15 */;}.focus-visible\:outline-yellow-5:focus-visible{--un-outline-color-opacity:1;outline-color:rgb(234 179 8 / var(--un-outline-color-opacity)) /* #eab308 */;}.outline-offset-1{outline-offset:1px;}.outline-offset-3{outline-offset:3px;}.enabled\:focus-visible\:outline-offset-0:focus-visible:enabled{outline-offset:0px;}.outline{outline-style:solid;}.focus-visible\:outline:focus-visible{outline-style:solid;}.focus-visible\:outline-solid:focus-visible{outline-style:solid;}.outline-none{outline:2px solid transparent;outline-offset:2px;}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px;}.focus-visible\:outline-none:focus-visible{outline:2px solid transparent;outline-offset:2px;}.ring-1{--un-ring-width:1px;--un-ring-offset-shadow:var(--un-ring-inset) 0 0 0 var(--un-ring-offset-width) var(--un-ring-offset-color);--un-ring-shadow:var(--un-ring-inset) 0 0 0 calc(var(--un-ring-width) + var(--un-ring-offset-width)) var(--un-ring-color);box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.ring-2,.peer:focus-visible~.peer-focus-visible\:ring-2{--un-ring-width:2px;--un-ring-offset-shadow:var(--un-ring-inset) 0 0 0 var(--un-ring-offset-width) var(--un-ring-offset-color);--un-ring-shadow:var(--un-ring-inset) 0 0 0 calc(var(--un-ring-width) + var(--un-ring-offset-width)) var(--un-ring-color);box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.focus\:ring-0:focus{--un-ring-width:0px;--un-ring-offset-shadow:var(--un-ring-inset) 0 0 0 var(--un-ring-offset-width) var(--un-ring-offset-color);--un-ring-shadow:var(--un-ring-inset) 0 0 0 calc(var(--un-ring-width) + var(--un-ring-offset-width)) var(--un-ring-color);box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.focus\:ring-1:focus{--un-ring-width:1px;--un-ring-offset-shadow:var(--un-ring-inset) 0 0 0 var(--un-ring-offset-width) var(--un-ring-offset-color);--un-ring-shadow:var(--un-ring-inset) 0 0 0 calc(var(--un-ring-width) + var(--un-ring-offset-width)) var(--un-ring-color);box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.focus\:ring-2:focus{--un-ring-width:2px;--un-ring-offset-shadow:var(--un-ring-inset) 0 0 0 var(--un-ring-offset-width) var(--un-ring-offset-color);--un-ring-shadow:var(--un-ring-inset) 0 0 0 calc(var(--un-ring-width) + var(--un-ring-offset-width)) var(--un-ring-color);box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.focus-visible\:ring-1:focus-visible{--un-ring-width:1px;--un-ring-offset-shadow:var(--un-ring-inset) 0 0 0 var(--un-ring-offset-width) var(--un-ring-offset-color);--un-ring-shadow:var(--un-ring-inset) 0 0 0 calc(var(--un-ring-width) + var(--un-ring-offset-width)) var(--un-ring-color);box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.focus-visible\:ring-2:focus-visible{--un-ring-width:2px;--un-ring-offset-shadow:var(--un-ring-inset) 0 0 0 var(--un-ring-offset-width) var(--un-ring-offset-color);--un-ring-shadow:var(--un-ring-inset) 0 0 0 calc(var(--un-ring-width) + var(--un-ring-offset-width)) var(--un-ring-color);box-shadow:var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}.focus\:ring-offset-2:focus{--un-ring-offset-width:2px;}.focus-visible\:ring-offset-2:focus-visible{--un-ring-offset-width:2px;}.ring-gray-6{--un-ring-color:var(--gray-6) /* var(--gray-6) */;}.ring-mg-focus,.ring-yellow-500{--un-ring-opacity:1;--un-ring-color:rgb(234 179 8 / var(--un-ring-opacity)) /* #eab308 */;}.ring-red-9{--un-ring-color:var(--red-9) /* var(--red-9) */;}.ring-white{--un-ring-opacity:1;--un-ring-color:rgb(255 255 255 / var(--un-ring-opacity)) /* #fff */;}.focus\:ring-mg-focus:focus{--un-ring-opacity:1;--un-ring-color:rgb(234 179 8 / var(--un-ring-opacity)) /* #eab308 */;}.focus\:ring-ring:focus{--un-ring-opacity:1;--un-ring-color:hsl(var(--ring) / var(--un-ring-opacity)) /* hsl(var(--ring)) */;}.focus\:ring-yellow-5:focus{--un-ring-opacity:1;--un-ring-color:rgb(234 179 8 / var(--un-ring-opacity)) /* #eab308 */;}.focus-visible\:ring-ring:focus-visible{--un-ring-opacity:1;--un-ring-color:hsl(var(--ring) / var(--un-ring-opacity)) /* hsl(var(--ring)) */;}.focus-visible\:ring-yellow:focus-visible{--un-ring-opacity:1;--un-ring-color:rgb(250 204 21 / var(--un-ring-opacity)) /* #facc15 */;}.ring-offset-background{--un-ring-offset-opacity:1;--un-ring-offset-color:hsl(var(--background) / var(--un-ring-offset-opacity)) /* hsl(var(--background)) */;}.focus-visible\:ring-inset:focus-visible{--un-ring-inset:inset;}.backdrop-blur-sm{--un-backdrop-blur:blur(4px);-webkit-backdrop-filter:var(--un-backdrop-blur) var(--un-backdrop-brightness) var(--un-backdrop-contrast) var(--un-backdrop-grayscale) var(--un-backdrop-hue-rotate) var(--un-backdrop-invert) var(--un-backdrop-opacity) var(--un-backdrop-saturate) var(--un-backdrop-sepia);backdrop-filter:var(--un-backdrop-blur) var(--un-backdrop-brightness) var(--un-backdrop-contrast) var(--un-backdrop-grayscale) var(--un-backdrop-hue-rotate) var(--un-backdrop-invert) var(--un-backdrop-opacity) var(--un-backdrop-saturate) var(--un-backdrop-sepia);}.blur{--un-blur:blur(8px);filter:var(--un-blur) var(--un-brightness) var(--un-contrast) var(--un-drop-shadow) var(--un-grayscale) var(--un-hue-rotate) var(--un-invert) var(--un-saturate) var(--un-sepia);}.invert{--un-invert:invert(1);filter:var(--un-blur) var(--un-brightness) var(--un-contrast) var(--un-drop-shadow) var(--un-grayscale) var(--un-hue-rotate) var(--un-invert) var(--un-saturate) var(--un-sepia);}.filter{filter:var(--un-blur) var(--un-brightness) var(--un-contrast) var(--un-drop-shadow) var(--un-grayscale) var(--un-hue-rotate) var(--un-invert) var(--un-saturate) var(--un-sepia);}.data-\[resizing\=\'false\'\]\:transition-\[transform\,width\][data-resizing='false']{transition-property:transform,width;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;}.data-\[resizing\=\'false\'\]\:transition-transform[data-resizing='false'],.transition-transform{transition-property:transform;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;}.transition-color{transition-property:color;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;}.transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;}.transition-opacity{transition-property:opacity;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;}.duration-100{transition-duration:100ms;}.duration-200{transition-duration:200ms;}.duration-50{transition-duration:50ms;}.ease{transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);}.ease-out{transition-timing-function:cubic-bezier(0, 0, 0.2, 1);}.transition-none{transition:none;}.data-\[expanded\]\:fade-in-0[data-expanded],.data-\[loading\=\'true\'\]\:fade-in[data-loading='true'],.data-\[open\=\'true\'\]\:fade-in[data-open='true'],.fade-in,.ui-expanded\:fade-in[data-expanded],:where([data-expanded]) .ui-expanded\:fade-in{--una-enter-opacity:0;}.data-\[closed\]\:fade-out-0[data-closed],.data-\[loading\=\'false\'\]\:fade-out[data-loading='false'],.data-\[open\=\'false\'\]\:fade-out[data-open='false'],.ui-closed\:fade-out[data-closed],:where([data-closed]) .ui-closed\:fade-out,.ui-expanded\:fade-out[data-expanded],:where([data-expanded]) .ui-expanded\:fade-out{--una-exit-opacity:0;}.data-\[expanded\]\:zoom-in-95[data-expanded],.data-\[open\=\'true\'\]\:zoom-in-95[data-open='true'],.ui-expanded\:zoom-in-95[data-expanded],:where([data-expanded]) .ui-expanded\:zoom-in-95,.zoom-in-95{--una-enter-scale:0.95;}.data-\[closed\]\:zoom-out-95[data-closed],.data-\[open\=\'false\'\]\:zoom-out-95[data-open='false'],.ui-closed\:zoom-out-95[data-closed],:where([data-closed]) .ui-closed\:zoom-out-95{--una-exit-scale:0.95;}.slide-in-from-left-4{--una-enter-translate-x:-1rem;}.slide-in-from-right-4{--una-enter-translate-x:1rem;}.slide-in-from-top-1,.ui-expanded\:slide-in-from-top-1[data-expanded],:where([data-expanded]) .ui-expanded\:slide-in-from-top-1{--una-enter-translate-y:-0.25rem;}.ui-expanded\:slide-in-from-right-0\.5[data-expanded],:where([data-expanded]) .ui-expanded\:slide-in-from-right-0\.5{--una-enter-translate-x:0.125rem;}.ui-closed\:slide-out-to-right-0\.5[data-closed],:where([data-closed]) .ui-closed\:slide-out-to-right-0\.5{--una-exit-translate-x:0.125rem;}.ui-closed\:slide-out-to-top-1[data-closed],:where([data-closed]) .ui-closed\:slide-out-to-top-1{--una-exit-translate-y:-0.25rem;}.hidden{display:none;}@media (hover: hover) and (pointer: fine){.\@hover-bg-current:hover{background-color:currentColor /* currentColor */;}.\@hover-bg-gray-5:hover{background-color:var(--gray-5) /* var(--gray-5) */;}.\@hover-bg-gray-6\/10:hover{background-color:var(--gray-6) /* var(--gray-6) */;}.\@hover-bg-white\/10:hover{background-color:rgb(255 255 255 / 0.1) /* #fff */;}.\@hover-fill-current:hover{fill:currentColor /* currentColor */;}}@media (min-width: 640px){.sm\:flex-row{flex-direction:row;}.sm\:items-center{align-items:center;}.sm\:justify-end{justify-content:flex-end;}.sm\:space-x-2>:not([hidden])~:not([hidden]){--un-space-x-reverse:0;margin-left:calc(0.5rem * calc(1 - var(--un-space-x-reverse)));margin-right:calc(0.5rem * var(--un-space-x-reverse));}.sm\:rounded-lg{border-radius:0.5rem;}.sm\:text-left{text-align:left;}}@media (min-width: 768px){.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr));}.md\:size-40{width:10rem;height:10rem;}.md\:text-3xl{font-size:1.875rem;line-height:2.25rem;}.md\:text-6xl{font-size:3.75rem;line-height:1;}}/*@tailwind base;
@tailwind components;
@tailwind utilities;*/

@layer base {
  [data-kb-theme="light"] {
    --background: 0 0% 100%;
    --foreground: 240 10% 3.9%;

    --muted: 240 4.8% 95.9%;
    --muted-foreground: 240 3.8% 46.1%;

    --popover: 0 0% 100%;
    --popover-foreground: 240 10% 3.9%;

    --border: 240 5.9% 90%;
    --input: 240 5.9% 90%;

    --card: 0 0% 100%;
    --card-foreground: 240 10% 3.9%;

    --primary: 240 5.9% 10%;
    --primary-foreground: 0 0% 98%;

    --secondary: 240 4.8% 95.9%;
    --secondary-foreground: 240 5.9% 10%;

    --accent: 240 4.8% 95.9%;
    --accent-foreground: 240 5.9% 10%;

    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 98%;

    --info: 204 94% 94%;
    --info-foreground: 199 89% 48%;

    --success: 149 80% 90%;
    --success-foreground: 160 84% 39%;

    --warning: 48 96% 89%;
    --warning-foreground: 25 95% 53%;

    --error: 0 93% 94%;
    --error-foreground: 0 84% 60%;

    --ring: 240 5.9% 10%;

    --radius: 0.5rem;
  }

  :root {
    --background: 240 10% 3.9%;
    --foreground: 0 0% 98%;

    --muted: 240 3.7% 15.9%;
    --muted-foreground: 240 5% 64.9%;

    --accent: 240 3.7% 15.9%;
    --accent-foreground: 0 0% 98%;

    --popover: 240 10% 3.9%;
    --popover-foreground: 0 0% 98%;

    --border: 240 3.7% 15.9%;
    --input: 240 3.7% 15.9%;

    --card: 240 10% 3.9%;
    --card-foreground: 0 0% 98%;

    --primary: 0 0% 98%;
    --primary-foreground: 240 5.9% 10%;

    --secondary: 240 3.7% 15.9%;
    --secondary-foreground: 0 0% 98%;

    --destructive: 0 82.8% 40.6%;
    --destructive-foreground: 0 0% 98%;

    --info: 204 94% 94%;
    --info-foreground: 199 89% 48%;

    --success: 149 80% 90%;
    --success-foreground: 160 84% 39%;

    --warning: 48 96% 89%;
    --warning-foreground: 25 95% 53%;

    --error: 0 93% 94%;
    --error-foreground: 0 84% 60%;

    --ring: 240 4.9% 83.9%;

    --radius: 0.5rem;
  }
}

* {
  border-color: hsl(var(--border));
}

body {
  color: hsl(var(--foreground));
  background-color: hsl(var(--background));
  font-feature-settings:
    "rlig" 1,
    "calt" 1;
}

@media (max-width: 640px) {
  .container {
    padding: 1rem 0;
  }
}
