/*!*****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/app/globals.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************/
:root {
  color-scheme: dark;
  --bg: #09090b;
  --bg-2: #0f0f12;
  --panel: rgba(24, 24, 27, 0.78);
  --panel-strong: rgba(39, 39, 42, 0.72);
  --panel-soft: rgba(255, 255, 255, 0.045);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(190, 242, 100, 0.28);
  --text: #fafafa;
  --muted: #a1a1aa;
  --muted-2: #71717a;
  --accent: #bef264;
  --accent-hover: #d9f99d;
  --accent-soft: rgba(190, 242, 100, 0.1);
  --danger: #fb7185;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    radial-gradient(circle at 70% -10%, rgba(190, 242, 100, 0.09), transparent 34rem),
    var(--bg);
  background-size: 42px 42px, 42px 42px, auto, auto;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

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

button,
input {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 282px 1fr;
}

.sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  border-right: 1px solid var(--line);
  background: rgba(9, 9, 11, 0.82);
  padding: 18px;
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
}

.brand {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex;
  gap: 12px;
  margin: 0 0 22px;
  padding: 12px;
  background: rgba(24, 24, 27, 0.64);
  box-shadow: var(--shadow);
}

.brand-mark {
  background: #050505;
  border-radius: 9px;
  color: var(--text);
  display: grid;
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 800;
  grid-template-columns: 1fr 1fr;
  height: 36px;
  letter-spacing: 0;
  line-height: 36px;
  overflow: hidden;
  place-items: center;
  position: relative;
  width: 36px;
}

.brand-mark::after {
  background: rgba(250, 250, 250, 0.56);
  border-radius: 999px;
  bottom: 7px;
  content: "";
  height: 1px;
  left: 8px;
  position: absolute;
  right: 8px;
}

.brand-x {
  color: var(--accent);
}

.brand small {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 400;
  margin-top: 2px;
}

.nav {
  display: grid;
  grid-gap: 5px;
  gap: 5px;
}

.nav a {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #d4d4d8;
  display: flex;
  font-size: 14px;
  gap: 10px;
  min-height: 42px;
  padding: 0 13px;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.nav a:hover {
  background: var(--panel-soft);
  border-color: var(--line);
  color: var(--text);
}

.nav svg {
  color: var(--accent);
}

.sidebar-action {
  align-items: center;
  background: var(--accent);
  border-radius: 999px;
  color: #18181b;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  margin-top: auto;
  min-height: 44px;
  padding: 0 16px;
}

.content {
  margin: 0 auto;
  max-width: 1440px;
  padding: 34px;
  width: 100%;
}

.page-header {
  align-items: flex-end;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.page-header h1 {
  color: var(--text);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
}

.page-header p {
  font-size: 16px;
  line-height: 1.6;
  margin: 14px 0 0;
  max-width: 760px;
}

.eyebrow {
  align-items: center;
  border: 1px solid rgba(190, 242, 100, 0.22);
  border-radius: 999px;
  background: rgba(190, 242, 100, 0.06);
  color: #d9f99d;
  display: inline-flex;
  font-family: "Courier New", monospace;
  font-size: 12px;
  gap: 8px;
  margin: 0 0 14px;
  padding: 6px 10px;
}

.eyebrow::before {
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 12px var(--accent);
  content: "";
  height: 6px;
  width: 6px;
}

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

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

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

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  padding: 18px;
}

.metric-card {
  min-height: 126px;
}

.metric-label {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-value {
  color: var(--accent);
  display: block;
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 1;
  margin-top: 14px;
  word-break: break-word;
}

.metric-note {
  color: var(--muted-2);
  display: block;
  font-size: 12px;
  margin-top: 10px;
}

.table-wrap {
  overflow-x: auto;
}

.table {
  border-collapse: collapse;
  min-width: 860px;
  width: 100%;
}

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

.table th {
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.table tbody tr:hover {
  background: rgba(255, 255, 255, 0.025);
}

.table a {
  color: var(--text);
  font-weight: 700;
}

.table a:hover {
  color: var(--accent-hover);
}

.button {
  align-items: center;
  background: var(--accent);
  border: 0;
  border-radius: 999px;
  color: #18181b;
  cursor: pointer;
  display: inline-flex;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
}

.button:hover {
  background: var(--accent-hover);
}

.button.secondary {
  background: var(--panel-soft);
  border: 1px solid var(--line);
  color: var(--text);
}

.input {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  min-height: 44px;
  padding: 0 16px;
  width: 100%;
}

.input::placeholder {
  color: var(--muted-2);
}

.stack {
  display: grid;
  grid-gap: 12px;
  gap: 12px;
}

.status {
  background: rgba(190, 242, 100, 0.09);
  border: 1px solid rgba(190, 242, 100, 0.18);
  border-radius: 999px;
  color: #d9f99d;
  display: inline-flex;
  font-size: 12px;
  line-height: 1.35;
  padding: 5px 9px;
}

.status.danger {
  background: rgba(251, 113, 133, 0.09);
  border-color: rgba(251, 113, 133, 0.22);
  color: var(--danger);
}

.error {
  background: rgba(251, 113, 133, 0.1);
  border: 1px solid rgba(251, 113, 133, 0.24);
  border-radius: 14px;
  color: #fecdd3;
  margin: 0 0 16px;
  padding: 14px 16px;
}

h2 {
  align-items: center;
  display: flex;
  gap: 8px;
  font-size: 18px;
  margin: 0 0 14px;
}

p {
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .sidebar {
    height: auto;
    position: static;
  }

  .sidebar-action {
    margin-top: 18px;
  }

  .content {
    padding: 22px 16px 28px;
  }

  .page-header {
    align-items: start;
    display: grid;
  }
}

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

