/* ─── Vector Drawing & Editing Styles ─────────────────────── */

/* Drawing mode cursor */
.potree-drawing-mode .viewer-potree-container {
    cursor: crosshair !important;
}

/* Vertex hover feedback (handled via JS cursor, this is a fallback) */
.potree-vertex-hover {
    cursor: grab !important;
}

.potree-vertex-dragging {
    cursor: grabbing !important;
}

/* Draw instructions tooltip */
.potree-draw-tooltip {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    pointer-events: none;
    z-index: 100;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.potree-draw-tooltip.hidden {
    opacity: 0;
}

/* Vector count badge */
.potree-vector-count {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.6);
    color: #ccc;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    pointer-events: none;
    z-index: 50;
}
