/* Public styles */
.hbw-wrap {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.hbw-wheel-area {
  width: 420px;
  text-align: center;
  position: relative;
}
.hbw-form-area {
  width: 340px;
  border: 1px solid #eee;
  padding: 12px;
  border-radius: 6px;
  background: #fff;
}
.hbw-form-area input {
  width: 100%;
  padding: 8px;
  margin: 6px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.hbw-button {
  background: #ff6f00;
  color: #fff;
  padding: 10px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
#hbw-form-msg {
  margin-top: 8px;
}

/* Fixed pointer styling */
#hbw-pointer {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 24px solid #333;
  z-index: 10;
}

/* make canvas visually clear */
#hbw-wheel-canvas {
  background: radial-gradient(circle, #ffffff 0%, #cccccc 100%);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
