/* [project]/src/index.css [app-client] (css) */
:root {
  --background: #fff;
  --foreground: #2b2b30;
  --primary: #25467d;
  --primary-foreground: #fafafa;
  --muted: #f4f4f5;
  --muted-foreground: #71717b;
  --border: #e4e4e7;
  --card: #fafafa;
  --card-foreground: #0d1e26;
  --radius: .6rem;
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light dark;
  color: var(--foreground);
  background-color: var(--background);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Avenir, Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

@media (prefers-color-scheme: dark) {
  :root {
    --lightningcss-light: ;
    --lightningcss-dark: initial;
  }
}

@supports (color: color(display-p3 0 0 0)) {
  :root {
    --background: color(display-p3 1 1 1);
    --foreground: color(display-p3 .168649 .168648 .186571);
    --primary: color(display-p3 .177514 .272392 .474147);
    --primary-foreground: color(display-p3 .980256 .980256 .980256);
    --muted: color(display-p3 .956385 .956385 .959079);
    --muted-foreground: color(display-p3 .442983 .442931 .480324);
    --border: color(display-p3 .894477 .894477 .905114);
    --card: color(display-p3 .980256 .980256 .980256);
    --card-foreground: color(display-p3 .0657745 .115029 .1467);
  }
}

@supports (color: lab(0% 0 0)) {
  :root {
    --background: lab(100% 0 0);
    --foreground: lab(17.6864% .929579 -3.24667);
    --primary: lab(29.6263% 2.85362 -35.1852);
    --primary-foreground: lab(98.26% 0 0);
    --muted: lab(96.1634% .0993311 -.364041);
    --muted-foreground: lab(47.8878% 1.65477 -5.77283);
    --border: lab(90.6853% .399232 -1.45452);
    --card: lab(98.26% 0 0);
    --card-foreground: lab(9.99013% -5.00925 -8.1354);
  }
}

.dark {
  --background: #111113;
  --foreground: #fafafa;
  --primary: #477ed8;
  --primary-foreground: #fafafa;
  --card: #171719;
  --card-foreground: #fafafa;
  --muted: #171719;
  --muted-foreground: #a4a4a4;
  --border: #242424;
}

@supports (color: color(display-p3 0 0 0)) {
  .dark {
    --background: color(display-p3 .0666355 .0666351 .0738625);
    --foreground: color(display-p3 .980256 .980256 .980256);
    --primary: color(display-p3 .330979 .488478 .823396);
    --primary-foreground: color(display-p3 .980256 .980256 .980256);
    --card: color(display-p3 .0898404 .0898388 .0987834);
    --card-foreground: color(display-p3 .980256 .980256 .980256);
    --muted: color(display-p3 .0898404 .0898388 .0987834);
    --muted-foreground: color(display-p3 .64471 .64471 .64471);
    --border: color(display-p3 .140871 .140871 .140871);
  }
}

@supports (color: lab(0% 0 0)) {
  .dark {
    --background: lab(5.11024% .312395 -1.14583);
    --foreground: lab(98.26% 0 0);
    --primary: lab(52.4395% 4.28048 -52.7778);
    --primary-foreground: lab(98.26% 0 0);
    --card: lab(7.77321% .494637 -1.76729);
    --card-foreground: lab(98.26% 0 0);
    --muted: lab(7.77321% .494637 -1.76729);
    --muted-foreground: lab(67.52% -.0000298023 0);
    --border: lab(14.16% 0 0);
  }
}

body {
  background-color: var(--background);
  min-width: 320px;
  min-height: 100vh;
  color: var(--foreground);
  place-items: center;
  margin: 0;
  display: flex;
}

#root {
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

* {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--foreground);
  margin-top: 0;
}

a {
  color: var(--primary);
  -webkit-text-decoration: inherit;
  text-decoration: inherit;
}

a:hover {
  text-decoration: underline;
}

button {
  border-radius: var(--radius);
  background-color: var(--primary);
  color: var(--primary-foreground);
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0);
  padding: .6em 1.2em;
  font-family: inherit;
  font-size: 1em;
  font-weight: 500;
  transition: border-color .25s, opacity .25s, transform .1s;
}

button:hover {
  opacity: .9;
}

button:active {
  transform: scale(.98);
}

.card {
  background-color: var(--card);
  color: var(--card-foreground);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: left;
  padding: 2em;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 12px rgba(13, 38, 30, .04), 0 1px 2px -1px rgba(13, 38, 30, .04);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 38, 30, .08);
}

input {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: var(--background);
  width: 100%;
  color: var(--foreground);
  margin-bottom: 1rem;
  padding: .75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color .2s, box-shadow .2s;
}

input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--muted);
  outline: none;
}

.layout-container {
  background: var(--background);
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  display: flex;
}

.login-container {
  background: linear-gradient(135deg, var(--background) 0%, var(--muted) 100%);
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
}

.login-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  width: 100%;
  max-width: 400px;
  padding: 2.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 10px 10px -5px rgba(0, 0, 0, .04);
}

.login-title {
  text-align: center;
  margin-bottom: .5rem;
  font-size: 1.75rem;
  font-weight: 700;
}

.login-subtitle {
  color: var(--muted-foreground);
  text-align: center;
  margin-bottom: 2rem;
  font-size: .875rem;
}

.hub-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.hub-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  display: flex;
}

.hub-title {
  letter-spacing: -.025em;
  background: linear-gradient(to right, var(--foreground), var(--muted-foreground));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-size: 2.5rem;
  font-weight: 800;
}

.demos-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  display: grid;
}

.demo-card {
  flex-direction: column;
  height: 100%;
  display: flex;
}

.demo-card-header {
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  display: flex;
}

.demo-card-title-row {
  align-items: center;
  gap: .75rem;
  min-width: 0;
  display: flex;
}

.demo-card-icon {
  background-color: var(--muted);
  width: 32px;
  height: 32px;
  color: var(--primary);
  border-radius: 8px;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.demo-card-title {
  overflow-wrap: anywhere;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.demo-card-description {
  color: var(--muted-foreground);
  flex-grow: 1;
  margin-bottom: 1.5rem;
  font-size: .875rem;
  line-height: 1.5;
}

.demo-card-meta {
  color: var(--muted-foreground);
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: .875rem;
  display: flex;
}

.demo-card-meta strong {
  color: var(--foreground);
  white-space: nowrap;
}

.demo-card-action {
  justify-content: center;
  align-items: center;
  gap: .5rem;
  width: 100%;
  display: flex;
}

.status-pill {
  border: 1px solid var(--border);
  color: var(--muted-foreground);
  text-transform: capitalize;
  white-space: nowrap;
  border-radius: 999px;
  padding: .2rem .55rem;
  font-size: .75rem;
  font-weight: 600;
}

.status-running {
  color: #166534;
  background: #dcfce7;
  border-color: #86efac;
}

.status-stopped {
  color: #374151;
  background: #f3f4f6;
  border-color: #e5e7eb;
}

.status-error {
  color: #991b1b;
  background: #fee2e2;
  border-color: #fecaca;
}

/*# sourceMappingURL=src_index_8b6fca74.css.map*/