#continuousWidget {
  border: none;
  box-shadow: none;
}
.cw-body {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.cw-canvas-wrap {
  flex: 1 1 320px;
  max-width: 380px;
}
.cw-canvas {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  display: block;
  background: #fbfbfc;
  border-radius: 10px;
  cursor: grab;
  touch-action: none;
}
.cw-canvas:active {
  cursor: grabbing;
}
.cw-scores {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 0 0 auto;
}
.cw-square {
  width: 64px;
  height: 56px;
  border-radius: 8px;
  border: 2px solid transparent;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cw-square--best {
  border-width: 3px;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
}
.cw-square-label {
  font-size: 11px;
  text-align: center;
  color: #1a1d24;
  font-weight: 600;
  line-height: 1.3;
}
