/**
 * Portal overrides for the ported formatted-text input.
 *
 * The nk-theme ACF field styles (nk-theme/components/acf-fields/formatted-text) make
 * .nk-formatted-text-input full-width + transparent — deliberate for the ACF GHOST
 * overlay. The portal port drops the ghost, so those don't apply here: the input
 * should look like a normal admin field. This file is enqueued only on the portal
 * admin screens (portal_enqueue_formatted_text), so it never touches real ACF fields.
 *
 * Higher specificity than the plugin's single-class rules, so load order is moot.
 */
input.nk-formatted-text-input {
	background: #fff !important;
	background-color: #fff !important;
}
/* Undo the ACF full-width so it matches sibling .regular-text inputs (25em). Inline
   widths (e.g. the $ amount field's 140px) still win via the style attribute. */
.nk-formatted-text-input.regular-text {
	width: 25em;
}
