/* Evo-Edu.org inspired base styles */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #f5f8fa;
  color: #333;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem;
}

.site-header {
  background-color: #002e5d;
  color: white;
  padding: 1.5rem 0;
  text-align: center;
}

.title {
  font-size: 2.5rem;
  margin: 0;
}

.subtitle {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

.controls {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.controls label,
.controls button {
  font-size: 1rem;
}

button {
  background-color: #006699;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #004d73;
}

.grid-container {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}

canvas {
  border: 1px solid #ccc;
  background-color: white;
}

.stats {
  background-color: #e9f1f7;
  border-radius: 6px;
  padding: 1rem;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.site-footer {
  background-color: #002e5d;
  color: white;
  padding: 1rem 0;
  text-align: center;
}

.site-footer a {
  color: #ffcc00;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}
