/*
 * OrbitTraceHandler styling — readout pill only. The drawn circle itself
 * is 3D (Unity Links with the pencil-line preset), so there is no DOM/SVG
 * layer for the trace.
 */

#orbit-trace-readout {
    position: fixed;
    left: 50%;
    bottom: 140px;
    transform: translateX(-50%) rotate(-0.75deg);
    z-index: 40;

    background: var(--color-yellow-sticky, #FFCC66);
    color: #1A1A1A;
    font-family: var(--font-display, "Fraunces", serif);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.01em;
    padding: 10px 18px;
    border: 2px solid #1A1A1A;
    border-radius: var(--radius-full, 2px);
    box-shadow: 3px 3px 0 #1A1A1A;
    white-space: nowrap;
    pointer-events: none;
}

#orbit-trace-readout[hidden] {
    display: none;
}
