/* [project]/app/globals.css [app-client] (css) */
:root {
  --bg: #0d1410;
  --panel: #16241b;
  --line: #2f4a38;
  --text: #e8eee9;
  --muted: #94a89b;
  --accent: #4caf7d;
  --danger: #ff8a8a;
  --lightningcss-light: ;
  --lightningcss-dark: initial;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--text);
  margin: 0;
  font-family: Yu Gothic UI, Hiragino Sans, system-ui, sans-serif;
  line-height: 1.6;
}

.page {
  max-width: 880px;
  margin: 0 auto;
  padding: 24px 16px 64px;
}

h1 {
  letter-spacing: 2px;
  font-size: 22px;
}

h2 {
  margin: 0 0 12px;
  font-size: 16px;
}

.header {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  display: flex;
}

.header div {
  align-items: center;
  gap: 12px;
  font-size: 14px;
  display: flex;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  padding: 16px 18px;
  display: flex;
}

label {
  color: var(--muted);
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  display: flex;
}

input {
  border: 1px solid var(--line);
  color: var(--text);
  background: #0f1a13;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 15px;
}

button {
  background: var(--accent);
  color: #06120b;
  cursor: pointer;
  border: none;
  border-radius: 6px;
  padding: 9px 16px;
  font-size: 15px;
  font-weight: 700;
}

button:disabled {
  opacity: .5;
  cursor: default;
}

button.link {
  color: var(--muted);
  background: none;
  padding: 4px 0;
  font-size: 13px;
  font-weight: 400;
  text-decoration: underline;
}

.error {
  color: var(--danger);
  margin: 0;
  font-size: 13px;
}

.muted {
  color: var(--muted);
  font-size: 14px;
}

.grid {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  display: grid;
}

.grid > div {
  background: #00000040;
  border-radius: 6px;
  flex-direction: column;
  padding: 8px 10px;
  display: flex;
}

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

.value {
  font-variant-numeric: tabular-nums;
  font-size: 19px;
}

.ranks {
  color: var(--muted);
  margin: 0;
  font-size: 13px;
}

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

th, td {
  text-align: left;
  border-bottom: 1px solid var(--line);
  padding: 7px 8px;
}

th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

/*# sourceMappingURL=app_globals_0jn8.0u.css.map*/