.history-inline { margin-top: 18px; padding: 18px; background: #f8fafc; border-radius: 14px; border-left: 4px solid #2563eb; animation: slideDown .25s ease; height: 520px; overflow: hidden; }
.history-title { font-weight: 900; margin-bottom: 14px; }
.history-stats { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; margin: 16px 0 20px; }
.history-stats div { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 12px; text-align: center; }
.history-stats span { display: block; color: var(--muted); font-size: 12px; margin-bottom: 6px; }
.history-stats strong { font-size: 16px; }
.history-inline canvas { width: 100% !important; height: 360px !important; max-height: 360px !important; display: block; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
