:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: hsl(6, 78%, 57%);
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);

  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);

  --toastify-container-width: fit-content;
  --toastify-toast-width: 320px;
  --toastify-toast-offset: 16px;
  --toastify-toast-top: max(var(--toastify-toast-offset), env(safe-area-inset-top));
  --toastify-toast-right: max(var(--toastify-toast-offset), env(safe-area-inset-right));
  --toastify-toast-left: max(var(--toastify-toast-offset), env(safe-area-inset-left));
  --toastify-toast-bottom: max(var(--toastify-toast-offset), env(safe-area-inset-bottom));
  --toastify-toast-background: #fff;
  --toastify-toast-padding: 14px;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-toast-bd-radius: 6px;
  --toastify-toast-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;

  /* Used only for colored theme */
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;

  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
  /* used to control the opacity of the progress trail */
  --toastify-color-progress-bgo: 0.2;
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  position: fixed;
  width: var(--toastify-container-width);
  box-sizing: border-box;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.Toastify__toast-container--top-left {
  top: var(--toastify-toast-top);
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--top-center {
  top: var(--toastify-toast-top);
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
.Toastify__toast-container--top-right {
  top: var(--toastify-toast-top);
  right: var(--toastify-toast-right);
  align-items: end;
}
.Toastify__toast-container--bottom-left {
  bottom: var(--toastify-toast-bottom);
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--bottom-center {
  bottom: var(--toastify-toast-bottom);
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
.Toastify__toast-container--bottom-right {
  bottom: var(--toastify-toast-bottom);
  right: var(--toastify-toast-right);
  align-items: end;
}

.Toastify__toast {
  --y: 0;
  position: relative;
  touch-action: none;
  width: var(--toastify-toast-width);
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: var(--toastify-toast-padding);
  border-radius: var(--toastify-toast-bd-radius);
  box-shadow: var(--toastify-toast-shadow);
  max-height: var(--toastify-toast-max-height);
  font-family: var(--toastify-font-family);
  /* webkit only issue #791 */
  z-index: 0;
  /* inner swag */
  display: flex;
  flex: 1 auto;
  align-items: center;
  word-break: break-word;
}

@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    left: env(safe-area-inset-left);
    margin: 0;
  }
  .Toastify__toast-container--top-left,
  .Toastify__toast-container--top-center,
  .Toastify__toast-container--top-right {
    top: env(safe-area-inset-top);
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left,
  .Toastify__toast-container--bottom-center,
  .Toastify__toast-container--bottom-right {
    bottom: env(safe-area-inset-bottom);
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: env(safe-area-inset-right);
    left: initial;
  }
  .Toastify__toast {
    --toastify-toast-width: 100%;
    margin-bottom: 0;
    border-radius: 0;
  }
}

.Toastify__toast-container[data-stacked='true'] {
  width: var(--toastify-toast-width);
}

.Toastify__toast--stacked {
  position: absolute;
  width: 100%;
  transform: translate3d(0, var(--y), 0) scale(var(--s));
  transition: transform 0.3s;
}

.Toastify__toast--stacked[data-collapsed] .Toastify__toast-body,
.Toastify__toast--stacked[data-collapsed] .Toastify__close-button {
  transition: opacity 0.1s;
}

.Toastify__toast--stacked[data-collapsed='false'] {
  overflow: visible;
}

.Toastify__toast--stacked[data-collapsed='true']:not(:last-child) > * {
  opacity: 0;
}

.Toastify__toast--stacked:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: calc(var(--g) * 1px);
  bottom: 100%;
}

.Toastify__toast--stacked[data-pos='top'] {
  top: 0;
}

.Toastify__toast--stacked[data-pos='bot'] {
  bottom: 0;
}

.Toastify__toast--stacked[data-pos='bot'].Toastify__toast--stacked:before {
  transform-origin: top;
}

.Toastify__toast--stacked[data-pos='top'].Toastify__toast--stacked:before {
  transform-origin: bottom;
}

.Toastify__toast--stacked:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  transform: scaleY(3);
  z-index: -1;
}

.Toastify__toast--rtl {
  direction: rtl;
}

.Toastify__toast--close-on-click {
  cursor: pointer;
}

.Toastify__toast-icon {
  margin-inline-end: 10px;
  width: 22px;
  flex-shrink: 0;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.5s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}

.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}

.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}

.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}

.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}

.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}

.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}

.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}

.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  position: absolute;
  top: 6px;
  right: 6px;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  z-index: 1;
}

.Toastify__toast--rtl .Toastify__close-button {
  left: 6px;
  right: unset;
}

.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}

.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}

.Toastify__close-button:hover,
.Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.7;
  transform-origin: left;
}

.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}

.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}

.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
  border-bottom-left-radius: initial;
}

.Toastify__progress-bar--wrp {
  position: absolute;
  overflow: hidden;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-bottom-left-radius: var(--toastify-toast-bd-radius);
  border-bottom-right-radius: var(--toastify-toast-bd-radius);
}

.Toastify__progress-bar--wrp[data-hidden='true'] {
  opacity: 0;
}

.Toastify__progress-bar--bg {
  opacity: var(--toastify-color-progress-bgo);
  width: 100%;
  height: 100%;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, var(--y), 0);
  }
}

@keyframes Toastify__bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, var(--y), 0);
  }
}

@keyframes Toastify__bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes Toastify__bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.Toastify__bounce-enter--top-left,
.Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}

.Toastify__bounce-enter--top-right,
.Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}

.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}

.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left,
.Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}

.Toastify__bounce-exit--top-right,
.Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}

.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}

.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: translate3d(0, var(--y), 0) scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}

@keyframes Toastify__flipOut {
  from {
    transform: translate3d(0, var(--y), 0) perspective(400px);
  }
  30% {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, var(--y), 0);
  }
}

@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, var(--y), 0);
  }
}

@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}

@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}

.Toastify__slide-enter--top-left,
.Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}

.Toastify__slide-enter--top-right,
.Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}

.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}

.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left,
.Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--top-right,
.Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
@layer properties {
  @supports (((-webkit-hyphens: none)) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
    *, :before, :after, ::backdrop {
      --tw-translate-x: 0;
      --tw-translate-y: 0;
      --tw-translate-z: 0;
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-space-y-reverse: 0;
      --tw-space-x-reverse: 0;
      --tw-border-style: solid;
      --tw-gradient-position: initial;
      --tw-gradient-from: #0000;
      --tw-gradient-via: #0000;
      --tw-gradient-to: #0000;
      --tw-gradient-stops: initial;
      --tw-gradient-via-stops: initial;
      --tw-gradient-from-position: 0%;
      --tw-gradient-via-position: 50%;
      --tw-gradient-to-position: 100%;
      --tw-leading: initial;
      --tw-font-weight: initial;
      --tw-ordinal: initial;
      --tw-slashed-zero: initial;
      --tw-numeric-figure: initial;
      --tw-numeric-spacing: initial;
      --tw-numeric-fraction: initial;
      --tw-shadow: 0 0 #0000;
      --tw-shadow-color: initial;
      --tw-shadow-alpha: 100%;
      --tw-inset-shadow: 0 0 #0000;
      --tw-inset-shadow-color: initial;
      --tw-inset-shadow-alpha: 100%;
      --tw-ring-color: initial;
      --tw-ring-shadow: 0 0 #0000;
      --tw-inset-ring-color: initial;
      --tw-inset-ring-shadow: 0 0 #0000;
      --tw-ring-inset: initial;
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-offset-shadow: 0 0 #0000;
      --tw-outline-style: solid;
      --tw-blur: initial;
      --tw-brightness: initial;
      --tw-contrast: initial;
      --tw-grayscale: initial;
      --tw-hue-rotate: initial;
      --tw-invert: initial;
      --tw-opacity: initial;
      --tw-saturate: initial;
      --tw-sepia: initial;
      --tw-drop-shadow: initial;
      --tw-drop-shadow-color: initial;
      --tw-drop-shadow-alpha: 100%;
      --tw-drop-shadow-size: initial;
      --tw-backdrop-blur: initial;
      --tw-backdrop-brightness: initial;
      --tw-backdrop-contrast: initial;
      --tw-backdrop-grayscale: initial;
      --tw-backdrop-hue-rotate: initial;
      --tw-backdrop-invert: initial;
      --tw-backdrop-opacity: initial;
      --tw-backdrop-saturate: initial;
      --tw-backdrop-sepia: initial;
      --tw-duration: initial;
      --tw-ease: initial;
      --tw-animation-delay: 0s;
      --tw-animation-direction: normal;
      --tw-animation-duration: initial;
      --tw-animation-fill-mode: none;
      --tw-animation-iteration-count: 1;
      --tw-enter-blur: 0;
      --tw-enter-opacity: 1;
      --tw-enter-rotate: 0;
      --tw-enter-scale: 1;
      --tw-enter-translate-x: 0;
      --tw-enter-translate-y: 0;
      --tw-exit-blur: 0;
      --tw-exit-opacity: 1;
      --tw-exit-rotate: 0;
      --tw-exit-scale: 1;
      --tw-exit-translate-x: 0;
      --tw-exit-translate-y: 0;
    }
  }
}

@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --color-red-50: oklch(97.1% .013 17.38);
    --color-red-100: oklch(93.6% .032 17.717);
    --color-red-200: oklch(88.5% .062 18.334);
    --color-red-400: oklch(70.4% .191 22.216);
    --color-red-500: oklch(63.7% .237 25.331);
    --color-red-600: oklch(57.7% .245 27.325);
    --color-red-700: oklch(50.5% .213 27.518);
    --color-red-800: oklch(44.4% .177 26.899);
    --color-red-900: oklch(39.6% .141 25.723);
    --color-amber-50: oklch(98.7% .022 95.277);
    --color-amber-600: oklch(66.6% .179 58.318);
    --color-green-50: oklch(98.2% .018 155.826);
    --color-green-200: oklch(92.5% .084 155.995);
    --color-green-400: oklch(79.2% .209 151.711);
    --color-green-500: oklch(72.3% .219 149.579);
    --color-green-600: oklch(62.7% .194 149.214);
    --color-green-700: oklch(52.7% .154 150.069);
    --color-green-800: oklch(44.8% .119 151.328);
    --color-blue-400: oklch(70.7% .165 254.624);
    --color-blue-500: oklch(62.3% .214 259.815);
    --color-blue-600: oklch(54.6% .245 262.881);
    --color-blue-700: oklch(48.8% .243 264.376);
    --color-purple-400: oklch(71.4% .203 305.504);
    --color-purple-500: oklch(62.7% .265 303.9);
    --color-purple-700: oklch(49.6% .265 301.924);
    --color-pink-500: oklch(65.6% .241 354.308);
    --color-gray-200: oklch(92.8% .006 264.531);
    --color-gray-500: oklch(55.1% .027 264.364);
    --color-gray-700: oklch(37.3% .034 259.733);
    --color-gray-800: oklch(27.8% .033 256.848);
    --color-black: #000;
    --color-white: #fff;
    --spacing: .25rem;
    --container-sm: 24rem;
    --container-md: 28rem;
    --container-lg: 32rem;
    --container-4xl: 56rem;
    --text-xs: .75rem;
    --text-xs--line-height: calc(1 / .75);
    --text-sm: .875rem;
    --text-sm--line-height: calc(1.25 / .875);
    --text-base: 1rem;
    --text-base--line-height: calc(1.5 / 1);
    --text-lg: 1.125rem;
    --text-lg--line-height: calc(1.75 / 1.125);
    --text-xl: 1.25rem;
    --text-xl--line-height: calc(1.75 / 1.25);
    --text-2xl: 1.5rem;
    --text-2xl--line-height: calc(2 / 1.5);
    --text-3xl: 1.875rem;
    --text-3xl--line-height: calc(2.25 / 1.875);
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --tracking-normal: 0em;
    --leading-tight: 1.25;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --radius-md: .375rem;
    --radius-lg: .5rem;
    --radius-xl: .75rem;
    --shadow-2xs: 0 1px #0000000d;
    --shadow-xs: 0 1px 2px 0 #0000000d;
    --shadow-sm: 0 1px 3px 0 #0000001a, 0 1px 2px -1px #0000001a;
    --shadow-md: 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a;
    --shadow-lg: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
    --shadow-xl: 0 20px 25px -5px #0000001a, 0 8px 10px -6px #0000001a;
    --shadow-2xl: 0 25px 50px -12px #00000040;
    --ease-out: cubic-bezier(0, 0, .2, 1);
    --ease-in-out: cubic-bezier(.4, 0, .2, 1);
    --animate-spin: spin 1s linear infinite;
    --animate-ping: ping 1s cubic-bezier(0, 0, .2, 1) infinite;
    --animate-pulse: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
    --blur-sm: 8px;
    --aspect-video: 16 / 9;
    --default-transition-duration: .15s;
    --default-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}

