.abnv-field {
    width: 100%;
    --abnv-button-bg: #222;
    --abnv-button-color: #fff;
    --abnv-button-hover-bg: #000;
    --abnv-button-hover-color: #fff;
    --abnv-button-radius: 4px;
    --abnv-gap: 10px;
    --abnv-result-bg: #f5f5f3;
    --abnv-result-color: #222;
    --abnv-success-color: #2f6b45;
    --abnv-error-bg: #fff4f2;
    --abnv-error-color: #b42318;
    --abnv-result-radius: 6px;
    --abnv-result-padding: 14px;
    --abnv-result-width: fit-content;
    --abnv-result-margin-left: 0;
    --abnv-result-margin-right: auto;
}
.abnv-control-row { display:grid; grid-template-columns:minmax(0,1fr) auto; gap:var(--abnv-gap); align-items:stretch; }
.abnv-verify-button { white-space:nowrap; cursor:pointer; background:var(--abnv-button-bg)!important; color:var(--abnv-button-color)!important; border:1px solid var(--abnv-button-bg)!important; border-radius:var(--abnv-button-radius)!important; transition:background-color .18s ease,color .18s ease,border-color .18s ease,box-shadow .18s ease; }
.abnv-verify-button:hover { background:var(--abnv-button-hover-bg)!important; color:var(--abnv-button-hover-color)!important; border-color:var(--abnv-button-hover-bg)!important; }
.abnv-verify-button:focus-visible { background:var(--abnv-button-hover-bg)!important; color:var(--abnv-button-hover-color)!important; border-color:var(--abnv-button-hover-bg)!important; outline:2px solid currentColor; outline-offset:3px; }
.abnv-verify-button:disabled { cursor:wait; opacity:.65; }
.abnv-result { margin-top:10px; margin-left:var(--abnv-result-margin-left); margin-right:var(--abnv-result-margin-right); width:var(--abnv-result-width); max-width:100%; box-sizing:border-box; padding:var(--abnv-result-padding); border-radius:var(--abnv-result-radius); background:var(--abnv-result-bg); color:var(--abnv-result-color); line-height:1.5; }
.abnv-result--success { border-left:3px solid var(--abnv-success-color); }
.abnv-result--error { border-left:3px solid var(--abnv-error-color); background:var(--abnv-error-bg); color:var(--abnv-error-color); }
.abnv-status { font-size:.9em; margin-bottom:4px; }
.abnv-display-name { font-size:1.08em; font-weight:600; }
.abnv-legal-name { font-size:.92em; opacity:.72; margin-top:1px; }
.abnv-entity-type { font-size:.88em; opacity:.76; margin-top:4px; }
.abnv-meta { font-size:.9em; opacity:.82; margin-top:7px; }
.abnv-editor-warning { margin-bottom:10px; padding:9px 11px; border-left:3px solid #b54708; background:#fff8eb; color:#7a2e0e; font-size:12px; line-height:1.4; }
@media (max-width:767px) {
    .abnv-control-row{grid-template-columns:1fr}
    .abnv-verify-button{width:100%}
    .abnv-field[data-abnv-mobile-full="1"] .abnv-result{width:100%!important;margin-left:0!important;margin-right:0!important}
}
@media (prefers-reduced-motion:reduce) { .abnv-verify-button{transition:none} }
