 :root {
    --bg: #f3f4f6;
    --navy: #0f172a;
    --blue: #3b82f6;
    --text: #1e293b;
}

body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); padding: 2rem; }
.container { max-width: 1200px; margin: auto; background: white; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); overflow: hidden; }

.header { background: var(--navy); color: white; padding: 2.5rem; text-align: center; }

.btn-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; padding: 2rem; background: #fff; border-bottom: 1px solid #eee; }

.report-btn { padding: 1.2rem; border: 1px solid #e2e8f0; border-radius: 8px; cursor: pointer; transition: 0.2s; background: #f8fafc; display: flex; align-items: center; }
.report-btn:hover { background: #eff6ff; border-color: var(--blue); transform: translateY(-2px); }

.btn-icon { font-size: 1.4rem; margin-right: 1rem; }
.btn-text { font-weight: 600; font-size: 0.9rem; }

.content { padding: 2rem; }
.status-badge { background: var(--blue); color: white; padding: 0.5rem 1rem; border-radius: 50px; font-weight: bold; margin-bottom: 1rem; display: inline-block; }

.table-wrap { overflow-x: auto; border: 1px solid #f1f5f9; border-radius: 8px; margin-top: 1rem; }
table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
th { background: #f8fafc; padding: 12px; text-align: left; border-bottom: 2px solid #edf2f7; text-transform: uppercase; color: #64748b; }
td { padding: 12px; border-bottom: 1px solid #f1f5f9; white-space: nowrap; }

.dl-group { margin-top: 1.5rem; display: none; gap: 10px; }
.dl-btn { padding: 10px 20px; border: none; border-radius: 6px; color: white; font-weight: 600; cursor: pointer; }
.excel { background: #22c55e; }
.csv { background: #06b6d4; }