@layer base {
  *, :after, :before, ::backdrop {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  ::file-selector-button {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  html, :host {
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    line-height: 1.5;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }

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

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

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

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

  b, strong {
    font-weight: bolder;
  }

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

  small {
    font-size: 80%;
  }

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

  sub {
    bottom: -.25em;
  }

  sup {
    top: -.5em;
  }

  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }

  :-moz-focusring {
    outline: auto;
  }

  progress {
    vertical-align: baseline;
  }

  summary {
    display: list-item;
  }

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

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

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

  button, input, select, optgroup, textarea {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }

  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }

  ::file-selector-button {
    margin-inline-end: 4px;
  }

  ::placeholder {
    opacity: 1;
  }

  @supports (not ((-webkit-appearance: -apple-pay-button))) or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentColor;
    }

    @supports (color: color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }

  textarea {
    resize: vertical;
  }

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

  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }

  ::-webkit-datetime-edit {
    display: inline-flex;
  }

  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }

  ::-webkit-datetime-edit {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-year-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-month-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-day-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-hour-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-minute-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-second-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-millisecond-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }

  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }

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

  button, input:where([type="button"], [type="reset"], [type="submit"]) {
    appearance: button;
  }

  ::file-selector-button {
    appearance: button;
  }

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

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

  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}

@layer components;

