/* nimiq.tax app tokens.
 *
 * The Nimiq legacy framework (nimiq/legacy/nimiq-style.min.css) defines every
 * --nimiq-* color/gradient on html{} and sets html{font-size:8px} (so 1rem=8px).
 * To avoid that rem trap, ALL custom app CSS uses px. These tokens are the
 * app-level spacing / layout scale used across public/css/app.css.
 */
:root {
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;

  --content-max: 960px;
  --card-radius: 12px;

  /* Surfaces (aliases over the framework colors for readability) */
  --page-bg: #f8f8f8;
  --ink: #1f2348;
  --ink-60: rgba(31, 35, 72, 0.6);
  --ink-40: rgba(31, 35, 72, 0.4);
}
