/* stx role tokens — override any of these to re-theme by meaning. */
:root {
  --stx-fg: oklch(21% 0.034 264.665);
  --stx-fg-strong: oklch(37.3% 0.034 259.733);
  --stx-fg-muted: oklch(44.6% 0.03 256.802);
  --stx-fg-soft: oklch(55.1% 0.027 264.364);
  --stx-fg-subtle: oklch(70.7% 0.022 261.325);
  --stx-surface: oklch(98.5% 0.002 247.839);
  --stx-surface-raised: oklch(96.7% 0.003 264.542);
  --stx-surface-sunken: oklch(92.8% 0.006 264.531);
  --stx-line: oklch(92.8% 0.006 264.531);
  --stx-line-strong: oklch(87.2% 0.01 258.338);
  --stx-accent: oklch(51.1% 0.262 276.966);
  --stx-info: oklch(54.6% 0.245 262.881);
  --stx-danger: oklch(57.7% 0.245 27.325);
  --stx-success: oklch(62.7% 0.194 149.214);
  --stx-warning: oklch(79.5% 0.184 86.047);
  --stx-accent-solid: oklch(51.1% 0.262 276.966);
  --stx-info-solid: oklch(54.6% 0.245 262.881);
  --stx-danger-solid: oklch(57.7% 0.245 27.325);
  --stx-success-solid: oklch(62.7% 0.194 149.214);
}
.dark {
  --stx-fg: oklch(96.7% 0.003 264.542);
  --stx-fg-strong: oklch(87.2% 0.01 258.338);
  --stx-fg-muted: oklch(70.7% 0.022 261.325);
  --stx-fg-soft: oklch(70.7% 0.022 261.325);
  --stx-fg-subtle: oklch(55.1% 0.027 264.364);
  --stx-surface: oklch(27.8% 0.033 256.848);
  --stx-surface-raised: oklch(37.3% 0.034 259.733);
  --stx-surface-sunken: oklch(37.3% 0.034 259.733);
  --stx-line: oklch(37.3% 0.034 259.733);
  --stx-line-strong: oklch(44.6% 0.03 256.802);
  --stx-accent: oklch(67.3% 0.182 276.935);
  --stx-info: oklch(70.7% 0.165 254.624);
  --stx-danger: oklch(70.4% 0.191 22.216);
  --stx-success: oklch(79.2% 0.209 151.711);
  --stx-warning: oklch(85.2% 0.199 91.936);
  --stx-accent-solid: oklch(58.5% 0.233 277.117);
  --stx-info-solid: oklch(62.3% 0.214 259.815);
  --stx-danger-solid: oklch(63.7% 0.237 25.331);
  --stx-success-solid: oklch(72.3% 0.219 149.579);
}
@layer cw-base {
/*
! Tailwind CSS Preflight | MIT License | https://tailwindcss.com
*/

/*
  The fallback is a neutral grey, not currentColor.

  currentColor makes every border whose colour was never set take the TEXT
  colour, which is near-black on a light page and near-white on a dark one.
  That is never what an author means by a divider: the divide-* and
  border-width utilities set a width and no colour, so a plain divide-y
  rendered as a heavy black rule instead of a hairline.

  It also punished the obvious workaround. Setting border-color on a parent
  does not reach divide-* children, because divide targets
  "> :not([hidden]) ~ :not([hidden])" and the child declaration from this
  block wins.

  Tailwind preflight resolves this the same way (its default is gray-200).
  --border-color stays the escape hatch: set it once on :root, or per
  theme, and every uncoloured border follows.
*/
*,
::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: var(--border-color, #e5e7eb);
}

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

html,
:host {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  font-family: var(--sans);
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  line-height: inherit;
}

hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}

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

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

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

b,
strong {
  font-weight: bolder;
}

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

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  text-indent: 0;
  border-color: var(--border-color, inherit);
  border-collapse: collapse;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

button,
select {
  text-transform: none;
}

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}

:-moz-focusring {
  outline: auto;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary {
  display: list-item;
}

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;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: color-mix(in oklab, currentColor 50%, transparent);
}

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

:disabled {
  cursor: default;
}

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

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