@layer utilities {
  .\@container\/card-header {
    container: card-header / inline-size;
  }

  .visible {
    visibility: visible;
  }

  .absolute {
    position: absolute;
  }

  .fixed {
    position: fixed;
  }

  .relative {
    position: relative;
  }

  .static {
    position: static;
  }

  .sticky {
    position: sticky;
  }

  .inset-0 {
    inset: calc(var(--spacing) * 0);
  }

  .top-1\/2 {
    top: 50%;
  }

  .right-3 {
    right: calc(var(--spacing) * 3);
  }

  .left-3 {
    left: calc(var(--spacing) * 3);
  }

  .z-\[9999\] {
    z-index: 9999;
  }

  .col-start-2 {
    grid-column-start: 2;
  }

  .row-span-2 {
    grid-row: span 2 / span 2;
  }

  .row-start-1 {
    grid-row-start: 1;
  }

  .container {
    width: 100%;
  }

  @media (min-width: 40rem) {
    .container {
      max-width: 40rem;
    }
  }

  @media (min-width: 48rem) {
    .container {
      max-width: 48rem;
    }
  }

  @media (min-width: 64rem) {
    .container {
      max-width: 64rem;
    }
  }

  @media (min-width: 80rem) {
    .container {
      max-width: 80rem;
    }
  }

  @media (min-width: 96rem) {
    .container {
      max-width: 96rem;
    }
  }

  .m-3 {
    margin: calc(var(--spacing) * 3);
  }

  .mx-1 {
    margin-inline: calc(var(--spacing) * 1);
  }

  .mx-auto {
    margin-inline: auto;
  }

  .my-0\.5 {
    margin-block: calc(var(--spacing) * .5);
  }

  .mt-1 {
    margin-top: calc(var(--spacing) * 1);
  }

  .mt-2 {
    margin-top: calc(var(--spacing) * 2);
  }

  .mt-3 {
    margin-top: calc(var(--spacing) * 3);
  }

  .mt-6 {
    margin-top: calc(var(--spacing) * 6);
  }

  .mr-1 {
    margin-right: calc(var(--spacing) * 1);
  }

  .mr-2 {
    margin-right: calc(var(--spacing) * 2);
  }

  .mb-1 {
    margin-bottom: calc(var(--spacing) * 1);
  }

  .mb-2 {
    margin-bottom: calc(var(--spacing) * 2);
  }

  .mb-3 {
    margin-bottom: calc(var(--spacing) * 3);
  }

  .mb-4 {
    margin-bottom: calc(var(--spacing) * 4);
  }

  .mb-6 {
    margin-bottom: calc(var(--spacing) * 6);
  }

  .ml-2 {
    margin-left: calc(var(--spacing) * 2);
  }

  .ml-3 {
    margin-left: calc(var(--spacing) * 3);
  }

  .ml-4 {
    margin-left: calc(var(--spacing) * 4);
  }

  .box-border {
    box-sizing: border-box;
  }

  .block {
    display: block;
  }

  .contents {
    display: contents;
  }

  .flex {
    display: flex;
  }

  .grid {
    display: grid;
  }

  .hidden {
    display: none;
  }

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

  .table {
    display: table;
  }

  .aspect-video {
    aspect-ratio: var(--aspect-video);
  }

  .h-2 {
    height: calc(var(--spacing) * 2);
  }

  .h-2\.5 {
    height: calc(var(--spacing) * 2.5);
  }

  .h-3\/4 {
    height: 75%;
  }

  .h-4 {
    height: calc(var(--spacing) * 4);
  }

  .h-5 {
    height: calc(var(--spacing) * 5);
  }

  .h-6 {
    height: calc(var(--spacing) * 6);
  }

  .h-8 {
    height: calc(var(--spacing) * 8);
  }

  .h-10 {
    height: calc(var(--spacing) * 10);
  }

  .h-11 {
    height: calc(var(--spacing) * 11);
  }

  .h-12 {
    height: calc(var(--spacing) * 12);
  }

  .h-16 {
    height: calc(var(--spacing) * 16);
  }

  .h-24 {
    height: calc(var(--spacing) * 24);
  }

  .h-\[44px\] {
    height: 44px;
  }

  .h-\[120px\] {
    height: 120px;
  }

  .h-\[200px\] {
    height: 200px;
  }

  .h-\[300px\] {
    height: 300px;
  }

  .h-full {
    height: 100%;
  }

  .max-h-32 {
    max-height: calc(var(--spacing) * 32);
  }

  .min-h-96 {
    min-height: calc(var(--spacing) * 96);
  }

  .min-h-\[44px\] {
    min-height: 44px;
  }

  .min-h-\[48px\] {
    min-height: 48px;
  }

  .min-h-\[56px\] {
    min-height: 56px;
  }

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

  .w-0 {
    width: calc(var(--spacing) * 0);
  }

  .w-1 {
    width: calc(var(--spacing) * 1);
  }

  .w-2 {
    width: calc(var(--spacing) * 2);
  }

  .w-2\.5 {
    width: calc(var(--spacing) * 2.5);
  }

  .w-3\/4 {
    width: 75%;
  }

  .w-4 {
    width: calc(var(--spacing) * 4);
  }

  .w-5 {
    width: calc(var(--spacing) * 5);
  }

  .w-6 {
    width: calc(var(--spacing) * 6);
  }

  .w-8 {
    width: calc(var(--spacing) * 8);
  }

  .w-10 {
    width: calc(var(--spacing) * 10);
  }

  .w-12 {
    width: calc(var(--spacing) * 12);
  }

  .w-16 {
    width: calc(var(--spacing) * 16);
  }

  .w-24 {
    width: calc(var(--spacing) * 24);
  }

  .w-fit {
    width: fit-content;
  }

  .w-full {
    width: 100%;
  }

  .max-w-4xl {
    max-width: var(--container-4xl);
  }

  .max-w-full {
    max-width: 100%;
  }

  .max-w-lg {
    max-width: var(--container-lg);
  }

  .max-w-md {
    max-width: var(--container-md);
  }

  .max-w-sm {
    max-width: var(--container-sm);
  }

  .min-w-\[8rem\] {
    min-width: 8rem;
  }

  .min-w-\[44px\] {
    min-width: 44px;
  }

  .min-w-\[48px\] {
    min-width: 48px;
  }

  .min-w-\[56px\] {
    min-width: 56px;
  }

  .min-w-\[150px\] {
    min-width: 150px;
  }

  .flex-1 {
    flex: 1;
  }

  .flex-shrink-0 {
    flex-shrink: 0;
  }

  .shrink {
    flex-shrink: 1;
  }

  .shrink-0 {
    flex-shrink: 0;
  }

  .-translate-y-1\/2 {
    --tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }

  .transform {
    transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
  }

  .animate-ping {
    animation: var(--animate-ping);
  }

  .animate-pulse {
    animation: var(--animate-pulse);
  }

  .animate-spin {
    animation: var(--animate-spin);
  }

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

  .cursor-pointer {
    cursor: pointer;
  }

  .resize {
    resize: both;
  }

  .auto-rows-min {
    grid-auto-rows: min-content;
  }

  .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-rows-\[auto_auto\] {
    grid-template-rows: auto auto;
  }

  .flex-col {
    flex-direction: column;
  }

  .flex-wrap {
    flex-wrap: wrap;
  }

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

  .items-end {
    align-items: flex-end;
  }

  .items-start {
    align-items: flex-start;
  }

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

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

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

  .gap-1 {
    gap: calc(var(--spacing) * 1);
  }

  .gap-1\.5 {
    gap: calc(var(--spacing) * 1.5);
  }

  .gap-2 {
    gap: calc(var(--spacing) * 2);
  }

  .gap-3 {
    gap: calc(var(--spacing) * 3);
  }

  .gap-4 {
    gap: calc(var(--spacing) * 4);
  }

  .gap-6 {
    gap: calc(var(--spacing) * 6);
  }

  :where(.space-y-1 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 1) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-y-2 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-y-3 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 3) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-y-4 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-y-6 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 6) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-x-3 > :not(:last-child)) {
    --tw-space-x-reverse: 0;
    margin-inline-start: calc(calc(var(--spacing) * 3) * var(--tw-space-x-reverse));
    margin-inline-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-x-reverse)));
  }

  :where(.space-x-4 > :not(:last-child)) {
    --tw-space-x-reverse: 0;
    margin-inline-start: calc(calc(var(--spacing) * 4) * var(--tw-space-x-reverse));
    margin-inline-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-x-reverse)));
  }

  .self-start {
    align-self: flex-start;
  }

  .justify-self-end {
    justify-self: flex-end;
  }

  .overflow-auto {
    overflow: auto;
  }

  .overflow-hidden {
    overflow: hidden;
  }

  .overflow-x-hidden {
    overflow-x: hidden;
  }

  .rounded {
    border-radius: .25rem;
  }

  .rounded-\[2px\] {
    border-radius: 2px;
  }

  .rounded-full {
    border-radius: 3.40282e38px;
  }

  .rounded-lg {
    border-radius: var(--radius-lg);
  }

  .rounded-md {
    border-radius: var(--radius-md);
  }

  .rounded-xl {
    border-radius: var(--radius-xl);
  }

  .border {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }

  .border-2 {
    border-style: var(--tw-border-style);
    border-width: 2px;
  }

  .border-\[1\.5px\] {
    border-style: var(--tw-border-style);
    border-width: 1.5px;
  }

  .border-t {
    border-top-style: var(--tw-border-style);
    border-top-width: 1px;
  }

  .border-b {
    border-bottom-style: var(--tw-border-style);
    border-bottom-width: 1px;
  }

  .border-b-2 {
    border-bottom-style: var(--tw-border-style);
    border-bottom-width: 2px;
  }

  .border-dashed {
    --tw-border-style: dashed;
    border-style: dashed;
  }

  .border-none {
    --tw-border-style: none;
    border-style: none;
  }

  .border-\(--color-border\), .border-\[var\(--color-border\)\] {
    border-color: var(--color-border);
  }

  .border-\[var\(--color-primary\)\] {
    border-color: var(--color-primary);
  }

  .border-gray-200 {
    border-color: var(--color-gray-200);
  }

  .border-green-200 {
    border-color: var(--color-green-200);
  }

  .border-red-200 {
    border-color: var(--color-red-200);
  }

  .border-red-500 {
    border-color: var(--color-red-500);
  }

  .border-transparent {
    border-color: #0000;
  }

  .bg-\(--color-bg\) {
    background-color: var(--color-bg);
  }

  .bg-\[var\(--color-accent\)\] {
    background-color: var(--color-accent);
  }

  .bg-\[var\(--color-background\)\] {
    background-color: var(--color-background);
  }

  .bg-\[var\(--color-card\)\] {
    background-color: var(--color-card);
  }

  .bg-\[var\(--color-muted\)\] {
    background-color: var(--color-muted);
  }

  .bg-\[var\(--color-primary\)\] {
    background-color: var(--color-primary);
  }

  .bg-amber-50 {
    background-color: var(--color-amber-50);
  }

  .bg-black\/70 {
    background-color: #000000b3;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-black\/70 {
      background-color: color-mix(in oklab, var(--color-black) 70%, transparent);
    }
  }

  .bg-blue-500 {
    background-color: var(--color-blue-500);
  }

  .bg-blue-500\/20 {
    background-color: #3080ff33;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-blue-500\/20 {
      background-color: color-mix(in oklab, var(--color-blue-500) 20%, transparent);
    }
  }

  .bg-blue-600 {
    background-color: var(--color-blue-600);
  }

  .bg-gray-800 {
    background-color: var(--color-gray-800);
  }

  .bg-green-50 {
    background-color: var(--color-green-50);
  }

  .bg-green-500\/20 {
    background-color: #00c75833;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-green-500\/20 {
      background-color: color-mix(in oklab, var(--color-green-500) 20%, transparent);
    }
  }

  .bg-green-600 {
    background-color: var(--color-green-600);
  }

  .bg-purple-500\/20 {
    background-color: #ac4bff33;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-purple-500\/20 {
      background-color: color-mix(in oklab, var(--color-purple-500) 20%, transparent);
    }
  }

  .bg-red-50 {
    background-color: var(--color-red-50);
  }

  .bg-red-100 {
    background-color: var(--color-red-100);
  }

  .bg-red-500\/10 {
    background-color: #fb2c361a;
  }

  @supports (color: color-mix(in lab, red, red)) {
    .bg-red-500\/10 {
      background-color: color-mix(in oklab, var(--color-red-500) 10%, transparent);
    }
  }

  .bg-red-600 {
    background-color: var(--color-red-600);
  }

  .bg-transparent {
    background-color: #0000;
  }

  .bg-gradient-to-r {
    --tw-gradient-position: to right in oklab;
    background-image: linear-gradient(var(--tw-gradient-stops));
  }

  .from-purple-500 {
    --tw-gradient-from: var(--color-purple-500);
    --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
  }

  .via-pink-500 {
    --tw-gradient-via: var(--color-pink-500);
    --tw-gradient-via-stops: var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-via-stops);
  }

  .to-pink-500 {
    --tw-gradient-to: var(--color-pink-500);
    --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
  }

  .to-purple-700 {
    --tw-gradient-to: var(--color-purple-700);
    --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
  }

  .p-0 {
    padding: calc(var(--spacing) * 0);
  }

  .p-1 {
    padding: calc(var(--spacing) * 1);
  }

  .p-2 {
    padding: calc(var(--spacing) * 2);
  }

  .p-3 {
    padding: calc(var(--spacing) * 3);
  }

  .p-4 {
    padding: calc(var(--spacing) * 4);
  }

  .p-6 {
    padding: calc(var(--spacing) * 6);
  }

  .p-8 {
    padding: calc(var(--spacing) * 8);
  }

  .px-2 {
    padding-inline: calc(var(--spacing) * 2);
  }

  .px-2\.5 {
    padding-inline: calc(var(--spacing) * 2.5);
  }

  .px-3 {
    padding-inline: calc(var(--spacing) * 3);
  }

  .px-4 {
    padding-inline: calc(var(--spacing) * 4);
  }

  .px-5 {
    padding-inline: calc(var(--spacing) * 5);
  }

  .px-6 {
    padding-inline: calc(var(--spacing) * 6);
  }

  .px-8 {
    padding-inline: calc(var(--spacing) * 8);
  }

  .py-0\.5 {
    padding-block: calc(var(--spacing) * .5);
  }

  .py-1 {
    padding-block: calc(var(--spacing) * 1);
  }

  .py-1\.5 {
    padding-block: calc(var(--spacing) * 1.5);
  }

  .py-2 {
    padding-block: calc(var(--spacing) * 2);
  }

  .py-3 {
    padding-block: calc(var(--spacing) * 3);
  }

  .py-4 {
    padding-block: calc(var(--spacing) * 4);
  }

  .pt-3 {
    padding-top: calc(var(--spacing) * 3);
  }

  .pt-4 {
    padding-top: calc(var(--spacing) * 4);
  }

  .pr-10 {
    padding-right: calc(var(--spacing) * 10);
  }

  .pb-3 {
    padding-bottom: calc(var(--spacing) * 3);
  }

  .pl-10 {
    padding-left: calc(var(--spacing) * 10);
  }

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

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

  .font-mono {
    font-family: var(--font-mono);
  }

  .text-2xl {
    font-size: var(--text-2xl);
    line-height: var(--tw-leading, var(--text-2xl--line-height));
  }

  .text-base {
    font-size: var(--text-base);
    line-height: var(--tw-leading, var(--text-base--line-height));
  }

  .text-lg {
    font-size: var(--text-lg);
    line-height: var(--tw-leading, var(--text-lg--line-height));
  }

  .text-sm {
    font-size: var(--text-sm);
    line-height: var(--tw-leading, var(--text-sm--line-height));
  }

  .text-xl {
    font-size: var(--text-xl);
    line-height: var(--tw-leading, var(--text-xl--line-height));
  }

  .text-xs {
    font-size: var(--text-xs);
    line-height: var(--tw-leading, var(--text-xs--line-height));
  }

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

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

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

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

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

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

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

  .leading-none {
    --tw-leading: 1;
    line-height: 1;
  }

  .leading-normal {
    --tw-leading: var(--leading-normal);
    line-height: var(--leading-normal);
  }

  .leading-relaxed {
    --tw-leading: var(--leading-relaxed);
    line-height: var(--leading-relaxed);
  }

  .leading-tight {
    --tw-leading: var(--leading-tight);
    line-height: var(--leading-tight);
  }

  .font-bold {
    --tw-font-weight: var(--font-weight-bold);
    font-weight: var(--font-weight-bold);
  }

  .font-medium {
    --tw-font-weight: var(--font-weight-medium);
    font-weight: var(--font-weight-medium);
  }

  .font-semibold {
    --tw-font-weight: var(--font-weight-semibold);
    font-weight: var(--font-weight-semibold);
  }

  .break-all {
    word-break: break-all;
  }

  .whitespace-nowrap {
    white-space: nowrap;
  }

  .whitespace-pre-wrap {
    white-space: pre-wrap;
  }

  .text-\[var\(--color-accent-foreground\)\] {
    color: var(--color-accent-foreground);
  }

  .text-\[var\(--color-foreground\)\] {
    color: var(--color-foreground);
  }

  .text-\[var\(--color-muted-foreground\)\] {
    color: var(--color-muted-foreground);
  }

  .text-\[var\(--color-primary\)\] {
    color: var(--color-primary);
  }

  .text-\[var\(--color-primary-foreground\)\] {
    color: var(--color-primary-foreground);
  }

  .text-amber-600 {
    color: var(--color-amber-600);
  }

  .text-blue-400 {
    color: var(--color-blue-400);
  }

  .text-gray-500 {
    color: var(--color-gray-500);
  }

  .text-green-400 {
    color: var(--color-green-400);
  }

  .text-green-500 {
    color: var(--color-green-500);
  }

  .text-green-600 {
    color: var(--color-green-600);
  }

  .text-green-700 {
    color: var(--color-green-700);
  }

  .text-green-800 {
    color: var(--color-green-800);
  }

  .text-purple-400 {
    color: var(--color-purple-400);
  }

  .text-red-400 {
    color: var(--color-red-400);
  }

  .text-red-500 {
    color: var(--color-red-500);
  }

  .text-red-600 {
    color: var(--color-red-600);
  }

  .text-red-700 {
    color: var(--color-red-700);
  }

  .text-red-800 {
    color: var(--color-red-800);
  }

  .text-white {
    color: var(--color-white);
  }

  .capitalize {
    text-transform: capitalize;
  }

  .lowercase {
    text-transform: lowercase;
  }

  .tabular-nums {
    --tw-numeric-spacing: tabular-nums;
    font-variant-numeric: var(--tw-ordinal, ) var(--tw-slashed-zero, ) var(--tw-numeric-figure, ) var(--tw-numeric-spacing, ) var(--tw-numeric-fraction, );
  }

  .underline {
    text-decoration-line: underline;
  }

  .opacity-25 {
    opacity: .25;
  }

  .opacity-40 {
    opacity: .4;
  }

  .opacity-50 {
    opacity: .5;
  }

  .opacity-60 {
    opacity: .6;
  }

  .opacity-75 {
    opacity: .75;
  }

  .shadow {
    --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, #0000001a), 0 1px 2px -1px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-\[0_0_20px_rgba\(192\,132\,252\,0\.7\)\] {
    --tw-shadow: 0 0 20px var(--tw-shadow-color, #c084fcb3);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-lg {
    --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, #0000001a), 0 4px 6px -4px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-md {
    --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, #0000001a), 0 2px 4px -2px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-sm {
    --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, #0000001a), 0 1px 2px -1px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-xl {
    --tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, #0000001a), 0 8px 10px -6px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .ring {
    --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .outline {
    outline-style: var(--tw-outline-style);
    outline-width: 1px;
  }

  .blur {
    --tw-blur: blur(8px);
    filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
  }

  .filter {
    filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
  }

  .backdrop-blur-sm {
    --tw-backdrop-blur: blur(var(--blur-sm));
    -webkit-backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
    backdrop-filter: var(--tw-backdrop-blur, ) var(--tw-backdrop-brightness, ) var(--tw-backdrop-contrast, ) var(--tw-backdrop-grayscale, ) var(--tw-backdrop-hue-rotate, ) var(--tw-backdrop-invert, ) var(--tw-backdrop-opacity, ) var(--tw-backdrop-saturate, ) var(--tw-backdrop-sepia, );
  }

  .transition {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .transition-\[color\,box-shadow\] {
    transition-property: color, box-shadow;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .transition-all {
    transition-property: all;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .transition-colors {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .transition-shadow {
    transition-property: box-shadow;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .duration-200 {
    --tw-duration: .2s;
    transition-duration: .2s;
  }

  .ease-in-out {
    --tw-ease: var(--ease-in-out);
    transition-timing-function: var(--ease-in-out);
  }

  .ease-out {
    --tw-ease: var(--ease-out);
    transition-timing-function: var(--ease-out);
  }

  .will-change-transform {
    will-change: transform;
  }

  .paused {
    animation-play-state: paused;
  }

  .running {
    animation-play-state: running;
  }

  .running\! {
    animation-play-state: running !important;
  }

  @media (hover: hover) {
    .hover\:bg-\[var\(--color-muted\)\]:hover {
      background-color: var(--color-muted);
    }

    .hover\:bg-\[var\(--color-primary\)\]\/90:hover {
      background-color: var(--color-primary);
    }

    @supports (color: color-mix(in lab, red, red)) {
      .hover\:bg-\[var\(--color-primary\)\]\/90:hover {
        background-color: color-mix(in oklab, var(--color-primary) 90%, transparent);
      }
    }

    .hover\:bg-blue-700:hover {
      background-color: var(--color-blue-700);
    }

    .hover\:bg-gray-700:hover {
      background-color: var(--color-gray-700);
    }

    .hover\:bg-green-700:hover {
      background-color: var(--color-green-700);
    }

    .hover\:bg-red-700:hover {
      background-color: var(--color-red-700);
    }

    .hover\:text-\[var\(--color-foreground\)\]:hover {
      color: var(--color-foreground);
    }

    .hover\:text-\[var\(--color-primary-foreground\)\]:hover {
      color: var(--color-primary-foreground);
    }

    .hover\:text-gray-700:hover {
      color: var(--color-gray-700);
    }

    .hover\:text-red-700:hover {
      color: var(--color-red-700);
    }

    .hover\:text-red-900:hover {
      color: var(--color-red-900);
    }

    .hover\:opacity-90:hover {
      opacity: .9;
    }

    .hover\:shadow-md:hover {
      --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, #0000001a), 0 2px 4px -2px var(--tw-shadow-color, #0000001a);
      box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
    }
  }

  .focus\:border-red-500:focus {
    border-color: var(--color-red-500);
  }

  .focus\:ring-2:focus {
    --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .focus\:ring-blue-500:focus {
    --tw-ring-color: var(--color-blue-500);
  }

  .focus\:ring-offset-2:focus {
    --tw-ring-offset-width: 2px;
    --tw-ring-offset-shadow: var(--tw-ring-inset, ) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  }

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

  .focus-visible\:ring-\[3px\]:focus-visible {
    --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

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

  .disabled\:opacity-50:disabled {
    opacity: .5;
  }

  .has-data-\[slot\=card-action\]\:grid-cols-\[1fr_auto\]:has([data-slot="card-action"]) {
    grid-template-columns: 1fr auto;
  }

  @media (min-width: 40rem) {
    .sm\:m-4 {
      margin: calc(var(--spacing) * 4);
    }

    .sm\:h-\[48px\] {
      height: 48px;
    }

    .sm\:h-\[130px\] {
      height: 130px;
    }

    .sm\:h-\[250px\] {
      height: 250px;
    }

    .sm\:h-\[400px\] {
      height: 400px;
    }

    .sm\:grid-cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sm\:flex-row {
      flex-direction: row;
    }

    .sm\:gap-3 {
      gap: calc(var(--spacing) * 3);
    }

    .sm\:gap-4 {
      gap: calc(var(--spacing) * 4);
    }

    :where(.sm\:space-y-4 > :not(:last-child)) {
      --tw-space-y-reverse: 0;
      margin-block-start: calc(calc(var(--spacing) * 4) * var(--tw-space-y-reverse));
      margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
    }

    :where(.sm\:space-y-6 > :not(:last-child)) {
      --tw-space-y-reverse: 0;
      margin-block-start: calc(calc(var(--spacing) * 6) * var(--tw-space-y-reverse));
      margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse)));
    }

    .sm\:p-2 {
      padding: calc(var(--spacing) * 2);
    }

    .sm\:p-4 {
      padding: calc(var(--spacing) * 4);
    }

    .sm\:p-6 {
      padding: calc(var(--spacing) * 6);
    }

    .sm\:text-3xl {
      font-size: var(--text-3xl);
      line-height: var(--tw-leading, var(--text-3xl--line-height));
    }

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

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

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

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

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

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

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

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

  @media (min-width: 48rem) {
    .md\:m-5 {
      margin: calc(var(--spacing) * 5);
    }

    .md\:h-\[140px\] {
      height: 140px;
    }

    .md\:h-\[300px\] {
      height: 300px;
    }

    .md\:h-\[500px\] {
      height: 500px;
    }

    .md\:grid-cols-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:gap-4 {
      gap: calc(var(--spacing) * 4);
    }

    .md\:gap-6 {
      gap: calc(var(--spacing) * 6);
    }

    .md\:p-4 {
      padding: calc(var(--spacing) * 4);
    }

    .md\:p-5 {
      padding: calc(var(--spacing) * 5);
    }

    .md\:p-6 {
      padding: calc(var(--spacing) * 6);
    }

    .md\:p-8 {
      padding: calc(var(--spacing) * 8);
    }

    .md\:text-lg {
      font-size: var(--text-lg);
      line-height: var(--tw-leading, var(--text-lg--line-height));
    }

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

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

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

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

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

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

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

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

  @media (min-width: 64rem) {
    .lg\:h-\[350px\] {
      height: 350px;
    }

    .lg\:h-\[600px\] {
      height: 600px;
    }

    .lg\:grid-cols-4 {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }

  @media (min-width: 80rem) {
    .xl\:h-\[150px\] {
      height: 150px;
    }

    .xl\:grid-cols-4 {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }

  .\[\&_\.recharts-dot\[stroke\=\'\#fff\'\]\]\:stroke-transparent .recharts-dot[stroke="#fff"] {
    stroke: #0000;
  }

  .\[\&_\.recharts-layer\]\:outline-hidden .recharts-layer {
    --tw-outline-style: none;
    outline-style: none;
  }

  @media (forced-colors: active) {
    .\[\&_\.recharts-layer\]\:outline-hidden .recharts-layer {
      outline-offset: 2px;
      outline: 2px solid #0000;
    }
  }

  .\[\&_\.recharts-sector\]\:outline-hidden .recharts-sector {
    --tw-outline-style: none;
    outline-style: none;
  }

  @media (forced-colors: active) {
    .\[\&_\.recharts-sector\]\:outline-hidden .recharts-sector {
      outline-offset: 2px;
      outline: 2px solid #0000;
    }
  }

  .\[\&_\.recharts-sector\[stroke\=\'\#fff\'\]\]\:stroke-transparent .recharts-sector[stroke="#fff"] {
    stroke: #0000;
  }

  .\[\&_\.recharts-surface\]\:outline-hidden .recharts-surface {
    --tw-outline-style: none;
    outline-style: none;
  }

  @media (forced-colors: active) {
    .\[\&_\.recharts-surface\]\:outline-hidden .recharts-surface {
      outline-offset: 2px;
      outline: 2px solid #0000;
    }
  }

  .\[\.border-b\]\:pb-4.border-b {
    padding-bottom: calc(var(--spacing) * 4);
  }

  .\[\.border-t\]\:pt-4.border-t {
    padding-top: calc(var(--spacing) * 4);
  }

  .\[\&\>svg\]\:pointer-events-none > svg {
    pointer-events: none;
  }

  .\[\&\>svg\]\:size-3 > svg {
    width: calc(var(--spacing) * 3);
    height: calc(var(--spacing) * 3);
  }

  .\[\&\>svg\]\:h-2\.5 > svg {
    height: calc(var(--spacing) * 2.5);
  }

  .\[\&\>svg\]\:h-3 > svg {
    height: calc(var(--spacing) * 3);
  }

  .\[\&\>svg\]\:w-2\.5 > svg {
    width: calc(var(--spacing) * 2.5);
  }

  .\[\&\>svg\]\:w-3 > svg {
    width: calc(var(--spacing) * 3);
  }
}

@property --tw-animation-delay {
  syntax: "*";
  inherits: false;
  initial-value: 0s;
}

@property --tw-animation-direction {
  syntax: "*";
  inherits: false;
  initial-value: normal;
}

@property --tw-animation-duration {
  syntax: "*";
  inherits: false
}

@property --tw-animation-fill-mode {
  syntax: "*";
  inherits: false;
  initial-value: none;
}

@property --tw-animation-iteration-count {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}

@property --tw-enter-blur {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-enter-opacity {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}

@property --tw-enter-rotate {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-enter-scale {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}

@property --tw-enter-translate-x {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-enter-translate-y {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-exit-blur {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-exit-opacity {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}

@property --tw-exit-rotate {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-exit-scale {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}

@property --tw-exit-translate-x {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-exit-translate-y {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

.touch-target {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  min-width: 44px;
  min-height: 44px;
  position: relative;
}

.touch-target-recommended {
  min-width: 48px;
  min-height: 48px;
}

.touch-target-lg {
  min-width: 56px;
  min-height: 56px;
}

.touch-button-sm {
  border-radius: .375rem;
  min-width: 44px;
  min-height: 44px;
  padding: .5rem 1rem;
  font-size: .875rem;
  line-height: 1.25rem;
  transition: all .2s ease-in-out;
}

.touch-button-md {
  border-radius: .5rem;
  min-width: 48px;
  min-height: 48px;
  padding: .75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  transition: all .2s ease-in-out;
}

.touch-button-lg {
  border-radius: .5rem;
  min-width: 56px;
  min-height: 56px;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  transition: all .2s ease-in-out;
}

.touch-button-sm:hover, .touch-button-md:hover, .touch-button-lg:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px #0000001a, 0 2px 4px -1px #0000000f;
}

.touch-button-sm:active, .touch-button-md:active, .touch-button-lg:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px #0000000d;
}

.touch-button-sm:focus-visible, .touch-button-md:focus-visible, .touch-button-lg:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.touch-input-sm {
  border: 1px solid var(--color-border);
  background-color: var(--color-background);
  width: 100%;
  min-height: 44px;
  color: var(--color-foreground);
  border-radius: .375rem;
  padding: .5rem .75rem;
  font-size: .875rem;
  line-height: 1.25rem;
  transition: all .2s ease-in-out;
}

.touch-input-md {
  border: 1px solid var(--color-border);
  background-color: var(--color-background);
  width: 100%;
  min-height: 48px;
  color: var(--color-foreground);
  border-radius: .5rem;
  padding: .75rem 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  transition: all .2s ease-in-out;
}

.touch-input-lg {
  border: 1px solid var(--color-border);
  background-color: var(--color-background);
  width: 100%;
  min-height: 56px;
  color: var(--color-foreground);
  border-radius: .5rem;
  padding: 1rem 1.25rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  transition: all .2s ease-in-out;
}

.touch-input-sm:focus, .touch-input-md:focus, .touch-input-lg:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 3px #7c3aed1a;
}

.touch-input-sm:hover, .touch-input-md:hover, .touch-input-lg:hover {
  border-color: var(--color-primary);
}

.touch-input-sm:disabled, .touch-input-md:disabled, .touch-input-lg:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.touch-spacing {
  gap: .5rem;
}

.touch-spacing-md {
  gap: .75rem;
}

.touch-spacing-lg {
  gap: 1rem;
}

.touch-spacing-y {
  row-gap: .5rem;
}

.touch-spacing-y-md {
  row-gap: .75rem;
}

.touch-spacing-y-lg {
  row-gap: 1rem;
}

.touch-spacing-x {
  column-gap: .5rem;
}

.touch-spacing-x-md {
  column-gap: .75rem;
}

.touch-spacing-x-lg {
  column-gap: 1rem;
}

.touch-link {
  min-height: 44px;
  color: var(--color-primary);
  border-radius: .375rem;
  align-items: center;
  padding: .5rem .75rem;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: inline-flex;
}

.touch-link:hover {
  background-color: #7c3aed1a;
  text-decoration: underline;
}

.touch-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.touch-icon-button {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
  padding: .5rem;
  transition: all .2s ease-in-out;
  display: inline-flex;
}

.touch-icon-button:hover {
  background-color: var(--color-muted);
  transform: scale(1.05);
}

.touch-icon-button:active {
  transform: scale(.95);
}

.touch-icon-button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.touch-checkbox, .touch-radio {
  cursor: pointer;
  min-width: 24px;
  min-height: 24px;
}

.touch-checkbox-label, .touch-radio-label {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  border-radius: .375rem;
  align-items: center;
  gap: .75rem;
  min-height: 44px;
  padding: .5rem;
  transition: background-color .2s ease-in-out;
  display: flex;
}

.touch-checkbox-label:hover, .touch-radio-label:hover {
  background-color: var(--color-muted);
}

.touch-card {
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  border-radius: .5rem;
  min-height: 80px;
  padding: 1rem;
  transition: all .2s ease-in-out;
}

.touch-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -2px #0000000d;
}

.touch-card:active {
  transform: translateY(0);
}

@media (max-width: 767px) {
  .touch-target-mobile {
    min-width: 48px;
    min-height: 48px;
  }

  .touch-spacing-mobile {
    gap: .75rem;
  }

  .touch-button-sm {
    min-height: 48px;
    padding: .75rem 1.25rem;
  }

  .touch-input-sm {
    min-height: 48px;
    padding: .75rem 1rem;
    font-size: 1rem;
  }

  .touch-input-sm, .touch-input-md, .touch-input-lg {
    font-size: 16px;
  }
}

.touch-ripple {
  position: relative;
  overflow: hidden;
}

.touch-ripple:after {
  content: "";
  background-color: #ffffff4d;
  border-radius: 50%;
  width: 0;
  height: 0;
  transition: width .6s, height .6s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.touch-ripple:active:after {
  width: 200%;
  height: 200%;
}

.touch-target:focus-visible, .touch-button-sm:focus-visible, .touch-button-md:focus-visible, .touch-button-lg:focus-visible, .touch-input-sm:focus-visible, .touch-input-md:focus-visible, .touch-input-lg:focus-visible, .touch-link:focus-visible, .touch-icon-button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.touch-target, .touch-button-sm, .touch-button-md, .touch-button-lg, .touch-link, .touch-icon-button, .touch-card {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

@media (hover: none) and (pointer: coarse) {
  * {
    -webkit-overflow-scrolling: touch;
  }
}

:root {
  --font-size-xs: .75rem;
  --font-size-sm: .875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  --letter-spacing-tight: -.025em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: .025em;
}

@media (min-width: 640px) {
  :root {
    --font-size-xs: .75rem;
    --font-size-sm: .875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.375rem;
    --font-size-2xl: 1.75rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
  }
}

@media (min-width: 768px) {
  :root {
    --font-size-xs: .75rem;
    --font-size-sm: .875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.25rem;
    --font-size-4xl: 3rem;
  }
}

.text-responsive-xs {
  font-size: .75rem;
  line-height: var(--line-height-normal);
}

@media (min-width: 640px) {
  .text-responsive-xs {
    font-size: .75rem;
  }
}

@media (min-width: 768px) {
  .text-responsive-xs {
    font-size: .75rem;
  }
}

.text-responsive-sm {
  font-size: .75rem;
  line-height: var(--line-height-normal);
}

@media (min-width: 640px) {
  .text-responsive-sm {
    font-size: .875rem;
  }
}

@media (min-width: 768px) {
  .text-responsive-sm {
    font-size: .875rem;
  }
}

.text-responsive-base {
  font-size: .875rem;
  line-height: var(--line-height-normal);
}

@media (min-width: 640px) {
  .text-responsive-base {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .text-responsive-base {
    font-size: 1rem;
  }
}

.text-responsive-lg {
  font-size: 1rem;
  line-height: var(--line-height-normal);
}

@media (min-width: 640px) {
  .text-responsive-lg {
    font-size: 1.125rem;
  }
}

@media (min-width: 768px) {
  .text-responsive-lg {
    font-size: 1.25rem;
  }
}

.text-responsive-xl {
  font-size: 1.125rem;
  line-height: var(--line-height-tight);
}

@media (min-width: 640px) {
  .text-responsive-xl {
    font-size: 1.375rem;
  }
}

@media (min-width: 768px) {
  .text-responsive-xl {
    font-size: 1.5rem;
  }
}

.text-responsive-2xl {
  font-size: 1.5rem;
  line-height: var(--line-height-tight);
}

@media (min-width: 640px) {
  .text-responsive-2xl {
    font-size: 1.75rem;
  }
}

@media (min-width: 768px) {
  .text-responsive-2xl {
    font-size: 2rem;
  }
}

.text-responsive-3xl {
  font-size: 1.875rem;
  line-height: var(--line-height-tight);
}

@media (min-width: 640px) {
  .text-responsive-3xl {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .text-responsive-3xl {
    font-size: 2.25rem;
  }
}

.text-responsive-4xl {
  font-size: 2.25rem;
  line-height: var(--line-height-tight);
}

@media (min-width: 640px) {
  .text-responsive-4xl {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) {
  .text-responsive-4xl {
    font-size: 3rem;
  }
}

.heading-responsive-h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
}

@media (min-width: 640px) {
  .heading-responsive-h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) {
  .heading-responsive-h1 {
    font-size: 3rem;
  }
}

.heading-responsive-h2 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
}

@media (min-width: 640px) {
  .heading-responsive-h2 {
    font-size: 1.875rem;
  }
}

@media (min-width: 768px) {
  .heading-responsive-h2 {
    font-size: 2.25rem;
  }
}

.heading-responsive-h3 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: var(--line-height-normal);
}

@media (min-width: 640px) {
  .heading-responsive-h3 {
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) {
  .heading-responsive-h3 {
    font-size: 1.875rem;
  }
}

.heading-responsive-h4 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: var(--line-height-normal);
}

@media (min-width: 640px) {
  .heading-responsive-h4 {
    font-size: 1.25rem;
  }
}

@media (min-width: 768px) {
  .heading-responsive-h4 {
    font-size: 1.5rem;
  }
}

:root {
  --padding-xs: .5rem;
  --padding-sm: .75rem;
  --padding-md: 1rem;
  --padding-lg: 1.25rem;
  --padding-xl: 1.5rem;
  --padding-2xl: 2rem;
  --margin-xs: .5rem;
  --margin-sm: .75rem;
  --margin-md: 1rem;
  --margin-lg: 1.25rem;
  --margin-xl: 1.5rem;
  --margin-2xl: 2rem;
  --gap-xs: .5rem;
  --gap-sm: .75rem;
  --gap-md: 1rem;
  --gap-lg: 1.5rem;
  --gap-xl: 2rem;
}

@media (min-width: 640px) {
  :root {
    --padding-xs: .5rem;
    --padding-sm: .75rem;
    --padding-md: 1rem;
    --padding-lg: 1.5rem;
    --padding-xl: 2rem;
    --padding-2xl: 2.5rem;
    --margin-xs: .5rem;
    --margin-sm: .75rem;
    --margin-md: 1rem;
    --margin-lg: 1.5rem;
    --margin-xl: 2rem;
    --margin-2xl: 2.5rem;
    --gap-xs: .5rem;
    --gap-sm: 1rem;
    --gap-md: 1.5rem;
    --gap-lg: 2rem;
    --gap-xl: 2.5rem;
  }
}

@media (min-width: 768px) {
  :root {
    --padding-xs: .5rem;
    --padding-sm: 1rem;
    --padding-md: 1.25rem;
    --padding-lg: 1.5rem;
    --padding-xl: 2rem;
    --padding-2xl: 3rem;
    --margin-xs: .5rem;
    --margin-sm: 1rem;
    --margin-md: 1.25rem;
    --margin-lg: 1.5rem;
    --margin-xl: 2rem;
    --margin-2xl: 3rem;
    --gap-xs: .5rem;
    --gap-sm: 1rem;
    --gap-md: 1.5rem;
    --gap-lg: 2rem;
    --gap-xl: 3rem;
  }
}

.padding-responsive-sm {
  padding: .75rem;
}

@media (min-width: 640px) {
  .padding-responsive-sm {
    padding: .75rem;
  }
}

@media (min-width: 768px) {
  .padding-responsive-sm {
    padding: 1rem;
  }
}

.padding-responsive-md {
  padding: .75rem;
}

@media (min-width: 640px) {
  .padding-responsive-md {
    padding: 1rem;
  }
}

@media (min-width: 768px) {
  .padding-responsive-md {
    padding: 1.25rem;
  }
}

.padding-responsive-lg {
  padding: 1rem;
}

@media (min-width: 640px) {
  .padding-responsive-lg {
    padding: 1.5rem;
  }
}

@media (min-width: 768px) {
  .padding-responsive-lg {
    padding: 1.5rem;
  }
}

.margin-responsive-sm {
  margin: .75rem;
}

@media (min-width: 640px) {
  .margin-responsive-sm {
    margin: .75rem;
  }
}

@media (min-width: 768px) {
  .margin-responsive-sm {
    margin: 1rem;
  }
}

.margin-responsive-md {
  margin: 1rem;
}

@media (min-width: 640px) {
  .margin-responsive-md {
    margin: 1rem;
  }
}

@media (min-width: 768px) {
  .margin-responsive-md {
    margin: 1.25rem;
  }
}

.gap-responsive-sm {
  gap: .75rem;
}

@media (min-width: 640px) {
  .gap-responsive-sm {
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  .gap-responsive-sm {
    gap: 1rem;
  }
}

.gap-responsive-md {
  gap: .75rem;
}

@media (min-width: 640px) {
  .gap-responsive-md {
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  .gap-responsive-md {
    gap: 1.5rem;
  }
}

.gap-responsive-lg {
  gap: 1rem;
}

@media (min-width: 640px) {
  .gap-responsive-lg {
    gap: 1.5rem;
  }
}

@media (min-width: 768px) {
  .gap-responsive-lg {
    gap: 2rem;
  }
}

.height-responsive-sm {
  height: 120px;
}

@media (min-width: 640px) {
  .height-responsive-sm {
    height: 130px;
  }
}

@media (min-width: 768px) {
  .height-responsive-sm {
    height: 140px;
  }
}

@media (min-width: 1280px) {
  .height-responsive-sm {
    height: 150px;
  }
}

.height-responsive-md {
  height: 200px;
}

@media (min-width: 640px) {
  .height-responsive-md {
    height: 250px;
  }
}

@media (min-width: 768px) {
  .height-responsive-md {
    height: 300px;
  }
}

@media (min-width: 1024px) {
  .height-responsive-md {
    height: 350px;
  }
}

.height-responsive-lg {
  height: 300px;
}

@media (min-width: 640px) {
  .height-responsive-lg {
    height: 400px;
  }
}

@media (min-width: 768px) {
  .height-responsive-lg {
    height: 500px;
  }
}

@media (min-width: 1024px) {
  .height-responsive-lg {
    height: 600px;
  }
}

.width-responsive-full, .width-responsive-container {
  width: 100%;
  max-width: 100%;
}

@media (min-width: 640px) {
  .width-responsive-container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .width-responsive-container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .width-responsive-container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .width-responsive-container {
    max-width: 1280px;
  }
}

.space-y-responsive-sm > * + * {
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .space-y-responsive-sm > * + * {
    margin-top: 1rem;
  }
}

@media (min-width: 768px) {
  .space-y-responsive-sm > * + * {
    margin-top: 1.5rem;
  }
}

.space-y-responsive-md > * + * {
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .space-y-responsive-md > * + * {
    margin-top: 1.5rem;
  }
}

@media (min-width: 768px) {
  .space-y-responsive-md > * + * {
    margin-top: 1.5rem;
  }
}

.space-y-responsive-lg > * + * {
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .space-y-responsive-lg > * + * {
    margin-top: 2rem;
  }
}

@media (min-width: 768px) {
  .space-y-responsive-lg > * + * {
    margin-top: 2rem;
  }
}

:root {
  --background: oklch(17.51% .0251 299.116);
  --foreground: oklch(98.46% .0017 247.839);
  --card: oklch(21.55% .0319 300.993);
  --card-foreground: oklch(98.46% .0017 247.839);
  --popover: oklch(21.55% .0319 300.993);
  --popover-foreground: oklch(98.46% .0017 247.839);
  --primary: oklch(65.56% .2589 292.717);
  --primary-foreground: oklch(100% 0 0);
  --secondary: oklch(38.42% .1037 298.053);
  --secondary-foreground: oklch(91.12% .1013 293.571);
  --muted: oklch(28.42% .0637 298.053);
  --muted-foreground: oklch(75.9% .1592 293.541);
  --accent: oklch(57.96% .2183 293.745);
  --accent-foreground: oklch(100% 0 0);
  --destructive: oklch(44.37% .1613 26.8994);
  --destructive-foreground: oklch(98.46% .0017 247.839);
  --border: oklch(32.42% .0837 298.053);
  --input: oklch(32.42% .0837 298.053);
  --ring: oklch(65.56% .2589 292.717);
  --chart-1: oklch(65.56% .2589 292.717);
  --chart-2: oklch(75.9% .1892 293.541);
  --chart-3: oklch(86.12% .1213 293.571);
  --chart-4: oklch(77.53% .1952 349.761);
  --chart-5: oklch(73.01% .1783 276.935);
  --sidebar: oklch(17.51% .0251 299.116);
  --sidebar-foreground: oklch(98.46% .0017 247.839);
  --sidebar-primary: oklch(65.56% .2589 292.717);
  --sidebar-primary-foreground: oklch(100% 0 0);
  --sidebar-accent: oklch(38.42% .1037 298.053);
  --sidebar-accent-foreground: oklch(91.12% .1013 293.571);
  --sidebar-border: oklch(32.42% .0837 298.053);
  --sidebar-ring: oklch(65.56% .2589 292.717);
  --font-sans: var(--font-sans);
  --font-serif: var(--font-serif);
  --font-mono: var(--font-mono);
  --radius: .5rem;
  --shadow-2xs: var(--shadow-2xs);
  --shadow-xs: var(--shadow-xs);
  --shadow-sm: var(--shadow-sm);
  --shadow: var(--shadow);
  --shadow-md: var(--shadow-md);
  --shadow-lg: var(--shadow-lg);
  --shadow-xl: var(--shadow-xl);
  --shadow-2xl: var(--shadow-2xl);
  --tracking-normal: var(--tracking-normal);
  --spacing: .25rem;
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --color-card: var(--card);
  --color-card-foreground: var(--card-foreground);
  --color-popover: var(--popover);
  --color-popover-foreground: var(--popover-foreground);
  --color-primary: var(--primary);
  --color-primary-foreground: var(--primary-foreground);
  --color-secondary: var(--secondary);
  --color-secondary-foreground: var(--secondary-foreground);
  --color-muted: var(--muted);
  --color-muted-foreground: var(--muted-foreground);
  --color-accent: var(--accent);
  --color-accent-foreground: var(--accent-foreground);
  --color-destructive: var(--destructive);
  --color-destructive-foreground: var(--destructive-foreground);
  --color-border: var(--border);
  --color-input: var(--input);
  --color-ring: var(--ring);
  --color-chart-1: var(--chart-1);
  --color-chart-2: var(--chart-2);
  --color-chart-3: var(--chart-3);
  --color-chart-4: var(--chart-4);
  --color-chart-5: var(--chart-5);
  --color-sidebar: var(--sidebar);
  --color-sidebar-foreground: var(--sidebar-foreground);
  --color-sidebar-primary: var(--sidebar-primary);
  --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
  --color-sidebar-accent: var(--sidebar-accent);
  --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
  --color-sidebar-border: var(--sidebar-border);
  --color-sidebar-ring: var(--sidebar-ring);
  --radius-sm: calc(var(--radius)  - 4px);
  --radius-md: calc(var(--radius)  - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius)  + 4px);
  --tracking-tighter: calc(var(--tracking-normal)  - .05em);
  --tracking-tight: calc(var(--tracking-normal)  - .025em);
  --tracking-wide: calc(var(--tracking-normal)  + .025em);
  --tracking-wider: calc(var(--tracking-normal)  + .05em);
  --tracking-widest: calc(var(--tracking-normal)  + .1em);
}

body {
  letter-spacing: var(--tracking-normal);
}

.hover-primary:hover {
  color: var(--color-primary);
}

.hover-bg-primary:hover {
  background: var(--color-primary);
  color: var(--color-primary-foreground);
}

.popover-bg {
  background: var(--color-popover);
  color: var(--color-popover-foreground);
  border: 1px solid var(--color-border);
}

.animation-delay-100 {
  animation-delay: .1s;
}

.animation-delay-200 {
  animation-delay: .2s;
}

.animation-delay-300 {
  animation-delay: .3s;
}

.animation-delay-500 {
  animation-delay: .5s;
}

.animation-delay-1000 {
  animation-delay: 1s;
}

.animate-fade-in {
  animation: .8s ease-in-out forwards fadeIn;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

html {
  color-scheme: dark;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  background-image: radial-gradient(circle at 20% 80%, #9333ea08 0%, #0000 50%), radial-gradient(circle at 80% 20%, #7c3aed08 0%, #0000 50%);
}

.purple-glow {
  box-shadow: 0 0 20px #9333ea4d;
}

.purple-border {
  border-color: var(--color-primary);
}

.purple-gradient {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-muted);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
  transition: background-color .2s;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

::selection {
  background-color: var(--color-primary);
  color: var(--color-primary-foreground);
}

.mui-login-container *, .mui-form-container * {
  box-sizing: border-box !important;
}

.mui-login-container .MuiTextField-root, .mui-login-container .MuiButton-root, .mui-login-container .MuiPaper-root {
  width: auto !important;
}

.mui-form-container .MuiTextField-root[data-fullwidth="true"], .mui-form-container .MuiButton-root[data-fullwidth="true"] {
  width: 100% !important;
}

@property --tw-translate-x {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-translate-y {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-translate-z {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-rotate-x {
  syntax: "*";
  inherits: false
}

@property --tw-rotate-y {
  syntax: "*";
  inherits: false
}

@property --tw-rotate-z {
  syntax: "*";
  inherits: false
}

@property --tw-skew-x {
  syntax: "*";
  inherits: false
}

@property --tw-skew-y {
  syntax: "*";
  inherits: false
}

@property --tw-space-y-reverse {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-space-x-reverse {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}

@property --tw-gradient-position {
  syntax: "*";
  inherits: false
}

@property --tw-gradient-from {
  syntax: "<color>";
  inherits: false;
  initial-value: #0000;
}

@property --tw-gradient-via {
  syntax: "<color>";
  inherits: false;
  initial-value: #0000;
}

@property --tw-gradient-to {
  syntax: "<color>";
  inherits: false;
  initial-value: #0000;
}

@property --tw-gradient-stops {
  syntax: "*";
  inherits: false
}

@property --tw-gradient-via-stops {
  syntax: "*";
  inherits: false
}

@property --tw-gradient-from-position {
  syntax: "<length-percentage>";
  inherits: false;
  initial-value: 0%;
}

@property --tw-gradient-via-position {
  syntax: "<length-percentage>";
  inherits: false;
  initial-value: 50%;
}

@property --tw-gradient-to-position {
  syntax: "<length-percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --tw-leading {
  syntax: "*";
  inherits: false
}

@property --tw-font-weight {
  syntax: "*";
  inherits: false
}

@property --tw-ordinal {
  syntax: "*";
  inherits: false
}

@property --tw-slashed-zero {
  syntax: "*";
  inherits: false
}

@property --tw-numeric-figure {
  syntax: "*";
  inherits: false
}

@property --tw-numeric-spacing {
  syntax: "*";
  inherits: false
}

@property --tw-numeric-fraction {
  syntax: "*";
  inherits: false
}

@property --tw-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-shadow-color {
  syntax: "*";
  inherits: false
}

@property --tw-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --tw-inset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-inset-shadow-color {
  syntax: "*";
  inherits: false
}

@property --tw-inset-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --tw-ring-color {
  syntax: "*";
  inherits: false
}

@property --tw-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-inset-ring-color {
  syntax: "*";
  inherits: false
}

@property --tw-inset-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-ring-inset {
  syntax: "*";
  inherits: false
}

@property --tw-ring-offset-width {
  syntax: "<length>";
  inherits: false;
  initial-value: 0;
}

@property --tw-ring-offset-color {
  syntax: "*";
  inherits: false;
  initial-value: #fff;
}

@property --tw-ring-offset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-outline-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}

@property --tw-blur {
  syntax: "*";
  inherits: false
}

@property --tw-brightness {
  syntax: "*";
  inherits: false
}

@property --tw-contrast {
  syntax: "*";
  inherits: false
}

@property --tw-grayscale {
  syntax: "*";
  inherits: false
}

@property --tw-hue-rotate {
  syntax: "*";
  inherits: false
}

@property --tw-invert {
  syntax: "*";
  inherits: false
}

@property --tw-opacity {
  syntax: "*";
  inherits: false
}

@property --tw-saturate {
  syntax: "*";
  inherits: false
}

@property --tw-sepia {
  syntax: "*";
  inherits: false
}

@property --tw-drop-shadow {
  syntax: "*";
  inherits: false
}

@property --tw-drop-shadow-color {
  syntax: "*";
  inherits: false
}

@property --tw-drop-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --tw-drop-shadow-size {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-blur {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-brightness {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-contrast {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-grayscale {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-hue-rotate {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-invert {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-opacity {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-saturate {
  syntax: "*";
  inherits: false
}

@property --tw-backdrop-sepia {
  syntax: "*";
  inherits: false
}

@property --tw-duration {
  syntax: "*";
  inherits: false
}

@property --tw-ease {
  syntax: "*";
  inherits: false
}

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

@keyframes ping {
  75%, 100% {
    opacity: 0;
    transform: scale(2);
  }
}

@keyframes pulse {
  50% {
    opacity: .5;
  }
}
/**
 * CSS Custom Properties for NepoLive Admin Panel
 * Dark theme variables matching the MUI theme configuration
 */

:root {
  /* Background Colors */
  --color-background: #1a1625 !important;
  --color-card: #241b33 !important;
  --color-muted: #2d1b3d !important;
  --color-popover: #241b33 !important;
  
  /* Text Colors */
  --color-foreground: #f8fafc !important;
  --color-muted-foreground: #cbd5e1 !important;
  --color-popover-foreground: #f8fafc !important;
  
  /* Primary Colors */
  --color-primary: #7c3aed !important;
  --color-primary-foreground: #ffffff !important;
  
  /* Accent Colors */
  --color-accent: #9333ea !important;
  --color-accent-foreground: #ffffff !important;
  
  /* Border Colors */
  --color-border: #374151 !important;
  
  /* Sidebar Colors */
  --color-sidebar: #1a1625 !important;
  --color-sidebar-foreground: #f8fafc !important;
  
  /* State Colors */
  --color-success: #10b981;
  --color-error: #ef4444;
  --color-warning: #f59e0b;
  --color-info: #3b82f6;
  
  /* Interactive States */
  --color-hover: rgba(147, 51, 234, 0.08);
  --color-selected: rgba(147, 51, 234, 0.12);
  
  /* RGB Values for rgba() usage */
  --color-muted-rgb: 45, 27, 61;
  --color-primary-rgb: 124, 58, 237;
  --color-accent-rgb: 147, 51, 234;
  
  /* Destructive/Error Colors */
  --color-destructive: #ef4444;
  --color-destructive-foreground: #ffffff;
}

/* Ensure variables are available globally */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background-color: var(--color-background);
  color: var(--color-foreground);
}

/* Additional reset for common elements that might cause gaps */
#root {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-color: var(--color-background);
}

/* Clean MUI component resets */
.MuiAppBar-root {
  margin: 0;
}

.MuiToolbar-root {
  margin: 0;
}/**
 * Responsive Typography and Spacing Systems
 * 
 * This file implements progressive font sizing utilities and responsive spacing patterns
 * following mobile-first responsive design principles.
 * 
 * Requirements addressed:
 * - 1.4: Progressive font sizing that scales appropriately across all breakpoints
 * - 5.3: Responsive height and width scaling patterns
 * - 5.4: Responsive typography patterns with proper scaling
 */

/* =============================================================================
   RESPONSIVE TYPOGRAPHY SCALE
   ============================================================================= */

/* Typography CSS Variables - Mobile First */
:root {
  /* Base font sizes (mobile) */
  --font-size-xs: 0.75rem;      /* 12px */
  --font-size-sm: 0.875rem;     /* 14px */
  --font-size-base: 1rem;       /* 16px */
  --font-size-lg: 1.125rem;     /* 18px */
  --font-size-xl: 1.25rem;      /* 20px */
  --font-size-2xl: 1.5rem;      /* 24px */
  --font-size-3xl: 1.875rem;    /* 30px */
  --font-size-4xl: 2.25rem;     /* 36px */
  
  /* Line heights */
  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  
  /* Letter spacing */
  --letter-spacing-tight: -0.025em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.025em;
}

/* Tablet breakpoint (640px+) - sm */
@media (min-width: 640px) {
  :root {
    --font-size-xs: 0.75rem;      /* 12px */
    --font-size-sm: 0.875rem;     /* 14px */
    --font-size-base: 1rem;       /* 16px */
    --font-size-lg: 1.125rem;     /* 18px */
    --font-size-xl: 1.375rem;     /* 22px */
    --font-size-2xl: 1.75rem;     /* 28px */
    --font-size-3xl: 2rem;        /* 32px */
    --font-size-4xl: 2.5rem;      /* 40px */
  }
}

/* Desktop breakpoint (768px+) - md */
@media (min-width: 768px) {
  :root {
    --font-size-xs: 0.75rem;      /* 12px */
    --font-size-sm: 0.875rem;     /* 14px */
    --font-size-base: 1rem;       /* 16px */
    --font-size-lg: 1.25rem;      /* 20px */
    --font-size-xl: 1.5rem;       /* 24px */
    --font-size-2xl: 2rem;        /* 32px */
    --font-size-3xl: 2.25rem;     /* 36px */
    --font-size-4xl: 3rem;        /* 48px */
  }
}

/* =============================================================================
   PROGRESSIVE FONT SIZING UTILITY CLASSES
   ============================================================================= */

/* Extra Small Text - Progressive */
.text-responsive-xs {
  font-size: 0.75rem;           /* 12px mobile */
  line-height: var(--line-height-normal);
}

@media (min-width: 640px) {
  .text-responsive-xs {
    font-size: 0.75rem;         /* 12px tablet */
  }
}

@media (min-width: 768px) {
  .text-responsive-xs {
    font-size: 0.75rem;         /* 12px desktop */
  }
}

/* Small Text - Progressive */
.text-responsive-sm {
  font-size: 0.75rem;           /* 12px mobile */
  line-height: var(--line-height-normal);
}

@media (min-width: 640px) {
  .text-responsive-sm {
    font-size: 0.875rem;        /* 14px tablet */
  }
}

@media (min-width: 768px) {
  .text-responsive-sm {
    font-size: 0.875rem;        /* 14px desktop */
  }
}

/* Base Text - Progressive */
.text-responsive-base {
  font-size: 0.875rem;          /* 14px mobile */
  line-height: var(--line-height-normal);
}

@media (min-width: 640px) {
  .text-responsive-base {
    font-size: 1rem;            /* 16px tablet */
  }
}

@media (min-width: 768px) {
  .text-responsive-base {
    font-size: 1rem;            /* 16px desktop */
  }
}

/* Large Text - Progressive */
.text-responsive-lg {
  font-size: 1rem;              /* 16px mobile */
  line-height: var(--line-height-normal);
}

@media (min-width: 640px) {
  .text-responsive-lg {
    font-size: 1.125rem;        /* 18px tablet */
  }
}

@media (min-width: 768px) {
  .text-responsive-lg {
    font-size: 1.25rem;         /* 20px desktop */
  }
}

/* Extra Large Text - Progressive */
.text-responsive-xl {
  font-size: 1.125rem;          /* 18px mobile */
  line-height: var(--line-height-tight);
}

@media (min-width: 640px) {
  .text-responsive-xl {
    font-size: 1.375rem;        /* 22px tablet */
  }
}

@media (min-width: 768px) {
  .text-responsive-xl {
    font-size: 1.5rem;          /* 24px desktop */
  }
}

/* 2XL Text - Progressive */
.text-responsive-2xl {
  font-size: 1.5rem;            /* 24px mobile */
  line-height: var(--line-height-tight);
}

@media (min-width: 640px) {
  .text-responsive-2xl {
    font-size: 1.75rem;         /* 28px tablet */
  }
}

@media (min-width: 768px) {
  .text-responsive-2xl {
    font-size: 2rem;            /* 32px desktop */
  }
}

/* 3XL Text - Progressive */
.text-responsive-3xl {
  font-size: 1.875rem;          /* 30px mobile */
  line-height: var(--line-height-tight);
}

@media (min-width: 640px) {
  .text-responsive-3xl {
    font-size: 2rem;            /* 32px tablet */
  }
}

@media (min-width: 768px) {
  .text-responsive-3xl {
    font-size: 2.25rem;         /* 36px desktop */
  }
}

/* 4XL Text - Progressive */
.text-responsive-4xl {
  font-size: 2.25rem;           /* 36px mobile */
  line-height: var(--line-height-tight);
}

@media (min-width: 640px) {
  .text-responsive-4xl {
    font-size: 2.5rem;          /* 40px tablet */
  }
}

@media (min-width: 768px) {
  .text-responsive-4xl {
    font-size: 3rem;            /* 48px desktop */
  }
}

/* =============================================================================
   HEADING STYLES - PROGRESSIVE
   ============================================================================= */

.heading-responsive-h1 {
  font-size: 2rem;              /* 32px mobile */
  font-weight: 700;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
}

@media (min-width: 640px) {
  .heading-responsive-h1 {
    font-size: 2.5rem;          /* 40px tablet */
  }
}

@media (min-width: 768px) {
  .heading-responsive-h1 {
    font-size: 3rem;            /* 48px desktop */
  }
}

.heading-responsive-h2 {
  font-size: 1.5rem;            /* 24px mobile */
  font-weight: 600;
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
}

@media (min-width: 640px) {
  .heading-responsive-h2 {
    font-size: 1.875rem;        /* 30px tablet */
  }
}

@media (min-width: 768px) {
  .heading-responsive-h2 {
    font-size: 2.25rem;         /* 36px desktop */
  }
}

.heading-responsive-h3 {
  font-size: 1.25rem;           /* 20px mobile */
  font-weight: 600;
  line-height: var(--line-height-normal);
}

@media (min-width: 640px) {
  .heading-responsive-h3 {
    font-size: 1.5rem;          /* 24px tablet */
  }
}

@media (min-width: 768px) {
  .heading-responsive-h3 {
    font-size: 1.875rem;        /* 30px desktop */
  }
}

.heading-responsive-h4 {
  font-size: 1.125rem;          /* 18px mobile */
  font-weight: 600;
  line-height: var(--line-height-normal);
}

@media (min-width: 640px) {
  .heading-responsive-h4 {
    font-size: 1.25rem;         /* 20px tablet */
  }
}

@media (min-width: 768px) {
  .heading-responsive-h4 {
    font-size: 1.5rem;          /* 24px desktop */
  }
}

/* =============================================================================
   RESPONSIVE SPACING PATTERNS
   ============================================================================= */

/* Spacing CSS Variables - Mobile First */
:root {
  /* Padding scale */
  --padding-xs: 0.5rem;         /* 8px */
  --padding-sm: 0.75rem;        /* 12px */
  --padding-md: 1rem;           /* 16px */
  --padding-lg: 1.25rem;        /* 20px */
  --padding-xl: 1.5rem;         /* 24px */
  --padding-2xl: 2rem;          /* 32px */
  
  /* Margin scale */
  --margin-xs: 0.5rem;          /* 8px */
  --margin-sm: 0.75rem;         /* 12px */
  --margin-md: 1rem;            /* 16px */
  --margin-lg: 1.25rem;         /* 20px */
  --margin-xl: 1.5rem;          /* 24px */
  --margin-2xl: 2rem;           /* 32px */
  
  /* Gap scale */
  --gap-xs: 0.5rem;             /* 8px */
  --gap-sm: 0.75rem;            /* 12px */
  --gap-md: 1rem;               /* 16px */
  --gap-lg: 1.5rem;             /* 24px */
  --gap-xl: 2rem;               /* 32px */
}

/* Tablet breakpoint (640px+) */
@media (min-width: 640px) {
  :root {
    --padding-xs: 0.5rem;       /* 8px */
    --padding-sm: 0.75rem;      /* 12px */
    --padding-md: 1rem;         /* 16px */
    --padding-lg: 1.5rem;       /* 24px */
    --padding-xl: 2rem;         /* 32px */
    --padding-2xl: 2.5rem;      /* 40px */
    
    --margin-xs: 0.5rem;        /* 8px */
    --margin-sm: 0.75rem;       /* 12px */
    --margin-md: 1rem;          /* 16px */
    --margin-lg: 1.5rem;        /* 24px */
    --margin-xl: 2rem;          /* 32px */
    --margin-2xl: 2.5rem;       /* 40px */
    
    --gap-xs: 0.5rem;           /* 8px */
    --gap-sm: 1rem;             /* 16px */
    --gap-md: 1.5rem;           /* 24px */
    --gap-lg: 2rem;             /* 32px */
    --gap-xl: 2.5rem;           /* 40px */
  }
}

/* Desktop breakpoint (768px+) */
@media (min-width: 768px) {
  :root {
    --padding-xs: 0.5rem;       /* 8px */
    --padding-sm: 1rem;         /* 16px */
    --padding-md: 1.25rem;      /* 20px */
    --padding-lg: 1.5rem;       /* 24px */
    --padding-xl: 2rem;         /* 32px */
    --padding-2xl: 3rem;        /* 48px */
    
    --margin-xs: 0.5rem;        /* 8px */
    --margin-sm: 1rem;          /* 16px */
    --margin-md: 1.25rem;       /* 20px */
    --margin-lg: 1.5rem;        /* 24px */
    --margin-xl: 2rem;          /* 32px */
    --margin-2xl: 3rem;         /* 48px */
    
    --gap-xs: 0.5rem;           /* 8px */
    --gap-sm: 1rem;             /* 16px */
    --gap-md: 1.5rem;           /* 24px */
    --gap-lg: 2rem;             /* 32px */
    --gap-xl: 3rem;             /* 48px */
  }
}

/* =============================================================================
   RESPONSIVE PADDING UTILITY CLASSES
   ============================================================================= */

.padding-responsive-sm {
  padding: 0.75rem;             /* 12px mobile */
}

@media (min-width: 640px) {
  .padding-responsive-sm {
    padding: 0.75rem;           /* 12px tablet */
  }
}

@media (min-width: 768px) {
  .padding-responsive-sm {
    padding: 1rem;              /* 16px desktop */
  }
}

.padding-responsive-md {
  padding: 0.75rem;             /* 12px mobile */
}

@media (min-width: 640px) {
  .padding-responsive-md {
    padding: 1rem;              /* 16px tablet */
  }
}

@media (min-width: 768px) {
  .padding-responsive-md {
    padding: 1.25rem;           /* 20px desktop */
  }
}

.padding-responsive-lg {
  padding: 1rem;                /* 16px mobile */
}

@media (min-width: 640px) {
  .padding-responsive-lg {
    padding: 1.5rem;            /* 24px tablet */
  }
}

@media (min-width: 768px) {
  .padding-responsive-lg {
    padding: 1.5rem;            /* 24px desktop */
  }
}

/* =============================================================================
   RESPONSIVE MARGIN UTILITY CLASSES
   ============================================================================= */

.margin-responsive-sm {
  margin: 0.75rem;              /* 12px mobile */
}

@media (min-width: 640px) {
  .margin-responsive-sm {
    margin: 0.75rem;            /* 12px tablet */
  }
}

@media (min-width: 768px) {
  .margin-responsive-sm {
    margin: 1rem;               /* 16px desktop */
  }
}

.margin-responsive-md {
  margin: 1rem;                 /* 16px mobile */
}

@media (min-width: 640px) {
  .margin-responsive-md {
    margin: 1rem;               /* 16px tablet */
  }
}

@media (min-width: 768px) {
  .margin-responsive-md {
    margin: 1.25rem;            /* 20px desktop */
  }
}

/* =============================================================================
   RESPONSIVE GAP UTILITY CLASSES
   ============================================================================= */

.gap-responsive-sm {
  gap: 0.75rem;                 /* 12px mobile */
}

@media (min-width: 640px) {
  .gap-responsive-sm {
    gap: 1rem;                  /* 16px tablet */
  }
}

@media (min-width: 768px) {
  .gap-responsive-sm {
    gap: 1rem;                  /* 16px desktop */
  }
}

.gap-responsive-md {
  gap: 0.75rem;                 /* 12px mobile */
}

@media (min-width: 640px) {
  .gap-responsive-md {
    gap: 1rem;                  /* 16px tablet */
  }
}

@media (min-width: 768px) {
  .gap-responsive-md {
    gap: 1.5rem;                /* 24px desktop */
  }
}

.gap-responsive-lg {
  gap: 1rem;                    /* 16px mobile */
}

@media (min-width: 640px) {
  .gap-responsive-lg {
    gap: 1.5rem;                /* 24px tablet */
  }
}

@media (min-width: 768px) {
  .gap-responsive-lg {
    gap: 2rem;                  /* 32px desktop */
  }
}

/* =============================================================================
   RESPONSIVE HEIGHT AND WIDTH SCALING PATTERNS
   ============================================================================= */

/* Height scaling patterns */
.height-responsive-sm {
  height: 120px;                /* Mobile */
}

@media (min-width: 640px) {
  .height-responsive-sm {
    height: 130px;              /* Tablet */
  }
}

@media (min-width: 768px) {
  .height-responsive-sm {
    height: 140px;              /* Desktop */
  }
}

@media (min-width: 1280px) {
  .height-responsive-sm {
    height: 150px;              /* Large desktop */
  }
}

.height-responsive-md {
  height: 200px;                /* Mobile */
}

@media (min-width: 640px) {
  .height-responsive-md {
    height: 250px;              /* Tablet */
  }
}

@media (min-width: 768px) {
  .height-responsive-md {
    height: 300px;              /* Desktop */
  }
}

@media (min-width: 1024px) {
  .height-responsive-md {
    height: 350px;              /* Large desktop */
  }
}

.height-responsive-lg {
  height: 300px;                /* Mobile */
}

@media (min-width: 640px) {
  .height-responsive-lg {
    height: 400px;              /* Tablet */
  }
}

@media (min-width: 768px) {
  .height-responsive-lg {
    height: 500px;              /* Desktop */
  }
}

@media (min-width: 1024px) {
  .height-responsive-lg {
    height: 600px;              /* Large desktop */
  }
}

/* Width scaling patterns - always constrained to container */
.width-responsive-full {
  width: 100%;
  max-width: 100%;
}

.width-responsive-container {
  width: 100%;
  max-width: 100%;
}

@media (min-width: 640px) {
  .width-responsive-container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .width-responsive-container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .width-responsive-container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .width-responsive-container {
    max-width: 1280px;
  }
}

/* =============================================================================
   SPACE-Y (VERTICAL SPACING) PATTERNS
   ============================================================================= */

.space-y-responsive-sm > * + * {
  margin-top: 1rem;             /* 16px mobile */
}

@media (min-width: 640px) {
  .space-y-responsive-sm > * + * {
    margin-top: 1rem;           /* 16px tablet */
  }
}

@media (min-width: 768px) {
  .space-y-responsive-sm > * + * {
    margin-top: 1.5rem;         /* 24px desktop */
  }
}

.space-y-responsive-md > * + * {
  margin-top: 1rem;             /* 16px mobile */
}

@media (min-width: 640px) {
  .space-y-responsive-md > * + * {
    margin-top: 1.5rem;         /* 24px tablet */
  }
}

@media (min-width: 768px) {
  .space-y-responsive-md > * + * {
    margin-top: 1.5rem;         /* 24px desktop */
  }
}

.space-y-responsive-lg > * + * {
  margin-top: 1.5rem;           /* 24px mobile */
}

@media (min-width: 640px) {
  .space-y-responsive-lg > * + * {
    margin-top: 2rem;           /* 32px tablet */
  }
}

@media (min-width: 768px) {
  .space-y-responsive-lg > * + * {
    margin-top: 2rem;           /* 32px desktop */
  }
}
