/* ============================================================
   Braiden Posting Bot — Admin Panel
   Base styles: reset, typography, scrollbars
   ============================================================ */

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.005em;
}

#root { height: 100%; }

::selection { background: var(--accent-soft-2); color: var(--accent-text); }

h1, h2, h3, h4, p { margin: 0; }

button { font-family: inherit; cursor: pointer; }

input, textarea, select { font-family: inherit; }

a { color: var(--accent); }

/* nicer scrollbars */
*::-webkit-scrollbar { width: 11px; height: 11px; }
*::-webkit-scrollbar-thumb {
  background: var(--line-strong);
  border-radius: 999px;
  border: 3px solid transparent;
  background-clip: padding-box;
}
*::-webkit-scrollbar-thumb:hover { background: var(--ink-4); background-clip: padding-box; }
*::-webkit-scrollbar-track { background: transparent; }