[hidden] {
  display: none;
}
}

.min-h-screen {
  min-height: 100vh;
}

.bg-neutral-100 {
  background-color: oklch(97% 0 0);
}

.dark .dark\:bg-neutral-950 {
  background-color: oklch(14.5% 0 0);
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.max-w-sm {
  max-width: 24rem;
}

.w-full {
  width: 100%;
}

.text-center {
  text-align: center;
}

.inline-flex {
  display: inline-flex;
}

.h-12 {
  height: 3rem;
}

.w-12 {
  width: 3rem;
}

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--cw-gradient-stops));
}

.from-blue-500 {
  --cw-gradient-from: oklch(62.3% 0.214 259.815);
  --cw-gradient-to: rgb(255 255 255 / 0);
  --cw-gradient-stops: var(--cw-gradient-from), var(--cw-gradient-to);
}

.to-blue-600 {
  --cw-gradient-to: oklch(54.6% 0.245 262.881);
  --cw-gradient-stops: var(--cw-gradient-from), var(--cw-gradient-to);
}

.rounded-xl {
  border-radius: 0.75rem;
}

.shadow-blue-500\/25 {
  --cw-shadow-color: oklch(62.3% 0.214 259.815);
  --cw-shadow: var(--cw-shadow-colored);
}

.shadow-lg {
  --cw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --cw-shadow-colored: 0 10px 15px -3px var(--cw-shadow-color), 0 4px 6px -4px var(--cw-shadow-color);
  box-shadow: var(--cw-ring-offset-shadow, 0 0 #0000), var(--cw-ring-shadow, 0 0 #0000), var(--cw-shadow);
}

.h-7 {
  height: 1.75rem;
}

.w-7 {
  width: 1.75rem;
}

.text-white {
  color: #fff;
}

.i-hugeicons-cube {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M2.793 21.207c.293.293.764.293 1.707.293h10c.943 0 1.414 0 1.707-.293m-13.414 0C2.5 20.914 2.5 20.443 2.5 19.5v-10c0-.943 0-1.414.293-1.707m0 13.414l6-6m7.414 6c.293-.293.293-.764.293-1.707v-10c0-.943 0-1.414-.293-1.707m0 13.414l5-5c.293-.293.293-.764.293-1.707v-10c0-.943 0-1.414-.293-1.707m-5 5C15.914 7.5 15.443 7.5 14.5 7.5h-10c-.943 0-1.414 0-1.707.293m13.414 0l5-5m-18.414 5l5-5C8.086 2.5 8.557 2.5 9.5 2.5h10c.943 0 1.414 0 1.707.293M8.793 15.207c.293.293.764.293 1.707.293H14m-5.207-.293C8.5 14.914 8.5 14.443 8.5 13.5v-3'/%3E%3C/svg%3E") no-repeat;
  mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M2.793 21.207c.293.293.764.293 1.707.293h10c.943 0 1.414 0 1.707-.293m-13.414 0C2.5 20.914 2.5 20.443 2.5 19.5v-10c0-.943 0-1.414.293-1.707m0 13.414l6-6m7.414 6c.293-.293.293-.764.293-1.707v-10c0-.943 0-1.414-.293-1.707m0 13.414l5-5c.293-.293.293-.764.293-1.707v-10c0-.943 0-1.414-.293-1.707m-5 5C15.914 7.5 15.443 7.5 14.5 7.5h-10c-.943 0-1.414 0-1.707.293m13.414 0l5-5m-18.414 5l5-5C8.086 2.5 8.557 2.5 9.5 2.5h10c.943 0 1.414 0 1.707.293M8.793 15.207c.293.293.764.293 1.707.293H14m-5.207-.293C8.5 14.914 8.5 14.443 8.5 13.5v-3'/%3E%3C/svg%3E") no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  vertical-align: -0.125em;
}

.font-semibold {
  font-weight: 600;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-neutral-900 {
  color: oklch(20.5% 0 0);
}

.dark .dark\:text-white {
  color: #fff;
}

.text-neutral-500 {
  color: oklch(55.6% 0 0);
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.dark .dark\:text-neutral-400 {
  color: oklch(70.8% 0 0);
}

.p-6 {
  padding: 1.5rem;
}

.bg-white {
  background-color: #fff;
}

.dark .dark\:bg-neutral-900 {
  background-color: oklch(20.5% 0 0);
}

.border {
  border-width: 1px;
}

.border-neutral-200\/60 {
  border-color: oklch(92.2% 0 0 / 0.6);
}

.rounded-2xl {
  border-radius: 1rem;
}

.dark .dark\:border-neutral-800 {
  border-color: oklch(26.9% 0 0);
}

.shadow-black\/5 {
  --cw-shadow-color: rgb(0 0 0 / 0.05);
  --cw-shadow: var(--cw-shadow-colored);
}

.shadow-xl {
  --cw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --cw-shadow-colored: 0 20px 25px -5px var(--cw-shadow-color), 0 8px 10px -6px var(--cw-shadow-color);
  box-shadow: var(--cw-ring-offset-shadow, 0 0 #0000), var(--cw-ring-shadow, 0 0 #0000), var(--cw-shadow);
}

.dark .dark\:shadow-black\/20 {
  --cw-shadow-color: rgb(0 0 0 / 0.2);
  --cw-shadow: var(--cw-shadow-colored);
}

.p-3 {
  padding: 0.75rem;
}

.bg-red-50 {
  background-color: oklch(97.1% 0.013 17.38);
}

.dark .dark\:bg-red-900\/20 {
  background-color: oklch(39.6% 0.141 25.723 / 0.2);
}

.border-red-200 {
  border-color: oklch(88.5% 0.062 18.334);
}

.rounded-lg {
  border-radius: 0.5rem;
}

.dark .dark\:border-red-800 {
  border-color: oklch(44.4% 0.177 26.899);
}

.gap-2 {
  gap: 0.5rem;
}

.h-4 {
  height: 1rem;
}

.w-4 {
  width: 1rem;
}

.text-red-600 {
  color: oklch(57.7% 0.245 27.325);
}

.dark .dark\:text-red-400 {
  color: oklch(70.4% 0.191 22.216);
}

.i-hugeicons-alert-circle {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 8v4m.125 3.75H12m.25 0a.25.25 0 1 1-.5 0a.25.25 0 0 1 .5 0'/%3E%3C/g%3E%3C/svg%3E") no-repeat;
  mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 8v4m.125 3.75H12m.25 0a.25.25 0 1 1-.5 0a.25.25 0 0 1 .5 0'/%3E%3C/g%3E%3C/svg%3E") no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  vertical-align: -0.125em;
}

.block {
  display: block;
}

.font-medium {
  font-weight: 500;
}

.text-\[13px\] {
  font-size: 13px;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.text-red-500 {
  color: oklch(63.7% 0.237 25.331);
}

.relative {
  position: relative;
}

.text-stone-500 {
  color: oklch(55.3% 0.013 58.071);
}

.justify-between {
  justify-content: space-between;
}

.cursor-pointer {
  cursor: pointer;
}

.text-blue-500 {
  color: oklch(62.3% 0.214 259.815);
}

.dark .dark\:bg-neutral-800 {
  background-color: oklch(26.9% 0 0);
}

.border-neutral-300 {
  border-color: oklch(87% 0 0);
}

.rounded {
  border-radius: 0.25rem;
}

.dark .dark\:border-neutral-600 {
  border-color: oklch(43.9% 0 0);
}

.focus\:ring-blue-500\/40:focus {
  --cw-ring-color: oklch(62.3% 0.214 259.815 / 0.4);
}

.focus\:ring-offset-0:focus {
  --cw-ring-offset-width: 0px;
}

.text-neutral-600 {
  color: oklch(43.9% 0 0);
}

.text-blue-600 {
  color: oklch(54.6% 0.245 262.881);
}

.dark .dark\:text-blue-400 {
  color: oklch(70.7% 0.165 254.624);
}

.hover\:text-blue-500:hover {
  color: oklch(62.3% 0.214 259.815);
}

.dark .dark\:hover\:text-blue-300:hover {
  color: oklch(80.9% 0.105 251.813);
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-150 {
  transition-duration: 150ms;
}

.select-none {
  user-select: none;
}

.focus\:outline-none:focus {
  outline-style: none;
}

.focus-visible\:ring-2:focus-visible {
  --cw-ring-offset-shadow: var(--cw-ring-inset,) 0 0 0 var(--cw-ring-offset-width, 0px) var(--cw-ring-offset-color, #fff);
  --cw-ring-shadow: var(--cw-ring-inset,) 0 0 0 calc(2px + var(--cw-ring-offset-width, 0px)) var(--cw-ring-color, rgba(59, 130, 246, 0.5));
  box-shadow: var(--cw-ring-offset-shadow), var(--cw-ring-shadow), var(--cw-shadow, 0 0 #0000);
}

.focus-visible\:ring-blue-500\/40:focus-visible {
  --cw-ring-color: oklch(62.3% 0.214 259.815 / 0.4);
}

.focus-visible\:ring-offset-0:focus-visible {
  --cw-ring-offset-width: 0px;
}

.disabled\:opacity-40:disabled {
  opacity: 0.4;
}

.disabled\:cursor-not-allowed:disabled {
  cursor: not-allowed;
}

.disabled\:pointer-events-none:disabled {
  pointer-events: none;
}

.aria-disabled\:opacity-40[aria-disabled="true"] {
  opacity: 0.4;
}

.aria-disabled\:cursor-not-allowed[aria-disabled="true"] {
  cursor: not-allowed;
}

.aria-disabled\:pointer-events-none[aria-disabled="true"] {
  pointer-events: none;
}

.active\:scale-\[0\.98\]:active {
  transform: scale(0.98);
}

.text-\[14px\] {
  font-size: 14px;
}

.h-9 {
  height: 2.25rem;
}

.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--cw-gradient-stops));
}

.shadow-sm {
  --cw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --cw-shadow-colored: 0 1px 3px 0 var(--cw-shadow-color), 0 1px 2px -1px var(--cw-shadow-color);
  box-shadow: var(--cw-ring-offset-shadow, 0 0 #0000), var(--cw-ring-shadow, 0 0 #0000), var(--cw-shadow);
}

.shadow-blue-600\/25 {
  --cw-shadow-color: oklch(54.6% 0.245 262.881);
  --cw-shadow: var(--cw-shadow-colored);
}

.hover\:from-blue-400:hover {
  --cw-gradient-from: oklch(70.7% 0.165 254.624);
  --cw-gradient-to: rgb(255 255 255 / 0);
  --cw-gradient-stops: var(--cw-gradient-from), var(--cw-gradient-to);
}

.hover\:to-blue-500:hover {
  --cw-gradient-to: oklch(62.3% 0.214 259.815);
  --cw-gradient-stops: var(--cw-gradient-from), var(--cw-gradient-to);
}

.active\:from-blue-600:active {
  --cw-gradient-from: oklch(54.6% 0.245 262.881);
  --cw-gradient-to: rgb(255 255 255 / 0);
  --cw-gradient-stops: var(--cw-gradient-from), var(--cw-gradient-to);
}

.active\:to-blue-700:active {
  --cw-gradient-to: oklch(48.8% 0.243 264.376);
  --cw-gradient-stops: var(--cw-gradient-from), var(--cw-gradient-to);
}

.dark .dark\:from-blue-600 {
  --cw-gradient-from: oklch(54.6% 0.245 262.881);
  --cw-gradient-to: rgb(255 255 255 / 0);
  --cw-gradient-stops: var(--cw-gradient-from), var(--cw-gradient-to);
}

.dark .dark\:to-blue-700 {
  --cw-gradient-to: oklch(48.8% 0.243 264.376);
  --cw-gradient-stops: var(--cw-gradient-from), var(--cw-gradient-to);
}

.dark .dark\:hover\:from-blue-500:hover {
  --cw-gradient-from: oklch(62.3% 0.214 259.815);
  --cw-gradient-to: rgb(255 255 255 / 0);
  --cw-gradient-stops: var(--cw-gradient-from), var(--cw-gradient-to);
}

.dark .dark\:hover\:to-blue-600:hover {
  --cw-gradient-to: oklch(54.6% 0.245 262.881);
  --cw-gradient-stops: var(--cw-gradient-from), var(--cw-gradient-to);
}

.animate-spin {
  animation: spin 1s linear infinite;
}

.h-3\.5 {
  height: 0.875rem;
}

.w-3\.5 {
  width: 0.875rem;
}

.i-hugeicons-loading-03 {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-width='1.5' d='M12 3v3m0 12v3m9-9h-3M6 12H3m15.364-6.363l-2.122 2.121m-8.484 8.484l-2.121 2.121m12.727.001l-2.122-2.122M7.758 7.758L5.637 5.637'/%3E%3C/svg%3E") no-repeat;
  mask: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-width='1.5' d='M12 3v3m0 12v3m9-9h-3M6 12H3m15.364-6.363l-2.122 2.121m-8.484 8.484l-2.121 2.121m12.727.001l-2.122-2.122M7.758 7.758L5.637 5.637'/%3E%3C/svg%3E") no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  vertical-align: -0.125em;
}

.-ml-0\.5 {
  margin-left: -0.125rem;
}

.text-stone-600 {
  color: oklch(44.4% 0.011 73.639);
}

.text-\[11px\] {
  font-size: 11px;
}

.h-6 {
  height: 1.5rem;
}

.text-\[12px\] {
  font-size: 12px;
}

.h-8 {
  height: 2rem;
}

.dark .dark\:bg-white\/10 {
  background-color: rgb(255 255 255 / 0.1);
}

.text-stone-900 {
  color: oklch(21.6% 0.006 56.043);
}

.dark .dark\:text-neutral-100 {
  color: oklch(97% 0 0);
}

.placeholder\:text-stone-400::placeholder {
  color: oklch(70.9% 0.01 56.259);
}

.dark .dark\:placeholder\:text-neutral-500::placeholder {
  color: oklch(55.6% 0 0);
}

.focus\:ring-2:focus {
  --cw-ring-offset-shadow: var(--cw-ring-inset,) 0 0 0 var(--cw-ring-offset-width, 0px) var(--cw-ring-offset-color, #fff);
  --cw-ring-shadow: var(--cw-ring-inset,) 0 0 0 calc(2px + var(--cw-ring-offset-width, 0px)) var(--cw-ring-color, rgba(59, 130, 246, 0.5));
  box-shadow: var(--cw-ring-offset-shadow), var(--cw-ring-shadow), var(--cw-shadow, 0 0 #0000);
}

.focus\:ring-blue-500\/20:focus {
  --cw-ring-color: oklch(62.3% 0.214 259.815 / 0.2);
}

.border-red-400\/60 {
  border-color: oklch(70.4% 0.191 22.216 / 0.6);
}

.dark .dark\:border-red-500\/60 {
  border-color: oklch(63.7% 0.237 25.331 / 0.6);
}

.focus\:border-red-500:focus {
  border-color: oklch(63.7% 0.237 25.331);
}

.focus\:ring-red-500\/30:focus {
  --cw-ring-color: oklch(63.7% 0.237 25.331 / 0.3);
}

.border-stone-200\/80 {
  border-color: oklch(92.3% 0.003 48.717 / 0.8);
}

.dark .dark\:border-white\/15 {
  border-color: rgb(255 255 255 / 0.15);
}

.focus\:border-blue-400:focus {
  border-color: oklch(70.7% 0.165 254.624);
}

.hover\:border-stone-300:hover {
  border-color: oklch(86.9% 0.005 56.366);
}

.dark .dark\:hover\:border-white\/25:hover {
  border-color: rgb(255 255 255 / 0.25);
}

.opacity-40 {
  opacity: 0.4;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.bg-stone-50 {
  background-color: oklch(98.5% 0.001 106.423);
}

.dark .dark\:bg-white\/5 {
  background-color: rgb(255 255 255 / 0.05);
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.px-2\.5 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.px-3\.5 {
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mb-1\.5 {
  margin-bottom: 0.375rem;
}

.ml-0\.5 {
  margin-left: 0.125rem;
}

.mt-1\.5 {
  margin-top: 0.375rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mr-1\.5 {
  margin-right: 0.375rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}