/* F6.2 — Inline ✨ AI-fill badges. See wwwroot/js/ai-field-badges.js for the
   injection logic; styles live here so they're cacheable and don't bloat the
   per-page payload. Anchored absolutely inside their host so they don't shift
   form layouts. */

.pmx-ai-fill-badge {
    position: absolute;
    top: 2px;
    right: 4px;
    z-index: 6;
    width: 20px;
    height: 20px;
    line-height: 18px;
    text-align: center;
    border-radius: 999px;
    font-size: 12px;
    cursor: help;
    border: 1px solid #ce93d8;
    background: #f3e5f5;
    color: #7b1fa2;
    box-shadow: 0 1px 2px rgba(0,0,0,0.12);
    pointer-events: auto;
}

.pmx-ai-fill-badge--high   { border-color: #81c784; background: #e8f5e9; color: #1e5c2e; }
.pmx-ai-fill-badge--medium { border-color: #ffd54f; background: #fff8e1; color: #7a4f01; }
.pmx-ai-fill-badge--low    { border-color: #e57373; background: #ffebee; color: #a01;    }
