/* styles.css — minimal reset. Every real style in this app is inline
   (see theme.dart), same choice kola_dashboard made, kept here too so
   there's exactly one place per app to look for visual rules. */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: #0C0C0D;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
}

/* Exact scrollbar/placeholder/link rules from the design spec's
   <helmet><style> block (Kola Admin Release Control.dc.html). */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #2C2C2E; border-radius: 100px; border: 2px solid #0C0C0D; }
::-webkit-scrollbar-thumb:hover { background: #3A3A3D; }
html { scrollbar-color: #2C2C2E #0C0C0D; scrollbar-width: thin; }
a { color: #5B9BD1; }
a:hover { color: #7CB0E9; }
::placeholder { color: #5A5754; }

button {
  font-family: inherit;
}

input, select {
  font-family: inherit;
}
