/* ── Midas page (XAU 15-min agentic bot) ─────────────────────────────────
   Deliberately thin: the page reuses the desk's dk-* component classes for
   visual consistency; only midas-specific bits live here. */

/* stepper dot variants — decision side at a glance; grey = pre-gate skip */
.md-dot--long  { background: var(--up) !important; }
.md-dot--short { background: var(--down) !important; }
.md-dot--flat  { background: var(--text-muted) !important; }
.md-dot--skip  { background: rgba(255, 255, 255, 0.16) !important; }
.md-step--skip { opacity: 0.55; }
.md-step--skip:hover { opacity: 0.9; }

/* the HTF brief block — preformatted but wrapped, terminal-ish */
.md-htf {
  margin: 0; padding: 10px 12px;
  font-size: 11.5px; line-height: 1.55; color: var(--text-secondary);
  background: var(--bg-inset); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  white-space: pre-wrap; word-break: break-word;
  max-height: 340px; overflow: auto;
}

@media (max-width: 640px) {
  .md-htf { font-size: 11px; max-height: 260px; }
}
