/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow: hidden;
  font-family: monospace;
  font-size: 16px;
  background-color: #EEFFFF;
}

/* Statistics panel */
#stats {
  position: fixed;
  left: 8px;
  z-index: 42;
  color: #263238;
}

.stat-item {
  display: flex;
  align-items: center;
  margin: 8px 0;
}

.stat-icon {
  font-size: 16px;
  margin-right: 8px;
}

.stat-count {
  margin-left: 8px;
  font-weight: bold;
}

canvas {
  display: block;
  background: #EEFFFF;
}
