:root{
  /* Approximated to Cargo theme (dark turquoise + gold) — tell me hex codes if you want 1:1 match */
  --ilx-primary:#0f6b6a; /* dark turquoise */
  --ilx-accent:#f6b33a;  /* gold */
  --ilx-bg:#ffffff;
  --ilx-panel:#f9fbfb;
  --ilx-border:#e5e9eb;
  --ilx-text:#1f2d2e;
  --ilx-muted:#5a6a6b;
}

.ilx-flex-wrap{max-width:980px;margin:28px auto;background:var(--ilx-bg);padding:22px;border-radius:16px;box-shadow:0 10px 30px rgba(6,28,34,.08);font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;color:var(--ilx-text)}
.ilx-label{display:block;margin-bottom:8px;font-weight:650}
.ilx-row{display:flex;gap:12px;align-items:center}
.ilx-input{flex:1;min-width:240px;padding:11px 13px;border-radius:10px;border:1px solid var(--ilx-border);font-size:15px}
.ilx-btn{padding:11px 18px;border-radius:10px;background:var(--ilx-primary);color:#fff;border:none;font-weight:700;cursor:pointer;box-shadow:0 2px 8px rgba(14,95,99,.25)}
.ilx-btn:hover{filter:brightness(1.05)}
.ilx-msg{margin-top:8px;color:#b00020;min-height:18px}

.ilx-stages{display:flex;gap:14px;justify-content:space-between;margin:18px 0 10px}
.ilx-stage{flex:1;text-align:center;opacity:.5;transition:transform .25s ease}
.ilx-stage.completed{opacity:1;transform:translateY(-2px)}
.ilx-stage.current{opacity:1;transform:translateY(-6px);border-bottom:3px solid var(--ilx-accent)}
.ilx-ico{width:56px;height:56px;margin:0 auto 6px;background:var(--ilx-panel);border:1px solid var(--ilx-border);border-radius:14px;display:flex;align-items:center;justify-content:center}
.ilx-lbl{font-weight:700;font-size:13px}
.ilx-sub{font-size:12px;color:var(--ilx-muted);margin-top:2px}

.ilx-bar{height:12px;background:#eef2f3;border-radius:12px;overflow:hidden;margin-bottom:12px;border:1px solid var(--ilx-border)}
.ilx-fill{height:100%;width:0;background:linear-gradient(90deg,var(--ilx-primary),var(--ilx-accent));transition:width .8s cubic-bezier(.2,.9,.4,1)}

.ilx-meta{display:flex;flex-wrap:wrap;gap:8px;margin-top:8px;margin-bottom:12px}
.ilx-pill{display:flex;gap:6px;align-items:center;border:1px solid var(--ilx-border);background:var(--ilx-panel);padding:6px 8px;border-radius:999px;font-size:13px}
.ilx-pill .ilx-k{font-weight:700}

.ilx-timeline{margin-top:10px;text-align:left}
.ilx-cards{display:flex;flex-direction:column;gap:12px}
.ilx-card{padding:12px;border-radius:14px;border:1px solid var(--ilx-border);background:#fff}
.ilx-date{font-size:12px;color:var(--ilx-muted);font-weight:700}
.ilx-title{font-size:16px;font-weight:800;margin-top:2px}
.ilx-loc{font-size:13px;color:#3b4b4c;margin-top:2px}
.ilx-chips{display:flex;flex-wrap:wrap;gap:6px;margin-top:8px}
.ilx-chip{font-size:12px;background:var(--ilx-panel);border:1px solid var(--ilx-border);border-radius:8px;padding:4px 6px}

@media(max-width:720px){
  .ilx-row{flex-direction:column;align-items:stretch}
  .ilx-ico{width:50px;height:50px}
}

/* === ILX site blue override + icon coloring === */
:root{
  --ilx-primary:#0b4f7a;
  --ilx-accent:#27b5ff;
}
.ilx-ico svg{ stroke:#9aa8b6; }
.ilx-stage.current .ilx-ico svg{ stroke:var(--ilx-primary); }
.ilx-stage.completed .ilx-ico svg{ stroke:#1dbf73; }
.ilx-bar{ background:#e8eef4; }
.ilx-fill{ background:linear-gradient(90deg,var(--ilx-primary), var(--ilx-accent)); }
