body {
  font-family: Arial;
  background: #0f172a;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background: #1e293b;
  padding: 20px;
  border-radius: 10px;
  width: 340px;
  text-align: center;
}

input, select {
  width: 100%;
  margin: 10px 0;
  padding: 8px;
  border-radius: 5px;
  border: none;
}

canvas {
  margin: 15px 0;
  background: white;
}

button {
  margin: 5px;
  padding: 10px;
  border: none;
  background: #22c55e;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}

button:hover {
  background: #16a34a;
}