/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, Arial, sans-serif;
  background: #f4f4f4;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

/* Roundel container */
#roundel {
  display: block;
  width: 400px;
  height: 400px;
}

/* Controls layout */
.controls {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  width: 320px;
  border: 1px solid #ddd;
}

.controls label {
  font-weight: 600;
  margin-bottom: 4px;
}

.controls input[type="color"] {
  width: 100%;
  height: 40px;
  padding: 2px;
  border-radius: 6px;
  border: 1px solid #ccc;
  cursor: pointer;
}

.controls input[type="text"] {
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.controls button {
  padding: 8px 12px;
  border-radius: 6px;
  border: none;
  background: #ddd;
  cursor: pointer;
  font-weight: 600;
}

.controls button:hover {
  background: #ccc;
}

.controls button.primary {
  background: #0078ff;
  color: white;
  margin-top: 5px;
}

.controls button.primary:hover {
  background: #0064d6;
}
