/*
 * base.css - Resets, typography, color variables, and global styles
 */

:root {
  --primary-color: #1a73e8;
  --secondary-color: #38bdf8;
  --background-color: #f3f7fb;
  --text-color: #222;
  --border-radius: 8px;
  --box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

html, body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: var(--background-color);
  color: var(--text-color);
}

*, *::before, *::after {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  color: var(--primary-color);
  margin-top: 0;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #1558b0;
  text-decoration: underline;
} 