/* ============================================================
   GMM — Monitor Paint Layer
   macro-monitor/assets/monitor.css
   Override shared design tokens with monitor accent colour.
   ============================================================ */

:root {
  --monitor-accent:      #22a0aa;
  --monitor-accent-bg:   rgba(34,160,170,0.12);
  --monitor-accent-dark: #3ab5bf;
  --monitor-name:        "Global Macro Monitor";
  --monitor-abbr:        "GMM";
}

[data-theme="dark"] {
  --monitor-accent:    #3ab5bf;
  --monitor-accent-bg: rgba(58,181,191,0.12);
}


/* GMM personality — data terminal */
.signal-block { font-family: var(--font-mono); }
.module-num { font-family: var(--font-mono); letter-spacing: 0.1em; }
.kpi-card { border-top: 2px solid var(--monitor-accent); border-radius: 2px; }


/* ------------------------------------------------------------
   Hide module numbers on the report front-end (operator 2026-06-30).
   After modules moved to Investor, the GMM numbering was non-contiguous
   (00/02/04/07/10) and several sections carried none. Numbers are
   suppressed here rather than renumbered. This covers all sources:
     - .module-num-large : injected dynamically by shared/js/renderer.js
                           (the large faint watermark in the signal card)
     - .sidebar-num      : the MODULES right-rail nav in report.html
     - .module-num       : legacy inline header badge
   Scoped to GMM's own monitor.css; the 6 other monitors are unaffected.
   ------------------------------------------------------------ */
.module-num-large,
.sidebar-num,
.module-num { display: none !important; }
