/* Basic Styles */
body {
  font-family: Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f4f4f4;
}

header {
  text-align: center;
  padding: 20px;
}

.control-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px;
}

label {
  display: block;
  font-size: 1.2rem;
  margin-top: 10px;
}

input[type="range"] {
  width: 300px;
}

button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  margin-top: 20px;
  font-size: 1.2rem;
}

button:hover {
  background-color: #45a049;
}

.canvas-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

/* For the simulation display. */
#display {
  border: 1px solid #ccc;
  background: #ffffff;
  display: block;
  margin: auto;
  width: 100%;
}


#process-details, #results {
  font-size: 0.8rem;
}
