#draw-layer {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Cpath d='M6 22l3.2-.7L22.1 9.4 18.6 5.9 5.8 18.1 5 23z' fill='%23e8d800' stroke='%23111100' stroke-width='1.5'/%3E%3Cpath d='M17.2 7.2l3.5 3.5' stroke='%23111100' stroke-width='1.5'/%3E%3C/svg%3E") 3 24, crosshair;
  height: var(--draw-height, 100vh);
  left: 0;
  pointer-events: none;
  position: absolute;
  touch-action: none;
  top: 0;
  width: 100vw;
  z-index: 9999;
}

body.draw-mode #draw-layer {
  pointer-events: auto;
}

.draw-toggle {
  align-items: center;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  justify-content: center;
  min-height: 1.65rem;
  min-width: 2.05rem;
  position: relative;
  z-index: 10000;
}

.draw-toggle.active,
.draw-toggle[aria-pressed="true"] {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}
