/* The remaining-count badge follows the focused limited field without changing form layout. */
.sb-character-count {
    position: fixed;
    z-index: 2147483647;
    max-width: calc(100vw - 16px);
    padding: 3px 7px;
    border: 1px solid var(--sb-border-soft, #cbd5e1);
    border-radius: 6px;
    background: var(--sb-surface, #fff);
    color: var(--sb-text, #263347);
    box-shadow: 0 3px 10px rgb(15 23 42 / 12%);
    font: 600 12px/1.4 system-ui, sans-serif;
    pointer-events: none;
    white-space: nowrap;
}

.sb-character-count[hidden] { display: none; }
