/* SPDX-License-Identifier: AGPL-3.0-or-later
 * Copyright (C) 2024-2026 Philippe Naveau — contact@perfshop.io
 *
 * inline-fix.css — B1.ter utility classes for admin backoffice (2026-05-20).
 *
 * The cluster CSP `style-src 'self'` rejects inline element.style mutations.
 * This file provides named CSS classes so admin JS can use classList instead
 * of element.style, satisfying the CSP and the no-inline-script-style pin.
 */

/* ── Universal hide/show ──────────────────────────────────────────────── */
.hidden { display: none !important; }

/* ── Test-data toggle button active state ────────────────────────────── */
/* Replaces render-orders.js `btn.style.borderColor` + `btn.style.color`. */
.adm-btn-test-active {
  border-color: rgba(52, 211, 153, 0.5);
  color: #34d399;
}
