/* Element Inspector Styles
 * Chrome DevTools-style element picker for debug mode
 * Toggle with Ctrl+Shift+E
 */

/* Body state when inspector is active */
.element-inspector-active {
    cursor: crosshair !important;
}

.element-inspector-active * {
    cursor: crosshair !important;
}

/* Highlight outline on hovered element */
.element-inspector-highlight {
    outline: 2px dashed #3eb4fb !important;
    outline-offset: -1px;
}

/* Tooltip container */
.element-inspector-tooltip {
    position: fixed;
    z-index: 9995;
    background: #17232a;
    color: white;
    font-family: 'SF Mono', 'Consolas', 'Monaco', monospace;
    font-size: 12px;
    line-height: 1.4;
    padding: 8px 12px;
    border-radius: 6px;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    max-width: 600px;
    display: none;
}

.element-inspector-tooltip.visible {
    display: block;
}

/* Partial path line */
.element-inspector-tooltip-partial {
    color: #3eb4fb;
    font-weight: 600;
    font-size: 12px;
}

/* DOM path line */
.element-inspector-tooltip-path {
    color: #9ca3af;
    font-size: 11px;
    margin-top: 2px;
}

/* Click hint */
.element-inspector-tooltip-hint {
    color: #6b7280;
    font-size: 10px;
    margin-top: 4px;
    text-align: right;
}
