: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);
  }
}
:root {
  --ev-c-white: #ffffff;
  --ev-c-white-soft: #f8f8f8;
  --ev-c-white-mute: #f2f2f2;

  --ev-c-black: #1b1b1f;
  --ev-c-black-soft: #222222;
  --ev-c-black-mute: #282828;

  --ev-c-gray-1: #515c67;
  --ev-c-gray-2: #414853;
  --ev-c-gray-3: #32363f;

  --ev-c-text-1: rgba(4, 4, 4, 0.86);
  --ev-c-text-2: rgba(235, 235, 245, 0.6);
  --ev-c-text-3: rgba(235, 235, 245, 0.38);

  --ev-button-alt-border: transparent;
  --ev-button-alt-text: var(--ev-c-text-1);
  --ev-button-alt-bg: var(--ev-c-gray-3);
  --ev-button-alt-hover-border: transparent;
  --ev-button-alt-hover-text: var(--ev-c-text-1);
  --ev-button-alt-hover-bg: var(--ev-c-gray-2);
}

:root {
  --color-background: var(--ev-c-black);
  --color-background-soft: var(--ev-c-black-soft);
  --color-background-mute: var(--ev-c-black-mute);

  --color-text: var(--ev-c-text-1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  font-weight: normal;
}

ul {
  list-style: none;
}

body {
  min-height: 100vh;
  color: var(--color-text);
  background: var(--color-background);
  line-height: 1.6;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    'Fira Sans',
    'Droid Sans',
    'Helvetica Neue',
    sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  /* display: flex;
  align-items: center;
  justify-content: center; */
  overflow: hidden;
  background: #e7e6ee;
  background-size: cover;
  /* user-select: none; */
  user-select: text;
}

code {
  font-weight: 600;
  padding: 3px 5px;
  border-radius: 2px;
  background-color: var(--color-background-mute);
  font-family:
    ui-monospace,
    SFMono-Regular,
    SF Mono,
    Menlo,
    Consolas,
    Liberation Mono,
    monospace;
  font-size: 85%;
}

#root {
  /* display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 80px; */
}

.logo {
  margin-bottom: 20px;
  -webkit-user-drag: none;
  height: 128px;
  width: 128px;
  will-change: filter;
  transition: filter 300ms;
}

