/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/.pnpm/next@15.5.25_@types+node@22.20.1_react-dom@19.2.8_react@19.2.8__react@19.2.8/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/.pnpm/next@15.5.25_@types+node@22.20.1_react-dom@19.2.8_react@19.2.8__react@19.2.8/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 {
  --bg: #0b1020;
  --card: #131a2e;
  --accent: #6ea8fe;
  --text: #e6ebf5;
  --muted: #8d97ad;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

.shell { max-width: 960px; margin: 0 auto; padding: 16px; }
.topbar { display: flex; align-items: center; gap: 12px; padding: 12px 4px; border-bottom: 1px solid #232c45; }
.brand { font-weight: 700; font-size: 18px; letter-spacing: 0.5px; }
.tag { color: var(--muted); font-size: 12px; }
.main { padding: 20px 4px; }

.card { background: var(--card); border: 1px solid #232c45; border-radius: 10px; padding: 16px; margin-bottom: 16px; }
.card h2 { margin: 0 0 10px; font-size: 15px; color: var(--accent); }
.muted { color: var(--muted); font-size: 13px; }

table { width: 100%; border-collapse: collapse; font-size: 13px; }
th, td { text-align: left; padding: 6px 8px; border-bottom: 1px solid #232c45; }
th { color: var(--muted); font-weight: 500; }

input, button {
  font: inherit;
  border-radius: 8px;
  border: 1px solid #2a3552;
  background: #0e1526;
  color: var(--text);
  padding: 8px 10px;
}
input { width: 100%; }
button { cursor: pointer; background: var(--accent); border: none; color: #0b1020; font-weight: 600; }
button.secondary { background: transparent; color: var(--accent); border: 1px solid var(--accent); }

.row { display: flex; gap: 8px; margin: 6px 0; }
.row > * { flex: 1 1; }
.err { color: #ff8f8f; font-size: 13px; }
.ok { color: #7ee787; font-size: 13px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); grid-gap: 16px; gap: 16px; }

