/* ── ACTIVITIES CARD ─────────────────────────────────────────────────────── */
.act-cat-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.act-cat-pill {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 20px; padding: 5px 12px; font-size: 11px; font-weight: 600;
  color: var(--text-dim); cursor: pointer; transition: all 0.2s;
}
.act-cat-pill:hover { border-color: var(--accent); color: var(--text); }
.act-cat-pill.active { background: var(--accent); border-color: var(--accent); color: #fff; }

.act-scenario-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.act-scenario-pill {
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 20px; padding: 5px 12px; font-size: 12px;
  color: var(--text-dim); cursor: pointer; transition: all 0.2s;
}
.act-scenario-pill:hover { border-color: var(--accent); color: var(--text); }
.act-scenario-pill.active { background: rgba(14,165,233,0.15); border-color: var(--accent); color: var(--accent); }

.act-results { display: flex; flex-direction: column; gap: 6px; }
.act-day-row {
  display: flex; flex-direction: column; gap: 4px;
  padding: 10px 12px; border-radius: 12px; background: var(--surface2);
  border: 1px solid var(--border);
}
.act-day-top { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.act-day-label { font-size: 13px; font-weight: 500; color: var(--text); min-width: 110px; }

.act-score-badge {
  font-size: 11px; font-weight: 600; padding: 3px 10px;
  border-radius: 20px; flex-shrink: 0;
}
.act-score-ottimo    { background: rgba(16,185,129,0.2);  color: #10b981; border: 1px solid rgba(16,185,129,0.4); font-weight: 700; }
.act-score-green     { background: rgba(34,197,94,0.15);  color: #22c55e; border: 1px solid rgba(34,197,94,0.3);  }
.act-score-yellow    { background: rgba(234,179,8,0.15);  color: #eab308; border: 1px solid rgba(234,179,8,0.3);  }
.act-score-red       { background: rgba(239,68,68,0.15);  color: #ef4444; border: 1px solid rgba(239,68,68,0.3);  }
.act-score-red-strong{ background: rgba(220,38,38,0.25);  color: #dc2626; border: 1px solid rgba(220,38,38,0.5); font-weight: 700; }

.act-fasce { display: flex; flex-wrap: wrap; gap: 4px; width: 100%; margin-top: 6px; }
.act-fascia-chip { font-size: 11px; padding: 2px 8px; border-radius: 10px; font-weight: 500; }
.act-fascia-green  { background: rgba(34,197,94,0.12);  color: #22c55e; border: 1px solid rgba(34,197,94,0.25); }
.act-fascia-yellow { background: rgba(234,179,8,0.12);  color: #eab308; border: 1px solid rgba(234,179,8,0.25); }

.act-motivi { display: flex; flex-direction: column; gap: 2px; width: 100%; margin-top: 5px; }
.act-motivo { font-size: 11px; color: var(--text-dim); line-height: 1.4; }

.act-warnings { display: flex; flex-wrap: wrap; gap: 4px; width: 100%; margin-top: 2px; }
.act-warn-chip {
  font-size: 10px; padding: 2px 8px; border-radius: 10px;
  background: rgba(234,179,8,0.1); color: #eab308;
  border: 1px solid rgba(234,179,8,0.25);
}
