* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #fff3e0;
  font-family: Arial, sans-serif;
}

.app {
  max-width: 380px;
  margin: 0 auto;
  padding: 16px;
  text-align: center;
}

h1 {
  margin-bottom: 10px;
}

.wheel-container {
  position: relative;
  margin: 20px auto;
}

canvas {
  width: 100%;
  height: auto;
  border-radius: 50%;
  border: 6px solid #333;
  background: #fff;
}

.arrow {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
  color: red;
}

button {
  width: 100%;
  padding: 14px;
  margin-top: 8px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  background: #ff7043;
  color: white;
  cursor: pointer;
}

button:hover {
  background: #f4511e;
}

#resultat {
  margin: 10px 0;
  font-size: 18px;
  font-weight: bold;
}

.controls {
  margin-top: 20px;
  text-align: left;
}

.controls h2 {
  text-align: center;
}

#topping-list label {
  display: flex;
  align-items: center;
  margin: 6px 0;
  font-size: 15px;
}

#topping-list input {
  margin-right: 10px;
}

.control-buttons {
  margin-top: 10px;
}
