/* ==========================================================
   V - THEME LIGHT (Clean Neutral)
   ========================================================== */

:root {
  --bg-main: #f8f8f8;
  --bg-panel: #ffffff;
  --text-color: #111;
  --accent: #007acc;
  --font-body: "Roboto Mono", monospace;
  --font-title: "Roboto Slab", serif;
}

body {
  background: var(--bg-main);
  color: var(--text-color);
  font-family: var(--font-body);
}

.sidebar {
  background: var(--bg-panel);
  border-right: 1px solid #ddd;
}
.sidebar h2 {
  color: var(--accent);
  font-family: var(--font-title);
}
.sidebar a:hover {
  background: #eee;
  color: var(--accent);
}
button {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.6rem 1.2rem;
}
button:hover { background: #005f9e; }
