/* ------------------------------------------------------------------
 * CSP-safe extracted styles
 * ------------------------------------------------------------------
 * A Content-Security-Policy of `style-src 'self'` (no 'unsafe-inline')
 * blocks style="..." attributes on HTML that is parsed/injected at
 * runtime. The rules below replace the STATIC inline styles that used
 * to live in template strings inside:
 *
 *   public/assets/app-js/api-documentation.js
 *   public/assets/app-js/subscription.js
 *   public/assets/app-js/webhook.js
 *
 * DYNAMIC values (colours interpolated from HTTP_RESPONSE_CODES /
 * queryBuildColors) cannot become static classes. Those are carried on
 * a data-csp-color="..." attribute and applied via the CSSOM after the
 * markup is inserted -- the CSSOM is not restricted by CSP.
 *
 * All class names are prefixed `csp-` to avoid colliding with
 * bootstrap / argon / index.css / custom.css.
 * ------------------------------------------------------------------ */

/* was: style="margin: 75px 25px 65px 25px;"
   subscription.js - "no active subscriptions" empty-state card row.
   Used by both the success (empty policies) and the error branch. */
.csp-empty-subscription-row {
    margin: 75px 25px 65px 25px;
}