.logo:hover {
  filter: drop-shadow(0 0 1.2em #6988e6aa);
}

.creator {
  font-size: 14px;
  line-height: 16px;
  color: var(--ev-c-text-2);
  font-weight: 600;
  margin-bottom: 10px;
}

.text {
  font-size: 28px;
  color: var(--ev-c-text-1);
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  margin: 0 10px;
  padding: 16px 0;
}

.tip {
  font-size: 16px;
  line-height: 24px;
  color: var(--ev-c-text-2);
  font-weight: 600;
}

.react {
  background: -webkit-linear-gradient(315deg, #087ea4 55%, #7c93ee);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.actions {
  display: flex;
  padding-top: 32px;
  margin: -6px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.action {
  flex-shrink: 0;
  padding: 6px;
}

.action a {
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  border: 1px solid transparent;
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 20px;
  padding: 0 20px;
  line-height: 38px;
  font-size: 14px;
  border-color: var(--ev-button-alt-border);
  color: var(--ev-button-alt-text);
  background-color: var(--ev-button-alt-bg);
}

.action a:hover {
  border-color: var(--ev-button-alt-hover-border);
  color: var(--ev-button-alt-hover-text);
  background-color: var(--ev-button-alt-hover-bg);
}

.versions {
  position: absolute;
  bottom: 30px;
  margin: 0 auto;
  padding: 15px 0;
  font-family: 'Menlo', 'Lucida Console', monospace;
  display: inline-flex;
  overflow: hidden;
  align-items: center;
  border-radius: 22px;
  background-color: #202127;
  backdrop-filter: blur(24px);
}

.versions li {
  display: block;
  float: left;
  border-right: 1px solid var(--ev-c-gray-1);
  padding: 0 20px;
  font-size: 14px;
  line-height: 14px;
  opacity: 0.8;
  &:last-child {
    border: none;
  }
}

@media (max-width: 720px) {
  .text {
    font-size: 20px;
  }
}

@media (max-width: 620px) {
  .versions {
    display: none;
  }
}

@media (max-width: 350px) {
  .tip,
  .actions {
    display: none;
  }
}
._updateToast_p28ik_1 {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 400px;
  min-width: 350px;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

._updateToast_p28ik_1._animate_p28ik_12 {
  animation: _slideIn_p28ik_1 0.3s ease-out;
}

@keyframes _slideIn_p28ik_1 {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

._toastHeader_p28ik_27 {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  gap: 12px;
}

._icon_p28ik_34 {
  font-size: 24px;
  color: #3b82f6;
}

._title_p28ik_39 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  flex: 1;
}

._closeButton_p28ik_46 {
  background: none;
  border: none;
  cursor: pointer;
  color: #6b7280;
  padding: 4px;
  border-radius: 4px;
  transition: background-color 0.2s;
}

._closeButton_p28ik_46:hover {
  background-color: #f3f4f6;
}

._toastBody_p28ik_60 {
  margin-bottom: 16px;
}

._version_p28ik_64 {
  font-size: 18px;
  color: #4b5563;
  margin-bottom: 12px;
}

._releaseNotes_p28ik_70 {
  background-color: #f9fafb;
  border-radius: 8px;
  padding: 12px;
  margin-top: 12px;
}

._releaseNotesTitle_p28ik_77 {
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}

._releaseNotesContent_p28ik_84 {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
  max-height: 100px;
  overflow-y: auto;
}

._toastActions_p28ik_92 {
  display: flex;
  gap: 12px;
}

._updateButton_p28ik_97 {
  flex: 1;
  padding: 10px 16px;
  background-color: #3b82f6;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

._updateButton_p28ik_97:hover:not(:disabled) {
  background-color: #2563eb;
}

._updateButton_p28ik_97:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

._snoozeButton_p28ik_119 {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background-color: #f3f4f6;
  color: #4b5563;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

._snoozeButton_p28ik_119:hover {
  background-color: #e5e7eb;
}

._manualCheckContainer_p28ik_138 {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
}

._checkButton_p28ik_145 {
  padding: 10px 20px;
  background-color: #f3f4f6;
  color: #374151;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

._checkButton_p28ik_145:hover:not(:disabled) {
  background-color: #e5e7eb;
}

._checkButton_p28ik_145:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Custom toast styles */
._toast_p28ik_27 {
  background: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* Scrollbar styles for release notes */
._releaseNotesContent_p28ik_84::-webkit-scrollbar {
  width: 6px;
}

._releaseNotesContent_p28ik_84::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

._releaseNotesContent_p28ik_84::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

._releaseNotesContent_p28ik_84::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}
/* Base button styles */
._button_uf4z3_3 {
  display: inline-block;
  border: 1px solid;
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 0.375rem; /* 6px */
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  outline: none;
  font-family: inherit;
}

/* Primary variant */
._primary_uf4z3_33 {
  border-color: #3b82f6; /* blue-500 */
  background-color: #3b82f6;
  color: white;
}

._primary_uf4z3_33:hover:not(:disabled) {
  border-color: #2563eb; /* blue-600 */
  background-color: #2563eb;
}

._primary_uf4z3_33:focus {
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}

/* Secondary variant */
._secondary_uf4z3_65 {
  border-color: #d1d5db; /* gray-300 */
  background-color: white;
  color: #374151; /* gray-700 */
}

._secondary_uf4z3_65:hover:not(:disabled) {
  border-color: #9ca3af; /* gray-400 */
  background-color: #f9fafb; /* gray-50 */
}

._secondary_uf4z3_65:focus {
  box-shadow: 0 0 0 2px rgba(156, 163, 175, 0.3);
}

/* Outline variant */
._outline_uf4z3_97 {
  border-color: #3b82f6; /* blue-500 */
  background-color: transparent;
  color: #3b82f6;
}

._outline_uf4z3_97:hover:not(:disabled) {
  background-color: #eff6ff; /* blue-50 */
}

._outline_uf4z3_97:focus {
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}

/* Size variants */
._small_uf4z3_127 {
  padding: 0.25rem 0.75rem; /* py-1 px-3 */
  font-size: 0.875rem; /* text-sm */
  line-height: 1.25rem;
}

._medium_uf4z3_139 {
  padding: 0.5rem 1.25rem; /* py-2 px-5 */
  font-size: 1rem; /* text-base */
  line-height: 1.5rem;
}

._large_uf4z3_151 {
  padding: 0.75rem 1.5rem; /* py-3 px-6 */
  font-size: 1.125rem; /* text-lg */
  line-height: 1.75rem;
}

/* Disabled state */
._disabled_uf4z3_165 {
  opacity: 0.5;
  cursor: not-allowed;
}

._disabled_uf4z3_165:hover {
  /* Override hover effects when disabled */
  transform: none;
}
/* Card base */
._card_y0uld_3 {
  background: white;
  color: #1f2937;
  border-radius: 16px;
  box-shadow:
    0 1px 3px 0 rgba(0, 0, 0, 0.08),
    0 1.5px 6px 0 rgba(0, 0, 0, 0.04);
  transition:
    box-shadow 0.2s,
    background 0.2s,
    border 0.2s,
    color 0.2s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

._card--rounded_y0uld_39 {
  border-radius: 16px;
}

._card--shadow0_y0uld_47 {
  box-shadow: none;
}
._card--shadow1_y0uld_53 {
  box-shadow:
    0 1px 3px 0 rgba(0, 0, 0, 0.08),
    0 1.5px 6px 0 rgba(0, 0, 0, 0.04);
}
._card--shadow2_y0uld_63 {
  box-shadow:
    0 2px 8px 0 rgba(0, 0, 0, 0.1),
    0 4px 16px 0 rgba(0, 0, 0, 0.06);
}
._card--shadow3_y0uld_73 {
  box-shadow:
    0 4px 16px 0 rgba(0, 0, 0, 0.12),
    0 8px 32px 0 rgba(0, 0, 0, 0.08);
}
._card--shadow4_y0uld_83 {
  box-shadow:
    0 8px 32px 0 rgba(0, 0, 0, 0.14),
    0 16px 64px 0 rgba(0, 0, 0, 0.1);
}
._card--shadow5_y0uld_93 {
  box-shadow:
    0 16px 64px 0 rgba(0, 0, 0, 0.16),
    0 32px 128px 0 rgba(0, 0, 0, 0.12);
}

._card--hoverable_y0uld_105:hover {
  box-shadow:
    0 8px 32px 0 rgba(59, 130, 246, 0.15),
    0 16px 64px 0 rgba(59, 130, 246, 0.08);
  transform: translateY(-2px) scale(1.01);
  cursor: pointer;
}

._card--clickable_y0uld_121 {
  cursor: pointer;
  user-select: none;
}

._card--disabled_y0uld_131 {
  opacity: 0.6;
  pointer-events: none;
}

/* Card variants */
._card--default_y0uld_143 {
  border: 1px solid #e5e7eb;
  background: white;
}

._card--outlined_y0uld_153 {
  border: 2px solid #3b82f6;
  background: white;
}

._card--elevated_y0uld_163 {
  border: none;
  box-shadow:
    0 8px 32px 0 rgba(59, 130, 246, 0.15),
    0 16px 64px 0 rgba(59, 130, 246, 0.08);
}

._card--gradient_y0uld_177 {
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  color: white;
  border: none;
}

._card--glass_y0uld_189 {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid #e5e7eb;
}

._card--info_y0uld_201 {
  border: 1.5px solid #06b6d4;
  background: #ecfeff;
  color: #0e7490;
}

._card--success_y0uld_213 {
  border: 1.5px solid #10b981;
  background: #ecfdf5;
  color: #047857;
}

._card--warning_y0uld_225 {
  border: 1.5px solid #f59e0b;
  background: #fefce8;
  color: #b45309;
}

._card--danger_y0uld_237 {
  border: 1.5px solid #ef4444;
  background: #fef2f2;
  color: #b91c1c;
}

/* Card sizes */
._card--small_y0uld_251 {
  max-width: 320px;
  min-width: 180px;
  font-size: 14px;
  padding: 12px;
}

._card--medium_y0uld_265 {
  max-width: 480px;
  min-width: 220px;
  font-size: 15px;
  padding: 20px;
}

._card--large_y0uld_279 {
  max-width: 700px;
  min-width: 320px;
  font-size: 17px;
  padding: 32px 28px;
}

._card--full_y0uld_293 {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  font-size: 17px;
  padding: 32px 28px;
}

/* Card header */
._header_y0uld_311 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

._headerContent_y0uld_327 {
  flex: 1;
}

._title_y0uld_335 {
  margin: 0 0 2px 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: inherit;
  line-height: 1.3;
}

._subtitle_y0uld_351 {
  margin: 0;
  font-size: 1rem;
  color: #6b7280;
  font-weight: 400;
  line-height: 1.2;
}

._actions_y0uld_367 {
  display: flex;
  gap: 6px;
  align-items: center;
}

/* Card media */
._media_y0uld_381 {
  width: 100%;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  background: #f3f4f6;
}

._media_y0uld_381 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  max-height: 220px;
}

/* Card body */
._body_y0uld_421 {
  flex: 1;
  margin-bottom: 12px;
  color: inherit;
}

/* Card footer */
._footer_y0uld_435 {
  border-top: 1px solid #e5e7eb;
  padding-top: 12px;
  margin-top: 8px;
  color: #6b7280;
  font-size: 0.98em;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

/* Responsive */
@media (max-width: 600px) {
  ._card--small_y0uld_251,
  ._card--medium_y0uld_265,
  ._card--large_y0uld_279,
  ._card--full_y0uld_293 {
    max-width: 100%;
    min-width: 0;
    padding: 12px 6px;
  }
  ._media_y0uld_381 img {
    max-height: 120px;
  }
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  ._card_y0uld_3 {
    background: #1f2937;
    color: #f9fafb;
    border-color: #374151;
  }
  ._card--default_y0uld_143 {
    border-color: #374151;
    background: #1f2937;
  }
  ._card--outlined_y0uld_153 {
    border-color: #3b82f6;
    background: #111827;
  }
  ._card--elevated_y0uld_163 {
    background: #111827;
  }
  ._card--gradient_y0uld_177 {
    background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
    color: #f9fafb;
  }
  ._card--glass_y0uld_189 {
    background: rgba(31, 41, 55, 0.7);
    border-color: #374151;
  }
  ._card--info_y0uld_201 {
    border-color: #06b6d4;
    background: #0e7490;
    color: #ecfeff;
  }
  ._card--success_y0uld_213 {
    border-color: #10b981;
    background: #047857;
    color: #ecfdf5;
  }
  ._card--warning_y0uld_225 {
    border-color: #f59e0b;
    background: #b45309;
    color: #fefce8;
  }
  ._card--danger_y0uld_237 {
    border-color: #ef4444;
    background: #b91c1c;
    color: #fef2f2;
  }
  ._footer_y0uld_435 {
    border-top-color: #374151;
    color: #9ca3af;
  }
  ._subtitle_y0uld_351 {
    color: #9ca3af;
  }
}

/* Accessibility */
._card_y0uld_3:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

._card--disabled_y0uld_131 {
  opacity: 0.5;
  pointer-events: none;
}
._sidebar_741cr_1 {
  width: 320px;
  background-color: #1e1e2f;
  color: white;
  padding: 0.5rem;
  /* make height full screen */
  height: 100vh;
  overflow-y: auto;
}

._sidebar_741cr_1 ._logo_741cr_21 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

._sidebar_741cr_1 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

._sidebar_741cr_1 a {
  color: white;
  text-decoration: none;
}

._sidebar_741cr_1 a._active_741cr_53 {
  font-weight: bold;
  color: #00d8ff;
}

/* New styles for nested route structure */
._routesList_741cr_65 {
  list-style: none;
  padding: 0;
  margin: 0;
}

._routeItem_741cr_77 {
  margin: 0;
  padding: 0;
}

._routeLink_741cr_87 {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  padding: 8px;
  margin: 3px 0;
  transition: all 0.3s ease;
  background-color: rgba(62, 62, 74, 0);
}

._routeLink_741cr_87:hover {
  background-color: rgba(62, 62, 74, 0.7);
}

._routeLink_741cr_87._active_741cr_53 {
  font-weight: bold;
  color: #00d8ff;
  background-color: rgba(62, 62, 74, 1);
}

._routeContent_741cr_131 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
}

._routeIcon_741cr_147 {
  font-size: 1.2rem;
  min-width: 20px;
}

._routeLabel_741cr_157 {
  flex: 1;
  font-size: 0.9rem;
}

._chevron_741cr_167 {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
  color: #ccc;
}

._chevron_741cr_167._expanded_741cr_181 {
  transform: rotate(90deg);
}

._subRoutes_741cr_189 {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  animation: _slideDown_741cr_1 0.3s ease;
}

._subRoutes_741cr_189 {
  max-height: 1000px; /* Large enough value for expanded state */
}

/* Animation for sub-routes */
@keyframes _slideDown_741cr_1 {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 1000px;
  }
}

/* Responsive design */
@media (max-width: 768px) {
  ._sidebar_741cr_1 {
    width: 60px;
  }

  ._routeLabel_741cr_157 {
    display: none;
  }

  ._chevron_741cr_167 {
    display: none;
  }

  ._sidebar_741cr_1 ._logo_741cr_21 h2 {
    font-size: 1rem;
  }
}
._menuContainer_57t20_1 {
  position: relative;
}

._trigger_57t20_9 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 6px 10px;
  background: #f9fafb;
  color: #1f2937;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  cursor: pointer;
}

._trigger_57t20_9:hover {
  background: #f3f4f6;
}

._avatar_57t20_41 {
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  background: #2563eb;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.8rem;
}

._name_57t20_67 {
  font-size: 0.9rem;
}

._chevron_57t20_75 {
  font-size: 0.8rem;
  color: #6b7280;
}

._dropdown_57t20_85 {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 240px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  padding: 8px;
  z-index: 20;
}

._header_57t20_111 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
}

._headerAvatar_57t20_125 {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  background: #2563eb;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

._headerInfo_57t20_149 {
  display: flex;
  flex-direction: column;
}

._headerName_57t20_159 {
  font-weight: 600;
  color: #111827;
}

._headerEmail_57t20_169 {
  font-size: 0.8rem;
  color: #6b7280;
}

._divider_57t20_179 {
  height: 1px;
  background: #e5e7eb;
  margin: 6px 0;
}

._item_57t20_191 {
  width: 100%;
  text-align: left;
  padding: 8px 10px;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: #1f2937;
}

._item_57t20_191:hover {
  background: #f3f4f6;
}
._topBar_eqnha_1 {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 1rem;
  background-color: #ffffff;
  border-bottom: 1px solid #eaeaea;
  border-top-left-radius: 8px;
  width: calc(100vw - 320px);
}

._left_eqnha_31 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

._title_eqnha_43 {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
}

._right_eqnha_55 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
._dashboardLayout_15ywq_1 {
  display: flex;
  height: 100vh;
}

._dashboardContent_15ywq_11 {
  padding: 1rem;
}
._flexArea_15ywq_17 {
  flex: 1;
  overflow-y: auto;
}

._backButton_15ywq_27 {
  /* position: absolute;
  top: 1rem;
  left: 1rem; */
  background: none;
  align-items: center;
  border: none;
  cursor: pointer;
  color: #666;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 1rem;
  /* margin-left: 1rem; */
  margin-top: 1rem;
  margin-right: 1rem;
  border-radius: 0.5rem;

  &:hover {
    /* background-color: #f0f0f0; */
    color: #6063f0;
    /* border: 1px solid #000; */
  }
}

._backButton_15ywq_27._hidden_15ywq_77 {
  display: none;
}
/* Container wrapper */
._container_7x37m_3 {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Label styles */
._label_7x37m_17 {
  font-size: 0.875rem;
  font-weight: 500;
  color: inherit; /* gray-700 */
  margin-bottom: 0.375rem;
  display: block;
}

._labelRequired_7x37m_33::after {
  content: ' *';
  color: #ef4444; /* red-500 */
}

/* Input wrapper for icons and addons */
._inputWrapper_7x37m_45 {
  position: relative;
  display: flex;
  align-items: center;
}

/* Base input styles */
._input_7x37m_45 {
  width: 100%;
  border: 1px solid #d1d5db; /* gray-300 */
  border-radius: 0.375rem; /* 6px */
  background-color: white;
  color: #111827; /* gray-900 */
  font-size: 1rem;
  line-height: 1.5;
  transition: all 0.2s ease-in-out;
  outline: none;
  font-family: inherit;

  position: relative;
  z-index: 2; /* ensure it's above label/icons */
}

._input_7x37m_45::placeholder {
  color: #9ca3af; /* gray-400 */
}

._input_7x37m_45:focus {
  border-color: #3b82f6; /* blue-500 */
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Size variants */
._small_7x37m_111 {
  padding: 0.375rem 0.75rem; /* py-1.5 px-3 */
  font-size: 0.875rem;
  line-height: 1.25;
}

._medium_7x37m_123 {
  padding: 0.5rem 0.75rem; /* py-2 px-3 */
  font-size: 1rem;
  line-height: 1.5;
}

._large_7x37m_135 {
  padding: 0.75rem 1rem; /* py-3 px-4 */
  font-size: 1.125rem;
  line-height: 1.75;
}

/* Variant styles */
._default_7x37m_149 {
  border-color: #d1d5db; /* gray-300 */
}

._success_7x37m_157 {
  border-color: #10b981; /* green-500 */
}

._success_7x37m_157:focus {
  border-color: #059669; /* green-600 */
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

._error_7x37m_175 {
  border-color: #ef4444; /* red-500 */
}

._error_7x37m_175:focus {
  border-color: #dc2626; /* red-600 */
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

._warning_7x37m_193 {
  border-color: #f59e0b; /* amber-500 */
}

._warning_7x37m_193:focus {
  border-color: #d97706; /* amber-600 */
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

/* Disabled state */
._disabled_7x37m_213 {
  background-color: #f9fafb; /* gray-50 */
  color: #6b7280; /* gray-500 */
  cursor: not-allowed;
  opacity: 0.7;
}

._disabled_7x37m_213::placeholder {
  color: #9ca3af; /* gray-400 */
}

/* Read-only state */
._readonly_7x37m_237 {
  background-color: #f9fafb; /* gray-50 */
  cursor: default;
}

/* Icon styles */
._leftIcon_7x37m_249,
._rightIcon_7x37m_251 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280; /* gray-500 */
  pointer-events: none;
  z-index: 1;
}

._leftIcon_7x37m_249 {
  left: 0.75rem;
}

._rightIcon_7x37m_251 {
  right: 0.75rem;
}

/* Input with icons padding adjustments */
._hasLeftIcon_7x37m_287 {
  padding-left: 2.5rem;
}

._hasRightIcon_7x37m_295 {
  padding-right: 2.5rem;
}

/* Helper text */
._helperText_7x37m_305 {
  font-size: 0.75rem;
  margin-top: 0.375rem;
  line-height: 1.25;
}

._helperDefault_7x37m_317 {
  color: #6b7280; /* gray-500 */
}

._helperSuccess_7x37m_325 {
  color: #10b981; /* green-500 */
}

._helperError_7x37m_333 {
  color: #ef4444; /* red-500 */
}

._helperWarning_7x37m_341 {
  color: #f59e0b; /* amber-500 */
}

/* Character count */
._characterCount_7x37m_351 {
  font-size: 0.75rem;
  color: #6b7280; /* gray-500 */
  margin-top: 0.25rem;
  text-align: right;
}

._characterCountOver_7x37m_365 {
  color: #ef4444; /* red-500 */
}

/* Textarea specific styles */
._textarea_7x37m_375 {
  resize: vertical;
  min-height: 3rem;
}

._textareaNoResize_7x37m_385 {
  resize: none;
}

/* Loading state */
._loading_7x37m_395 {
  position: relative;
}

._loadingSpinner_7x37m_403 {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  border: 2px solid #e5e7eb;
  border-top: 2px solid #3b82f6;
  border-radius: 50%;
  animation: _spin_7x37m_1 1s linear infinite;
}

@keyframes _spin_7x37m_1 {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}

/* Focus within container */
._focusWithin_7x37m_449:focus-within ._label_7x37m_17 {
  color: #3b82f6; /* blue-500 */
}

/* Floating label variant */
._floatingLabel_7x37m_459 {
  position: relative;
}

._floatingLabelText_7x37m_467 {
  position: absolute;
  left: 0.75rem;
  top: 0.5rem;
  font-size: 1rem;
  color: #6b7280;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
  background-color: white;
  padding: 0 0.25rem;
  z-index: 1;
}

._floatingInput_7x37m_493:focus + ._floatingLabelText_7x37m_467,
._floatingInput_7x37m_493:not(:placeholder-shown) + ._floatingLabelText_7x37m_467 {
  top: -0.5rem;
  left: 0.5rem;
  font-size: 0.75rem;
  color: #3b82f6;
}

/* Input group styles for addons */
._inputGroup_7x37m_511 {
  display: flex;
  width: 100%;
}

._inputGroupAddon_7x37m_521 {
  background-color: #f3f4f6; /* gray-100 */
  border: 1px solid #d1d5db; /* gray-300 */
  color: #6b7280; /* gray-500 */
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  pointer-events: none;
}

._inputGroupAddonLeft_7x37m_545 {
  border-right: none;
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

._inputGroupAddonRight_7x37m_557 {
  border-left: none;
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}

._inputGroupInput_7x37m_569 {
  border-radius: 0;
}

._inputGroupInputLeft_7x37m_577 {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

._inputGroupInputRight_7x37m_587 {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
/* Backdrop */
._backdrop_1afsi_3 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
  transition: all 0.3s ease;
}

/* Backdrop animations */
._backdrop--fade_1afsi_33 {
  animation: _backdropFadeIn_1afsi_1 0.3s ease-out;
}

._backdrop--slide_1afsi_41 {
  animation: _backdropFadeIn_1afsi_1 0.3s ease-out;
}

._backdrop--zoom_1afsi_49 {
  animation: _backdropFadeIn_1afsi_1 0.3s ease-out;
}

/* Modal container */
._modal_1afsi_59 {
  background: white;
  border-radius: 12px;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  max-height: 90vh;
  max-width: 90vw;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  outline: none;
  overflow: hidden;
  transform: scale(1);
  transition: all 0.3s ease;
}

/* Modal sizes */
._modal--small_1afsi_97 {
  max-width: 400px;
}

._modal--medium_1afsi_105 {
  max-width: 600px;
}

._modal--large_1afsi_113 {
  max-width: 800px;
}

._modal--xlarge_1afsi_121 {
  max-width: 1200px;
}

._modal--fullscreen_1afsi_129 {
  max-width: 100vw;
  max-height: 100vh;
  width: 100vw;
  height: 100vh;
  border-radius: 0;
}

/* Modal variants */
._modal--default_1afsi_147 {
  border-top: 4px solid #3b82f6;
}

._modal--warning_1afsi_155 {
  border-top: 4px solid #f59e0b;
}

._modal--danger_1afsi_163 {
  border-top: 4px solid #ef4444;
}

._modal--success_1afsi_171 {
  border-top: 4px solid #10b981;
}

._modal--info_1afsi_179 {
  border-top: 4px solid #06b6d4;
}

/* Modal positions */
._modal--center_1afsi_189 {
  margin: auto;
}

._modal--top_1afsi_197 {
  margin-top: 5vh;
  margin-bottom: auto;
  margin-left: auto;
  margin-right: auto;
}

._modal--bottom_1afsi_211 {
  margin-top: auto;
  margin-bottom: 5vh;
  margin-left: auto;
  margin-right: auto;
}

/* Modal animations */
._modal--fade_1afsi_227 {
  animation: _modalFadeIn_1afsi_1 0.3s ease-out;
}

._modal--slide_1afsi_235 {
  animation: _modalSlideIn_1afsi_1 0.3s ease-out;
}

._modal--zoom_1afsi_243 {
  animation: _modalZoomIn_1afsi_1 0.3s ease-out;
}

/* Loading state */
._modal--loading_1afsi_253 {
  pointer-events: none;
}

._loadingOverlay_1afsi_261 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: inherit;
}

._spinner_1afsi_289 {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f4f6;
  border-top: 4px solid #3b82f6;
  border-radius: 50%;
  animation: _spin_1afsi_289 1s linear infinite;
}

/* Header */
._header_1afsi_309 {
  padding: 20px 24px 16px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}

._title_1afsi_327 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.5;
}

._closeButton_1afsi_343 {
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: #6b7280;
  cursor: pointer;
  padding: 4px;
  margin: -4px;
  border-radius: 4px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

._closeButton_1afsi_343:hover {
  background-color: #f3f4f6;
  color: #374151;
}

._closeButton_1afsi_343:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Content */
._content_1afsi_401 {
  padding: 20px 24px;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
}

/* Footer */
._footer_1afsi_417 {
  padding: 16px 24px 20px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-shrink: 0;
}

/* Animations */
@keyframes _backdropFadeIn_1afsi_1 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes _modalFadeIn_1afsi_1 {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes _modalSlideIn_1afsi_1 {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes _modalZoomIn_1afsi_1 {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes _spin_1afsi_289 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive design */
@media (max-width: 768px) {
  ._modal_1afsi_59 {
    max-width: 95vw;
    max-height: 95vh;
    margin: 2.5vh auto;
  }

  ._modal--fullscreen_1afsi_129 {
    margin: 0;
    border-radius: 0;
  }

  ._header_1afsi_309 {
    padding: 16px 20px 12px;
  }

  ._content_1afsi_401 {
    padding: 16px 20px;
  }

  ._footer_1afsi_417 {
    padding: 12px 20px 16px;
    flex-direction: column-reverse;
    gap: 8px;
  }

  ._footer_1afsi_417 > * {
    width: 100%;
  }
}

@media (max-width: 480px) {
  ._modal--small_1afsi_97,
  ._modal--medium_1afsi_105,
  ._modal--large_1afsi_113,
  ._modal--xlarge_1afsi_121 {
    max-width: 100vw;
    max-height: 100vh;
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    margin: 0;
  }

  ._title_1afsi_327 {
    font-size: 1.125rem;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  ._modal_1afsi_59 {
    background: #1f2937;
    color: #f9fafb;
  }

  ._header_1afsi_309 {
    border-bottom-color: #374151;
  }

  ._footer_1afsi_417 {
    border-top-color: #374151;
  }

  ._title_1afsi_327 {
    color: #f9fafb;
  }

  ._closeButton_1afsi_343 {
    color: #9ca3af;
  }

  ._closeButton_1afsi_343:hover {
    background-color: #374151;
    color: #f3f4f6;
  }

  ._loadingOverlay_1afsi_261 {
    background: rgba(31, 41, 55, 0.8);
  }

  ._spinner_1afsi_289 {
    border-color: #374151;
    border-top-color: #3b82f6;
  }
}

/* Focus management */
._modal_1afsi_59:focus {
  outline: none;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  ._modal_1afsi_59,
  ._backdrop_1afsi_3,
  ._closeButton_1afsi_343,
  ._spinner_1afsi_289 {
    animation: none !important;
    transition: none !important;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  ._modal_1afsi_59 {
    border: 2px solid;
  }

  ._closeButton_1afsi_343 {
    border: 1px solid;
  }
}
/* Container */
._container_m2myl_3 {
  width: 100%;
  font-family:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell',
    sans-serif;
  color: #374151;
  background: white;
  border-radius: 8px;
  box-shadow:
    0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

/* Controls */
._controls_m2myl_33 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  gap: 16px;
  flex-wrap: wrap;
}

._globalFilter_m2myl_55 {
  flex: 1;
  min-width: 200px;
}

._searchInput_m2myl_65 {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.2s ease;
}

._searchInput_m2myl_65:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

._exportControls_m2myl_95 {
  display: flex;
  gap: 8px;
}

._exportButton_m2myl_105 {
  padding: 8px 12px;
  background: #3b82f6;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

._exportButton_m2myl_105:hover {
  background: #2563eb;
}

._exportButton_m2myl_105:disabled {
  background: #9ca3af;
  cursor: not-allowed;
}

/* Table Container */
._tableContainer_m2myl_147 {
  overflow: auto;
  position: relative;
}

/* Table */
._table_m2myl_147 {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
}

/* Table Variants */
._table--default_m2myl_173 {
  /* Default styling already applied */
}

._table--striped_m2myl_181 tbody tr:nth-child(even) {
  background-color: #f9fafb;
}

._table--bordered_m2myl_189 {
  border: 1px solid #e5e7eb;
}

._table--bordered_m2myl_189 th,
._table--bordered_m2myl_189 td {
  border: 1px solid #e5e7eb;
}

._table--hover_m2myl_207 tbody tr:hover {
  background-color: #f3f4f6;
}

._table--compact_m2myl_215 th,
._table--compact_m2myl_215 td {
  padding: 8px 12px;
}

/* Table Sizes */
._table--small_m2myl_227 th,
._table--small_m2myl_227 td {
  padding: 6px 10px;
  font-size: 13px;
}

._table--medium_m2myl_239 th,
._table--medium_m2myl_239 td {
  padding: 12px 16px;
  font-size: 14px;
}

._table--large_m2myl_251 th,
._table--large_m2myl_251 td {
  padding: 16px 20px;
  font-size: 16px;
}

/* Sticky Header */
._table--sticky_m2myl_265 thead {
  position: sticky;
  top: 0;
  z-index: 10;
  background: white;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

/* Selection */
._table--selectable_m2myl_283 tbody tr {
  cursor: pointer;
}

._table--selectable_m2myl_283 tbody tr._selected_m2myl_291 {
  background-color: rgba(59, 130, 246, 0.1);
}

/* Header */
._headerCell_m2myl_301 {
  background: #f9fafb;
  font-weight: 600;
  text-align: left;
  padding: 12px 16px;
  border-bottom: 2px solid #e5e7eb;
  white-space: nowrap;
  user-select: none;
}

._headerCell_m2myl_301._sortable_m2myl_321 {
  cursor: pointer;
  transition: background-color 0.2s ease;
}

._headerCell_m2myl_301._sortable_m2myl_321:hover {
  background-color: #f3f4f6;
}

._headerContent_m2myl_339 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

._sortIcons_m2myl_353 {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  line-height: 1;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

._sortable_m2myl_321:hover ._sortIcons_m2myl_353 {
  opacity: 1;
}

._sortIcon_m2myl_353 {
  transition: color 0.2s ease;
}

._sortIcon_m2myl_353._active_m2myl_387 {
  color: #3b82f6;
  opacity: 1;
}

._columnFilter_m2myl_397 {
  width: 100%;
  padding: 4px 8px;
  margin-top: 8px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 12px;
  font-weight: normal;
}

._columnFilter_m2myl_397:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

/* Special Headers */
._selectionHeader_m2myl_431,
._expansionHeader_m2myl_433,
._actionsHeader_m2myl_435 {
  width: 40px;
  text-align: center;
}

._selectionHeader_m2myl_431 input[type='checkbox'] {
  cursor: pointer;
}

/* Body */
._row_m2myl_455 {
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #f3f4f6;
}

._row_m2myl_455:last-child {
  border-bottom: none;
}

._row_m2myl_455._selected_m2myl_291 {
  background-color: rgba(59, 130, 246, 0.05);
}

._cell_m2myl_481 {
  padding: 12px 16px;
  vertical-align: top;
  word-wrap: break-word;
  max-width: 300px;
}

._cell_m2myl_481 mark {
  background-color: #fef08a;
  padding: 0 2px;
  border-radius: 2px;
}

/* Special Cells */
._selectionCell_m2myl_509,
._expansionCell_m2myl_511,
._actionsCell_m2myl_513 {
  width: 40px;
  text-align: center;
  padding: 8px;
}

._selectionCell_m2myl_509 input {
  cursor: pointer;
}

._expandButton_m2myl_533 {
  background: none;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.2s ease;
}

._expandButton_m2myl_533:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
}

._actionsContainer_m2myl_573 {
  display: flex;
  gap: 4px;
  justify-content: center;
}

._actionButton_m2myl_585 {
  padding: 4px 8px;
  background: #f3f4f6;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.2s ease;
}

._actionButton_m2myl_585:hover {
  background: #e5e7eb;
}

._actionButton_m2myl_585:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Expanded Content */
._expandedRow_m2myl_625 {
  background: #f9fafb;
}

._expandedContent_m2myl_633 {
  padding: 16px;
  border-top: 1px solid #e5e7eb;
}

/* Footer */
._footer_m2myl_645 {
  background: #f9fafb;
  border-top: 2px solid #e5e7eb;
}

._footerCell_m2myl_655 {
  padding: 12px 16px;
  font-weight: 600;
  color: #6b7280;
}

/* Pagination */
._pagination_m2myl_669 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  flex-wrap: wrap;
  gap: 16px;
}

._paginationInfo_m2myl_691 {
  color: #6b7280;
  font-size: 14px;
}

._paginationControls_m2myl_701 {
  display: flex;
  gap: 4px;
}

._paginationButton_m2myl_711 {
  padding: 8px 12px;
  background: white;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

._paginationButton_m2myl_711:hover:not(:disabled) {
  background: #f3f4f6;
  border-color: #9ca3af;
}

._paginationButton_m2myl_711._active_m2myl_387 {
  background: #3b82f6;
  color: white;
  border-color: #3b82f6;
}

._paginationButton_m2myl_711:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Loading State */
._loading_m2myl_773 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  color: #6b7280;
}

._spinner_m2myl_789 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

._spinnerIcon_m2myl_803 {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f4f6;
  border-top: 4px solid #3b82f6;
  border-radius: 50%;
  animation: _spin_m2myl_789 1s linear infinite;
}

/* Empty State */
._empty_m2myl_823 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  color: #6b7280;
}

._emptyContent_m2myl_839 {
  text-align: center;
}

._emptyContent_m2myl_839 p {
  margin: 0;
  font-size: 16px;
}

/* Responsive Design */
._table--responsive_m2myl_859 {
  /* Default table layout for desktop */
}

@media (max-width: 768px) {
  ._table--responsive_m2myl_859 {
    border: 0;
  }

  ._table--responsive_m2myl_859 caption {
    font-size: 1.3em;
  }

  ._table--responsive_m2myl_859 thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  ._table--responsive_m2myl_859 tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: 0.625em;
  }

  ._table--responsive_m2myl_859 td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: 0.8em;
    text-align: right;
    padding-left: 50%;
    position: relative;
  }

  ._table--responsive_m2myl_859 td:before {
    content: attr(data-label) ': ';
    font-weight: bold;
    left: 6px;
    position: absolute;
    text-align: left;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
  }

  ._table--responsive_m2myl_859 ._selectionCell_m2myl_509,
  ._table--responsive_m2myl_859 ._expansionCell_m2myl_511,
  ._table--responsive_m2myl_859 ._actionsCell_m2myl_513 {
    text-align: center;
    padding-left: 16px;
  }

  ._table--responsive_m2myl_859 ._selectionCell_m2myl_509:before,
  ._table--responsive_m2myl_859 ._expansionCell_m2myl_511:before,
  ._table--responsive_m2myl_859 ._actionsCell_m2myl_513:before {
    display: none;
  }

  ._controls_m2myl_33 {
    flex-direction: column;
    align-items: stretch;
  }

  ._globalFilter_m2myl_55 {
    order: 1;
    min-width: auto;
  }

  ._exportControls_m2myl_95 {
    order: 2;
    justify-content: center;
  }

  ._pagination_m2myl_669 {
    flex-direction: column;
    gap: 12px;
  }

  ._paginationInfo_m2myl_691 {
    text-align: center;
  }

  ._paginationControls_m2myl_701 {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  ._container_m2myl_3 {
    border-radius: 0;
    box-shadow: none;
  }

  ._controls_m2myl_33 {
    padding: 12px 16px;
  }

  ._exportButton_m2myl_105 {
    font-size: 12px;
    padding: 6px 10px;
  }

  ._table--small_m2myl_227 th,
  ._table--small_m2myl_227 td {
    padding: 4px 8px;
    font-size: 12px;
  }

  ._paginationButton_m2myl_711 {
    padding: 6px 8px;
    font-size: 12px;
    min-width: 32px;
  }
}

/* Animations */
@keyframes _spin_m2myl_789 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  ._container_m2myl_3 {
    background: #1f2937;
    color: #f9fafb;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
  }

  ._controls_m2myl_33 {
    background: #111827;
    border-bottom-color: #374151;
  }

  ._searchInput_m2myl_65 {
    background: #374151;
    border-color: #4b5563;
    color: #f9fafb;
  }

  ._searchInput_m2myl_65:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
  }

  ._table_m2myl_147 {
    background: #1f2937;
  }

  ._headerCell_m2myl_301 {
    background: #111827;
    border-bottom-color: #374151;
    color: #f9fafb;
  }

  ._headerCell_m2myl_301._sortable_m2myl_321:hover {
    background: #1f2937;
  }

  ._table--striped_m2myl_181 tbody tr:nth-child(even) {
    background-color: #111827;
  }

  ._table--hover_m2myl_207 tbody tr:hover {
    background-color: #374151;
  }

  ._table--bordered_m2myl_189 {
    border-color: #374151;
  }

  ._table--bordered_m2myl_189 th,
  ._table--bordered_m2myl_189 td {
    border-color: #374151;
  }

  ._row_m2myl_455 {
    border-bottom-color: #374151;
  }

  ._row_m2myl_455._selected_m2myl_291 {
    background-color: rgba(59, 130, 246, 0.2);
  }

  ._columnFilter_m2myl_397 {
    background: #374151;
    border-color: #4b5563;
    color: #f9fafb;
  }

  ._expandButton_m2myl_533 {
    background: #374151;
    border-color: #4b5563;
    color: #f9fafb;
  }

  ._expandButton_m2myl_533:hover {
    background: #4b5563;
  }

  ._actionButton_m2myl_585 {
    background: #374151;
    border-color: #4b5563;
    color: #f9fafb;
  }

  ._actionButton_m2myl_585:hover {
    background: #4b5563;
  }

  ._expandedRow_m2myl_625 {
    background: #111827;
  }

  ._expandedContent_m2myl_633 {
    border-top-color: #374151;
  }

  ._footer_m2myl_645 {
    background: #111827;
    border-top-color: #374151;
  }

  ._pagination_m2myl_669 {
    background: #111827;
    border-top-color: #374151;
  }

  ._paginationInfo_m2myl_691 {
    color: #9ca3af;
  }

  ._paginationButton_m2myl_711 {
    background: #374151;
    border-color: #4b5563;
    color: #f9fafb;
  }

  ._paginationButton_m2myl_711:hover:not(:disabled) {
    background: #4b5563;
  }

  ._loading_m2myl_773,
  ._empty_m2myl_823 {
    color: #9ca3af;
  }

  ._spinnerIcon_m2myl_803 {
    border-color: #374151;
    border-top-color: #3b82f6;
  }

  ._cell_m2myl_481 mark {
    background-color: #92400e;
    color: #fef3c7;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  ._table_m2myl_147 {
    border: 2px solid;
  }

  ._headerCell_m2myl_301,
  ._cell_m2myl_481 {
    border: 1px solid;
  }

  ._paginationButton_m2myl_711,
  ._exportButton_m2myl_105,
  ._actionButton_m2myl_585,
  ._expandButton_m2myl_533 {
    border: 2px solid;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Focus Styles */
._searchInput_m2myl_65:focus,
._columnFilter_m2myl_397:focus,
._paginationButton_m2myl_711:focus,
._exportButton_m2myl_105:focus,
._actionButton_m2myl_585:focus,
._expandButton_m2myl_533:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

._headerCell_m2myl_301._sortable_m2myl_321:focus {
  outline: 2px solid #3b82f6;
  outline-offset: -2px;
}

/* Selection Styles */
::selection {
  background: rgba(59, 130, 246, 0.2);
}

/* Scrollbar Styling */
._tableContainer_m2myl_147::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

._tableContainer_m2myl_147::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

._tableContainer_m2myl_147::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

._tableContainer_m2myl_147::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

@media (prefers-color-scheme: dark) {
  ._tableContainer_m2myl_147::-webkit-scrollbar-track {
    background: #374151;
  }

  ._tableContainer_m2myl_147::-webkit-scrollbar-thumb {
    background: #6b7280;
  }

  ._tableContainer_m2myl_147::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
  }
}
._inputWrapper_x4slm_1 {
  width: 100%;
}

._actionButtons_x4slm_9 {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
/* Container */
._container_19a6u_3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 40px 20px;
  background: #f9fafb;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(59, 130, 246, 0.06);
  text-align: center;
  position: relative;
  animation: _fadeIn_19a6u_1 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes _fadeIn_19a6u_1 {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

._iconWrapper_19a6u_55 {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: _pulse_19a6u_1 1.8s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes _pulse_19a6u_1 {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.85;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

._icon_19a6u_55 {
  width: 64px;
  height: 64px;
  display: block;
}

._title_19a6u_113 {
  font-size: 2rem;
  font-weight: 700;
  color: #1d4ed8;
  margin: 0 0 10px 0;
  letter-spacing: -1px;
}

._description_19a6u_129 {
  font-size: 1.1rem;
  color: #6b7280;
  margin: 0 0 18px 0;
  max-width: 420px;
}

._children_19a6u_143 {
  margin-bottom: 18px;
}

._actions_19a6u_151 {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

._actions_19a6u_151 button,
._actions_19a6u_151 a {
  padding: 8px 18px;
  background: #3b82f6;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  outline: none;
}

._actions_19a6u_151 button:hover,
._actions_19a6u_151 a:hover {
  background: #2563eb;
}

@media (max-width: 600px) {
  ._container_19a6u_3 {
    min-height: 180px;
    padding: 24px 8px;
    border-radius: 12px;
  }
  ._title_19a6u_113 {
    font-size: 1.3rem;
  }
  ._description_19a6u_129 {
    font-size: 1rem;
    max-width: 90vw;
  }
  ._icon_19a6u_55 {
    width: 44px;
    height: 44px;
  }
}

@media (prefers-color-scheme: dark) {
  ._container_19a6u_3 {
    background: #1e293b;
    box-shadow: 0 2px 12px 0 rgba(59, 130, 246, 0.12);
  }
  ._title_19a6u_113 {
    color: #60a5fa;
  }
  ._description_19a6u_129 {
    color: #cbd5e1;
  }
}
/* Container wrapper */
._container_tgvjn_3 {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Label styles */
._label_tgvjn_17 {
  font-size: 0.875rem;
  font-weight: 500;
  color: #fefefe; /* gray-700 */
  margin-bottom: 0.375rem;
  display: block;
}

._labelRequired_tgvjn_33::after {
  content: ' *';
  color: #ef4444; /* red-500 */
}

/* Input wrapper for icons and addons */
._inputWrapper_tgvjn_45 {
  position: relative;
  display: flex;
  align-items: center;
}

/* Base input styles */
._input_tgvjn_45 {
  width: 100%;
  border: 1px solid #d1d5db; /* gray-300 */
  border-radius: 0.375rem; /* 6px */
  background-color: white;
  color: #111827; /* gray-900 */
  font-size: 1rem;
  line-height: 1.5;
  transition: all 0.2s ease-in-out;
  outline: none;
  font-family: inherit;
}

._input_tgvjn_45::placeholder {
  color: #9ca3af; /* gray-400 */
}

._input_tgvjn_45:focus {
  border-color: #3b82f6; /* blue-500 */
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Size variants */
._small_tgvjn_105 {
  padding: 0.375rem 0.75rem; /* py-1.5 px-3 */
  font-size: 0.875rem;
  line-height: 1.25;
}

._medium_tgvjn_117 {
  padding: 0.5rem 0.75rem; /* py-2 px-3 */
  font-size: 1rem;
  line-height: 1.5;
}

._large_tgvjn_129 {
  padding: 0.75rem 1rem; /* py-3 px-4 */
  font-size: 1.125rem;
  line-height: 1.75;
}

/* Variant styles */
._default_tgvjn_143 {
  border-color: #d1d5db; /* gray-300 */
}

._success_tgvjn_151 {
  border-color: #10b981; /* green-500 */
}

._success_tgvjn_151:focus {
  border-color: #059669; /* green-600 */
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

._error_tgvjn_169 {
  border-color: #ef4444; /* red-500 */
}

._error_tgvjn_169:focus {
  border-color: #dc2626; /* red-600 */
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

._warning_tgvjn_187 {
  border-color: #f59e0b; /* amber-500 */
}

._warning_tgvjn_187:focus {
  border-color: #d97706; /* amber-600 */
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

/* Disabled state */
._disabled_tgvjn_207 {
  background-color: #f9fafb; /* gray-50 */
  color: #6b7280; /* gray-500 */
  cursor: not-allowed;
  opacity: 0.7;
}

._disabled_tgvjn_207::placeholder {
  color: #9ca3af; /* gray-400 */
}

/* Read-only state */
._readonly_tgvjn_231 {
  background-color: #f9fafb; /* gray-50 */
  cursor: default;
}

/* Icon styles */
._leftIcon_tgvjn_243,
._rightIcon_tgvjn_245 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280; /* gray-500 */
  pointer-events: none;
  z-index: 1;
}

._leftIcon_tgvjn_243 {
  left: 0.75rem;
}

._rightIcon_tgvjn_245 {
  right: 0.75rem;
}

/* Input with icons padding adjustments */
._hasLeftIcon_tgvjn_281 {
  padding-left: 2.5rem;
}

._hasRightIcon_tgvjn_289 {
  padding-right: 2.5rem;
}

/* Helper text */
._helperText_tgvjn_299 {
  font-size: 0.75rem;
  margin-top: 0.375rem;
  line-height: 1.25;
}

._helperDefault_tgvjn_311 {
  color: #6b7280; /* gray-500 */
}

._helperSuccess_tgvjn_319 {
  color: #10b981; /* green-500 */
}

._helperError_tgvjn_327 {
  color: #ef4444; /* red-500 */
}

._helperWarning_tgvjn_335 {
  color: #f59e0b; /* amber-500 */
}

/* Character count */
._characterCount_tgvjn_345 {
  font-size: 0.75rem;
  color: #6b7280; /* gray-500 */
  margin-top: 0.25rem;
  text-align: right;
}

._characterCountOver_tgvjn_359 {
  color: #ef4444; /* red-500 */
}

/* Textarea specific styles */
._textarea_tgvjn_369 {
  resize: vertical;
  min-height: 3rem;
}

._textareaNoResize_tgvjn_379 {
  resize: none;
}

/* Loading state */
._loading_tgvjn_389 {
  position: relative;
}

._loadingSpinner_tgvjn_397 {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  border: 2px solid #e5e7eb;
  border-top: 2px solid #3b82f6;
  border-radius: 50%;
  animation: _spin_tgvjn_1 1s linear infinite;
}

@keyframes _spin_tgvjn_1 {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}

/* Focus within container */
._focusWithin_tgvjn_443:focus-within ._label_tgvjn_17 {
  color: #3b82f6; /* blue-500 */
}

/* Floating label variant */
._floatingLabel_tgvjn_453 {
  position: relative;
}

._floatingLabelText_tgvjn_461 {
  position: absolute;
  left: 0.75rem;
  top: 0.5rem;
  font-size: 1rem;
  color: #6b7280;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
  background-color: white;
  padding: 0 0.25rem;
  z-index: 1;
}

._floatingInput_tgvjn_487:focus + ._floatingLabelText_tgvjn_461,
._floatingInput_tgvjn_487:not(:placeholder-shown) + ._floatingLabelText_tgvjn_461 {
  top: -0.5rem;
  left: 0.5rem;
  font-size: 0.75rem;
  color: #3b82f6;
}

/* Input group styles for addons */
._inputGroup_tgvjn_505 {
  display: flex;
  width: 100%;
}

._inputGroupAddon_tgvjn_515 {
  background-color: #f3f4f6; /* gray-100 */
  border: 1px solid #d1d5db; /* gray-300 */
  color: #6b7280; /* gray-500 */
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

._inputGroupAddonLeft_tgvjn_537 {
  border-right: none;
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

._inputGroupAddonRight_tgvjn_549 {
  border-left: none;
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}

._inputGroupInput_tgvjn_561 {
  border-radius: 0;
}

._inputGroupInputLeft_tgvjn_569 {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

._inputGroupInputRight_tgvjn_579 {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
/* Main container */
._container_1v4qo_3 {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background-color: white;
  border-radius: 1rem;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  height: 60%;
}

/* Header section */
._header_1v4qo_31 {
  text-align: center;
  margin-bottom: 2rem;
}

._title_1v4qo_41 {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

._subtitle_1v4qo_57 {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Form section */
._form_1v4qo_73 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

._formGroup_1v4qo_85 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

._formRow_1v4qo_97 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Input field wrapper for consistent spacing */
._inputWrapper_1v4qo_111 {
  width: 100%;
}

/* Message field specific styling */
._messageField_1v4qo_121 {
  grid-column: 1 / -1; /* Span full width */
}

/* Action buttons section */
._actions_1v4qo_131 {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

._actionsFull_1v4qo_149 {
  /* justify-content: stretch; */
}

._actionsFull_1v4qo_149 > * {
  flex: 1;
}

/* Button container for consistent sizing */
._buttonContainer_1v4qo_167 {
  display: flex;
  gap: 1rem;
}

/* Preview section */
._preview_1v4qo_179 {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-top: 1rem;
}

._previewTitle_1v4qo_195 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

._previewContent_1v4qo_215 {
  background-color: white;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  padding: 1rem;
  font-family: monospace;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #374151;
  white-space: pre-wrap;
  word-break: break-word;
}

._previewEmpty_1v4qo_241 {
  color: #9ca3af;
  font-style: italic;
}

/* Status indicators */
._statusIndicator_1v4qo_253 {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
}

._statusDraft_1v4qo_273 {
  background-color: #fef3c7;
  color: #92400e;
}

._statusReady_1v4qo_283 {
  background-color: #d1fae5;
  color: #065f46;
}

._statusError_1v4qo_293 {
  background-color: #fee2e2;
  color: #991b1b;
}

/* Form validation */
._validationSummary_1v4qo_305 {
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

._validationTitle_1v4qo_321 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #991b1b;
  margin-bottom: 0.5rem;
}

._validationList_1v4qo_335 {
  list-style: none;
  padding: 0;
  margin: 0;
}

._validationItem_1v4qo_347 {
  font-size: 0.875rem;
  color: #991b1b;
  padding: 0.125rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

._validationItem_1v4qo_347::before {
  content: '•';
  color: #ef4444;
}

/* Character count styling */
._characterCount_1v4qo_377 {
  font-size: 0.75rem;
  color: #6b7280;
  text-align: right;
  margin-top: 0.25rem;
}

._characterCountWarning_1v4qo_391 {
  color: #f59e0b;
}

._characterCountError_1v4qo_399 {
  color: #ef4444;
}

/* Loading state */
._loading_1v4qo_409 {
  opacity: 0.7;
  pointer-events: none;
}

._loadingOverlay_1v4qo_419 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  z-index: 10;
}

/* Responsive design */
@media (max-width: 768px) {
  ._container_1v4qo_3 {
    margin: 1rem;
    padding: 1.5rem;
    border-radius: 0.5rem;
  }

  ._title_1v4qo_41 {
    font-size: 1.5rem;
  }

  ._formRow_1v4qo_97 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  ._messageField_1v4qo_121 {
    grid-column: 1;
  }

  ._actions_1v4qo_131 {
    flex-direction: column-reverse;
    gap: 0.75rem;
  }

  ._buttonContainer_1v4qo_167 {
    flex-direction: column;
  }
}

/* Focus styles for accessibility */
._container_1v4qo_3:focus-within {
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06),
    0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Animation for smooth interactions */
._container_1v4qo_3 {
  transition: box-shadow 0.2s ease-in-out;
}

._preview_1v4qo_179 {
  transition: all 0.2s ease-in-out;
}

._preview_1v4qo_179:hover {
  background-color: #f3f4f6;
}
/* Browser Instance Container */
._browserInstance_1rbgz_3 {
  position: relative;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}

._browserInstance_1rbgz_3:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 15px rgba(0, 0, 0, 0.3),
    0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Header Section */
._header_1rbgz_49 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
}

._headerVisible_1rbgz_79 {
  opacity: 1;
}

._profileInfo_1rbgz_87 {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

._profileName_1rbgz_103 {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Status Indicators */
._status_1rbgz_123 {
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

._statusStreaming_1rbgz_141 {
  background: #10b981;
  color: #ffffff;
  animation: _pulse_1rbgz_1 2s infinite;
}

._statusConnected_1rbgz_153 {
  background: #3b82f6;
  color: #ffffff;
}

._statusDisconnected_1rbgz_163 {
  background: #ef4444;
  color: #ffffff;
}

._statusDormant_1rbgz_173 {
  background: #f59e0b;
  color: #ffffff;
  animation: _slowPulse_1rbgz_1 3s infinite;
}

@keyframes _pulse_1rbgz_1 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

@keyframes _slowPulse_1rbgz_1 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

/* Control Buttons */
._controls_1rbgz_235 {
  display: flex;
  gap: 6px;
}

._controlButton_1rbgz_245 {
  width: 28px;
  height: 28px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  backdrop-filter: blur(10px);
}

._controlButton_1rbgz_245:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

._streamToggle_1rbgz_287:hover {
  background: #3b82f6;
}

._expandButton_1rbgz_295:hover {
  background: #8b5cf6;
}

._closeButton_1rbgz_303 {
  color: red !important;
}

._closeButton_1rbgz_303:hover {
  background: #ef4444;
  color: #ffffff !important;
}

._reviveButton_1rbgz_321:hover {
  background: #f59e0b;
  animation: _spin_1rbgz_1 0.5s ease-in-out;
}

@keyframes _spin_1rbgz_1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Preview Container */
._previewContainer_1rbgz_351 {
  flex: 1;
  position: relative;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

._previewImage_1rbgz_371 {
  width: 100%;
  height: 100%;
  /* min-width: 1500px; */
  object-fit: cover;
  transition: transform 0.3s ease;
}

._browserInstance_1rbgz_3:hover ._previewImage_1rbgz_371 {
  transform: scale(1.02);
}

/* Placeholder States */
._placeholder_1rbgz_397 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
}

._placeholderIcon_1rbgz_417 {
  font-size: 48px;
  opacity: 0.6;
}

._placeholderText_1rbgz_427 {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.5;
}

/* Footer Section */
._footer_1rbgz_441 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 12px;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
}

._footerVisible_1rbgz_465 {
  opacity: 1;
}

._footerInfo_1rbgz_473 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #9ca3af;
}

._browserId_1rbgz_489 {
  font-family: monospace;
  opacity: 0.8;
}

._frameCounter_1rbgz_499 {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

/* Hover Overlay */
._hoverOverlay_1rbgz_515 {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

._browserInstance_1rbgz_3:hover ._hoverOverlay_1rbgz_515 {
  opacity: 1;
  pointer-events: auto;
}

._quickAction_1rbgz_549 {
  background: #3b82f6;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
}

._quickAction_1rbgz_549:hover {
  background: #2563eb;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  ._header_1rbgz_49,
  ._footer_1rbgz_441 {
    padding: 8px;
  }

  ._profileName_1rbgz_103 {
    font-size: 12px;
  }

  ._status_1rbgz_123 {
    font-size: 10px;
    padding: 2px 6px;
  }

  ._controlButton_1rbgz_245 {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  ._placeholderIcon_1rbgz_417 {
    font-size: 36px;
  }

  ._placeholderText_1rbgz_427 {
    font-size: 12px;
  }
}

/* Loading Animation */
@keyframes _shimmer_1rbgz_1 {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

._loading_1rbgz_667 {
  background: linear-gradient(90deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
  background-size: 1000px 100%;
  animation: _shimmer_1rbgz_1 2s infinite;
}

/* Fullscreen View */
._fullscreenContainer_1rbgz_681 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

._fullscreenContent_1rbgz_709 {
  position: relative;
  width: 90vw;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

._fullscreenImage_1rbgz_727 {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

._fullscreenCloseButton_1rbgz_741 {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

._fullscreenCloseButton_1rbgz_741:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

._fullscreenInfoText_1rbgz_787 {
  position: absolute;
  bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
}
/* Container */
._container_tplec_3 {
  width: 100%;
  height: 100%;
  padding: 24px;
  background: #0a0a0a;
  overflow-y: auto;
}

/* Header */
._header_tplec_21 {
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

._title_tplec_35 {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

._headerControls_tplec_49 {
  display: flex;
  align-items: center;
  gap: 32px;
}

._viewOptions_tplec_61 {
  display: flex;
  align-items: center;
  gap: 12px;
}

._viewLabel_tplec_73 {
  color: #9ca3af;
  font-size: 14px;
  font-weight: 500;
}

._viewButtons_tplec_85 {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 4px;
  backdrop-filter: blur(10px);
}

._viewButton_tplec_85 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  gap: 4px;
}

._viewButton_tplec_85:hover {
  background: rgba(255, 255, 255, 0.1);
}

._viewButtonActive_tplec_141 {
  background: #3b82f6 !important;
}

._viewIcon_tplec_149 {
  display: grid;
  gap: 1px;
  width: 20px;
  height: 12px;
  grid-template-rows: repeat(2, 1fr);
}

._viewIcon_tplec_149[data-columns='1'] {
  grid-template-columns: 1fr;
  width: 16px;
}

._viewIcon_tplec_149[data-columns='2'] {
  grid-template-columns: repeat(2, 1fr);
  width: 18px;
}

._viewIcon_tplec_149[data-columns='3'] {
  grid-template-columns: repeat(3, 1fr);
  width: 20px;
}

._viewIcon_tplec_149[data-columns='4'] {
  grid-template-columns: repeat(4, 1fr);
  width: 22px;
}

._viewIconCell_tplec_205 {
  background: currentColor;
  color: #ffffff;
  border-radius: 1px;
  opacity: 0.7;
}

._viewButtonActive_tplec_141 ._viewIconCell_tplec_205 {
  opacity: 1;
}

._viewNumber_tplec_227 {
  font-size: 10px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
}

._stats_tplec_241 {
  display: flex;
  gap: 24px;
}

._statItem_tplec_251 {
  color: #9ca3af;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

/* Grid Layout */
._grid_tplec_273 {
  display: grid;
  gap: 16px;
  width: 100%;
  /* height: calc(100% - 80px); */
  grid-auto-rows: minmax(200px, 1fr);
}

/* Grid variations based on view option */
._grid1_tplec_291 {
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
}

._grid2_tplec_303 {
  grid-template-columns: repeat(2, 1fr);
}

._grid3_tplec_311 {
  grid-template-columns: repeat(3, 1fr);
}

._grid4_tplec_319 {
  grid-template-columns: repeat(4, 1fr);
}

/* Loading State */
._loading_tplec_329 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 400px;
  gap: 16px;
}

._loadingIcon_tplec_347 {
  font-size: 48px;
  animation: _spin_tplec_1 2s linear infinite;
}

@keyframes _spin_tplec_1 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

._loadingText_tplec_375 {
  color: #9ca3af;
  font-size: 16px;
}

/* Error State */
._error_tplec_387 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 400px;
  gap: 16px;
}

._errorIcon_tplec_405 {
  font-size: 48px;
  color: #ef4444;
}

._errorText_tplec_415 {
  color: #ffffff;
  font-size: 16px;
}

._retryButton_tplec_425 {
  margin-top: 8px;
  padding: 10px 24px;
  background: #3b82f6;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

._retryButton_tplec_425:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

/* Empty State */
._empty_tplec_463 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 400px;
  gap: 16px;
}

._emptyIcon_tplec_481 {
  font-size: 72px;
  opacity: 0.3;
}

._emptyText_tplec_491 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
}

._emptySubtext_tplec_503 {
  color: #9ca3af;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1400px) {
  ._grid4_tplec_319 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  ._container_tplec_3 {
    padding: 16px;
  }

  ._header_tplec_21 {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  ._headerControls_tplec_49 {
    width: 100%;
    justify-content: space-between;
    gap: 16px;
  }

  ._grid3_tplec_311,
  ._grid4_tplec_319 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  ._container_tplec_3 {
    padding: 12px;
  }

  ._title_tplec_35 {
    font-size: 24px;
  }

  ._headerControls_tplec_49 {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  ._viewOptions_tplec_61 {
    order: 2;
  }

  ._stats_tplec_241 {
    gap: 12px;
    order: 1;
  }

  ._statItem_tplec_251 {
    padding: 6px 12px;
    font-size: 12px;
  }

  ._viewLabel_tplec_73 {
    font-size: 12px;
  }

  ._viewButton_tplec_85 {
    width: 40px;
    height: 40px;
    gap: 2px;
  }

  ._viewIcon_tplec_149 {
    height: 10px;
  }

  ._viewIcon_tplec_149[data-columns='1'] {
    width: 12px;
  }

  ._viewIcon_tplec_149[data-columns='2'] {
    width: 14px;
  }

  ._viewIcon_tplec_149[data-columns='3'] {
    width: 16px;
  }

  ._viewIcon_tplec_149[data-columns='4'] {
    width: 18px;
  }

  ._viewNumber_tplec_227 {
    font-size: 9px;
  }

  ._grid_tplec_273 {
    gap: 12px;
    grid-auto-rows: minmax(150px, 1fr);
  }

  ._grid2_tplec_303,
  ._grid3_tplec_311,
  ._grid4_tplec_319 {
    grid-template-columns: 1fr;
  }
}

/* Dark mode optimizations */
@media (prefers-color-scheme: dark) {
  ._container_tplec_3 {
    background: #000000;
  }
}

/* Smooth transitions for grid changes */
._grid_tplec_273 > * {
  animation: _fadeIn_tplec_1 0.3s ease-in-out;
}

@keyframes _fadeIn_tplec_1 {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
