/* Theme tokens — shared with stats.css. Match the gallery's visual style so
   the devtherocks family of admin pages feels consistent across sites. */
:root {
  color-scheme: dark;
  --bg: #121212;
  --surface: #181818;
  --surface-hover: #1E1E1E;
  --border: #282828;
  --primary: #00FFCC;
  --primary-dim: #00CC99;
  --primary-glow: rgba(0, 255, 204, 0.3);
  --text: #FFFFFF;
  --text-secondary: #8888AA;
  --text-muted: #555577;
  --danger: #FF4466;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-glow: 0 0 20px var(--primary-glow);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-brand: var(--font-sans);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; min-height: 100vh; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  padding: 0 16px 24px;
}
::selection { background: var(--primary); color: var(--bg); }

.btn {
  background: var(--primary);
  color: var(--bg);
  border: 1px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font: inherit; font-weight: 600;
  cursor: pointer;
  transition: background 0.12s var(--ease-smooth),
              border-color 0.12s var(--ease-smooth),
              box-shadow 0.12s var(--ease-smooth);
}
.btn:hover:not(:disabled) {
  background: var(--primary-dim);
  border-color: var(--primary-dim);
  box-shadow: var(--shadow-glow);
}
.btn:disabled {
  opacity: 0.4; cursor: not-allowed;
  background: var(--surface); color: var(--text-secondary);
  border-color: var(--border); box-shadow: none;
}
.btn:active:not(:disabled) { transform: scale(0.97); transition-duration: 0.05s; }

.title {
  font-family: var(--font-brand);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 18px;
  margin: 0;
}
