/* [project]/apps/web/app/globals.css [app-client] (css) */
:root {
  --lightningcss-light: ;
  --lightningcss-dark: initial;
  color-scheme: dark;
  --bg: #06111f;
  --surface: #0b1a2d;
  --surface-2: #0f2339;
  --surface-3: #132a45;
  --line: #1f3b5d;
  --line-soft: #16304d;
  --text: #e6f0ff;
  --muted: #89a5c4;
  --dim: #58718d;
  --accent: #1d8cff;
  --accent-2: #20d1ff;
  --ok: #21d789;
  --warn: #ffb84d;
  --bad: #ff5f6d;
}

* {
  box-sizing: border-box;
}

html, body {
  background: var(--bg);
  min-height: 100%;
  color: var(--text);
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
}

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

button, input, select, textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.shell {
  background: radial-gradient(circle at 80% 10%, #1d8cff2e, #0000 26rem), linear-gradient(135deg, #06111f 0%, #09182a 46%, #06111f 100%);
  grid-template-columns: 224px minmax(0, 1fr);
  min-height: 100vh;
  display: grid;
}

.sidebar {
  border-right: 1px solid var(--line-soft);
  background: #040d19bd;
  flex-direction: column;
  gap: 22px;
  padding: 18px 14px;
  display: flex;
}

.brand {
  align-items: center;
  gap: 10px;
  padding: 0 8px;
  display: flex;
}

.brand-mark {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #001526;
  border-radius: 8px;
  place-items: center;
  width: 32px;
  height: 32px;
  font-weight: 900;
  display: grid;
}

.brand-title {
  letter-spacing: 0;
  font-size: 15px;
  font-weight: 800;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 11px;
}

.nav {
  gap: 6px;
  display: grid;
}

.nav a {
  min-height: 38px;
  color: var(--muted);
  border-radius: 8px;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  font-size: 13px;
  display: flex;
}

.nav a.active, .nav a:hover {
  color: var(--text);
  background: #0d2440;
}

.main {
  min-width: 0;
  padding: 18px 22px 24px;
}

.topbar {
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  min-height: 46px;
  margin-bottom: 18px;
  display: flex;
}

.topbar-left, .topbar-right {
  align-items: center;
  gap: 10px;
  min-width: 0;
  display: flex;
}

.select, .input, .textarea {
  border: 1px solid var(--line);
  min-height: 36px;
  color: var(--text);
  background: #07182a;
  border-radius: 8px;
  outline: none;
  padding: 0 12px;
}

.textarea {
  resize: vertical;
  width: 100%;
  min-height: 96px;
  padding: 12px;
}

.button {
  border: 1px solid var(--line);
  min-height: 36px;
  color: var(--text);
  background: #0d2440;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  font-weight: 700;
  display: inline-flex;
}

.button.primary {
  color: #fff;
  background: linear-gradient(#1d8cff, #0969d8);
  border-color: #2a95ff;
}

.button.ghost {
  color: var(--muted);
  background: none;
}

.button.danger {
  color: #ff9da6;
  background: #ff5f6d1a;
  border-color: #ff5f6d6b;
}

.panel {
  border: 1px solid var(--line-soft);
  background: #08182ad1;
  border-radius: 10px;
}

.panel-header {
  border-bottom: 1px solid var(--line-soft);
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  display: flex;
}

.panel-title {
  font-size: 15px;
  font-weight: 800;
}

.panel-body {
  padding: 16px;
}

.page-title {
  letter-spacing: 0;
  margin: 0 0 6px;
  font-size: 28px;
  line-height: 1.15;
}

.page-subtitle {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}

.grid {
  gap: 14px;
  display: grid;
}

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

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

.metric {
  border: 1px solid var(--line-soft);
  background: #091d33;
  border-radius: 8px;
  padding: 14px;
}

.metric-value {
  margin-top: 8px;
  font-size: 24px;
  font-weight: 850;
}

.muted {
  color: var(--muted);
}

.tiny {
  color: var(--dim);
  font-size: 12px;
}

.status {
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
}

.status.ok {
  color: var(--ok);
  background: #21d7891f;
}

.status.warn {
  color: var(--warn);
  background: #ffb84d24;
}

.status.bad {
  color: var(--bad);
  background: #ff5f6d1f;
}

.status.info {
  color: #67b6ff;
  background: #1d8cff24;
}

.table {
  border-collapse: collapse;
  width: 100%;
  font-size: 13px;
}

.table th, .table td {
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  padding: 12px 10px;
}

.table th {
  color: var(--muted);
  font-weight: 700;
}

.code {
  border: 1px solid var(--line-soft);
  color: #b9d8ff;
  white-space: pre-wrap;
  background: #06111f;
  border-radius: 8px;
  padding: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  line-height: 1.65;
}

.op {
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  place-items: center;
  width: 22px;
  height: 22px;
  font-size: 12px;
  font-weight: 900;
  display: inline-grid;
}

.op-row {
  color: var(--muted);
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  display: flex;
}

.login-page {
  background: radial-gradient(circle at 35% 38%, #1d8cff47, #0000 22rem), #06111f;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, .85fr);
  min-height: 100vh;
  display: grid;
}

.login-visual {
  flex-direction: column;
  justify-content: center;
  padding: 64px;
  display: flex;
}

.board-visual {
  aspect-ratio: 1.6;
  background: linear-gradient(135deg, #20d1ff1f, #0000), repeating-linear-gradient(90deg, #0000 0 24px, #20d1ff14 25px 26px), #07192b;
  border: 1px solid #18436e;
  border-radius: 18px;
  width: min(540px, 90%);
  transform: perspective(900px)rotateX(58deg)rotateZ(-28deg);
  box-shadow: 0 0 70px #1d8cff47;
}

.login-form {
  justify-content: center;
  align-items: center;
  padding: 32px;
  display: flex;
}

.login-card {
  background: #07182ae0;
  border: 1px solid #1e4a78;
  border-radius: 12px;
  width: min(420px, 100%);
  padding: 28px;
}

@media (max-width: 980px) {
  .shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    flex-direction: row;
    position: static;
    overflow-x: auto;
  }

  .grid.two, .grid.three, .login-page {
    grid-template-columns: 1fr;
  }
}

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