﻿/* 1. Bob's Parent Container */
.bob-parent-container-class {
    position: relative; /* REQUIRED: Acts as the coordinate anchor for Bob's offsets */
    overflow: visible !important; /* REQUIRED: Allows Bob to sneak outside the bounds to hide/peer */
}

/* 2. Bob Himself */
.bob-element-class {
    position: absolute; /* REQUIRED: Takes him out of document flow so top/left/transforms work */
    top: 0;
    left: 0;
    will-change: transform; /* Performance optimization for buttery smooth Web Animations */
    /* Crucial for rotations: pivots Bob from his feet rather than his center stomach */
    transform-origin: bottom center;
}

/* 3. The Target Widget */
svg.navigator {
    position: relative; /* Ensures it respects z-index styling layers properly */
    z-index: 1; /* Baseline layer so Bob's z-index: -1 can slip cleanly underneath */
}

.bob {
    position: fixed;
    width: 30px;
    height: 30px;
    right: 20px;
    bottom: 20px;
    z-index: 999999;
    pointer-events: none;
    user-select: none;
    will-change: transform;
}
