/*
 * Seller sales pages (invoice/credit-memo/shipment) keep Webkul's legacy
 * `.actions-toolbar .primary` button wrappers. A project-wide compiled rule
 * `.actions-toolbar .primary button { background:#1d4ed8 !important }` forces
 * those primary buttons blue and clobbers our orange Tailwind utility.
 *
 * Re-assert the brand orange, scoped to buttons that opted into `.bg-orange-500`
 * (higher specificity than the blue rule + !important), so unrelated primary
 * buttons elsewhere on the site are untouched.
 */
.actions-toolbar .primary button.bg-orange-500 { background-color: #f97316 !important; }
.actions-toolbar .primary button.bg-orange-500:hover { background-color: #ea580c !important; }
