/* Canvas 白板 — 指针与工具态 */

.wb-surface {
  display: block;
  width: 100%;
  height: 100%;
  touch-action: none;
  cursor: default;
}

.wb-wrap.wb-tool-hand .wb-surface,
.wb-wrap.wb-space-pan .wb-surface {
  cursor: grab;
}

.wb-wrap.wb-tool-draw .wb-surface {
  cursor: crosshair;
}

.wb-wrap.wb-tool-eraser .wb-surface {
  cursor: cell;
}

.wb-wrap.wb-tool-rectangle .wb-surface,
.wb-wrap.wb-tool-arrow .wb-surface,
.wb-wrap.wb-tool-text .wb-surface,
.wb-wrap.wb-tool-group .wb-surface {
  cursor: crosshair;
}

.wb-text-editor {
  position: absolute;
  z-index: 25;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  resize: none;
  overflow: hidden;
  pointer-events: auto;
  box-sizing: border-box;
}

.wb-frame-label-editor {
  position: absolute;
  z-index: 25;
  margin: 0;
  padding: 2px 4px;
  border: 1px solid rgba(105, 101, 219, 0.55);
  border-radius: 4px;
  outline: none;
  background: rgba(255, 255, 255, 0.96);
  color: #64748b;
  font: 600 11px "DM Sans", "PingFang SC", sans-serif;
  pointer-events: auto;
  box-sizing: border-box;
}

.wb-wrap.wb-link-pick .wb-surface {
  cursor: cell;
}

.wb-wrap.wb-resizing .wb-surface {
  cursor: inherit;
}
