/* Minecraft 3D 看板娘样式 v3 */
#mc-kanban-container {
  position: fixed;
  z-index: 9999;
  cursor: grab;
  user-select: none;
  touch-action: none;
  pointer-events: none;
}

#mc-kanban-container:active {
  cursor: grabbing;
}

#mc-kanban-container canvas {
  pointer-events: auto;
  display: block;
}

/* 对话气泡 */
#mc-kanban-bubble {
  position: fixed;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 8px 14px;
  font-size: 13px;
  color: #333;
  max-width: 160px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  z-index: 9998;
  display: none;
  pointer-events: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
}

#mc-kanban-bubble::after {
  content: '';
  position: absolute;
  bottom: -7px;
  right: 24px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid rgba(255, 255, 255, 0.95);
}

/* 移动端隐藏 */
@media (max-width: 768px) {
  #mc-kanban-container {
    display: none;
  }
}
