/* Remote Cursor Tracker */

.remote-cursor-container {
    pointer-events: none !important;
    z-index: 10000;
    transition: opacity 1s ease;
}

.remote-cursor-container.fading {
    opacity: 0;
}

/* Pointer arrow SVG */
.remote-cursor-arrow {
    position: absolute;
    top: 0;
    left: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

/* Username label pill */
.remote-cursor-label {
    position: absolute;
    top: 22px;
    left: 12px;
    padding: 1px 6px;
    border-radius: var(--radius-xs, 4px);
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 10px;
    font-weight: 600;
    color: #0a0a0c;
    white-space: nowrap;
    line-height: 14px;
    letter-spacing: 0.2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
