diff --git a/templates/index.html b/templates/index.html index e520c88..5ab4b4e 100644 --- a/templates/index.html +++ b/templates/index.html @@ -9224,10 +9224,15 @@ .recommendations li { margin-bottom: 8px; } - .print-btn { + .report-actions { position: fixed; top: 20px; right: 20px; + display: flex; + gap: 10px; + z-index: 1000; + } + .report-btn { padding: 12px 24px; background: #4a9eff; color: #000; @@ -9236,11 +9241,16 @@ font-weight: 600; cursor: pointer; font-size: 14px; - z-index: 1000; } - .print-btn:hover { + .report-btn:hover { background: #6bb3ff; } + .report-btn.save { + background: #22c55e; + } + .report-btn.save:hover { + background: #2ecc71; + } @media print { body { background: #fff; color: #000; padding: 20px; } .report-container { box-shadow: none; } @@ -9250,14 +9260,17 @@ .section-title { color: #1a1a2e; } th { background: #f0f0f0; color: #333; } td { border-color: #ddd; } - .print-btn { display: none; } + .report-actions { display: none; } .device-row.high_interest { background: rgba(255, 51, 51, 0.1); } .device-row.review { background: rgba(255, 204, 0, 0.1); } }
- +