.measurement-completion-anchor { height: 0; }
.measurement-completion {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    max-width: calc(100vw - 32px);
    pointer-events: none;
}
.measurement-completion[hidden] { display: none; }
.measurement-completion__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    box-shadow: 0 4px 16px rgb(15 23 42 / 12%);
    border: 1px solid #bbf7d0;
    border-radius: 999px;
    background: #f0fdf4;
    color: #15803d;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    white-space: nowrap;
}
.measurement-completion__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}
.measurement-completion[data-outcome="stopped"] .measurement-completion__badge {
    color: #475569;
    background: #f8fafc;
    border-color: #cbd5e1;
}
.measurement-completion[data-outcome="failed"] .measurement-completion__badge {
    color: #b45309;
    background: #fffbeb;
    border-color: #fde68a;
}
