.aiforya-sm-health-grid { display:grid; grid-template-columns:auto 1fr; gap:30px; align-items:center; padding:8px 0 20px; }
        .aiforya-sm-health-circle { width:160px; height:160px; border-radius:50%; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:2px; background:radial-gradient(circle, rgba(15,23,42,0.6) 0%, rgba(15,23,42,0.95) 70%); border:5px solid; box-shadow:inset 0 0 22px rgba(0,0,0,0.45); }
        .aiforya-sm-health-circle--excellent { border-color:#4ade80; box-shadow:inset 0 0 22px rgba(0,0,0,0.45), 0 0 32px rgba(74,222,128,0.30); }
        .aiforya-sm-health-circle--good      { border-color:#86efac; box-shadow:inset 0 0 22px rgba(0,0,0,0.45), 0 0 24px rgba(134,239,172,0.20); }
        .aiforya-sm-health-circle--partial   { border-color:#fbbf24; box-shadow:inset 0 0 22px rgba(0,0,0,0.45), 0 0 24px rgba(251,191,36,0.20); }
        .aiforya-sm-health-circle--weak      { border-color:#f87171; box-shadow:inset 0 0 22px rgba(0,0,0,0.45), 0 0 24px rgba(248,113,113,0.25); }
        .aiforya-sm-health-num { font-size:54px; font-weight:700; color:#f1f5f9; line-height:1; font-feature-settings:"tnum"; font-variant-numeric:tabular-nums; }
        .aiforya-sm-health-suffix { font-size:12px; color:#94a3b8; margin-top:-2px; }
        .aiforya-sm-health-status { font-size:10px; text-transform:uppercase; letter-spacing:0.10em; font-weight:700; color:#cbd5e1; margin-top:6px; }
        .aiforya-sm-health-axes { display:flex; flex-direction:column; gap:12px; }
        .aiforya-sm-health-axis { padding:10px 12px; background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.08); border-radius:8px; }
        .aiforya-sm-health-axis-head { display:flex; align-items:baseline; justify-content:space-between; gap:10px; margin-bottom:6px; }
        .aiforya-sm-health-axis-label { font-size:13px; font-weight:600; color:#f1f5f9; }
        .aiforya-sm-health-axis-value { font-size:14px; font-weight:700; font-feature-settings:"tnum"; }
        .aiforya-sm-health-axis-value--excellent { color:#4ade80; }
        .aiforya-sm-health-axis-value--good      { color:#86efac; }
        .aiforya-sm-health-axis-value--partial   { color:#fbbf24; }
        .aiforya-sm-health-axis-value--weak      { color:#f87171; }
        .aiforya-sm-health-bar { height:6px; background:rgba(255,255,255,0.06); border-radius:999px; overflow:hidden; }
        .aiforya-sm-health-bar-fill { height:100%; transition:width .3s; }
        .aiforya-sm-health-bar-fill--excellent { background:linear-gradient(90deg, #4ade80, #22c55e); }
        .aiforya-sm-health-bar-fill--good      { background:linear-gradient(90deg, #86efac, #4ade80); }
        .aiforya-sm-health-bar-fill--partial   { background:linear-gradient(90deg, #fbbf24, #f59e0b); }
        .aiforya-sm-health-bar-fill--weak      { background:linear-gradient(90deg, #f87171, #ef4444); }
        .aiforya-sm-health-axis-desc { font-size:11.5px; color:#94a3b8; margin-top:4px; line-height:1.4; }
        .aiforya-sm-health-actions { display:flex; align-items:center; gap:14px; padding-top:14px; border-top:1px solid rgba(255,255,255,0.06); }
        .aiforya-sm-health-status-text { font-size:13px; }

        .aiforya-sm-health-sparkline { display:flex; align-items:flex-end; gap:2px; height:120px; padding:8px 0; background:rgba(255,255,255,0.03); border-radius:8px; padding:14px; }
        .aiforya-sm-health-spark-col { flex:1; display:flex; align-items:flex-end; min-width:4px; }
        .aiforya-sm-health-spark-bar { width:100%; border-radius:2px 2px 0 0; min-height:4px; transition:opacity .15s; }
        .aiforya-sm-health-spark-bar:hover { opacity:0.7; }
        .aiforya-sm-health-spark-bar--excellent { background:#4ade80; }
        .aiforya-sm-health-spark-bar--good      { background:#86efac; }
        .aiforya-sm-health-spark-bar--partial   { background:#fbbf24; }
        .aiforya-sm-health-spark-bar--weak      { background:#f87171; }
        .aiforya-sm-health-spark-axis { display:flex; justify-content:space-between; padding:6px 4px 0; font-size:11px; color:#94a3b8; }

        @media (max-width:780px) { .aiforya-sm-health-grid { grid-template-columns:1fr; } .aiforya-sm-health-circle { margin:0 auto; } }

        .aiforya-sm-toast-host { position:fixed; right:24px; bottom:24px; z-index:100001; display:flex; flex-direction:column; gap:10px; pointer-events:none; }
        .aiforya-sm-toast { pointer-events:auto; min-width:240px; max-width:380px; padding:12px 16px; border-radius:10px; font-size:13px; line-height:1.45; color:#f1f5f9; background:#0f172a; border:1px solid rgba(255,255,255,0.12); box-shadow:0 12px 32px rgba(0,0,0,0.45); transform:translateX(120%); opacity:0; transition:transform .28s ease, opacity .28s ease; }
        .aiforya-sm-toast.is-visible { transform:translateX(0); opacity:1; }
        .aiforya-sm-toast--success { border-left:3px solid #4ade80; }
        .aiforya-sm-toast--error   { border-left:3px solid #f87171; }
        .aiforya-sm-toast--warning { border-left:3px solid #fbbf24; }
        .aiforya-sm-toast--info    { border-left:3px solid #60a5fa; }
