body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #121212;
    margin: 0;
    padding: 20px;
}
header {
    text-align: center;
    padding: 40px 0;
}
.status-pill {
    background: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
}
.banner {
    background: #1e1e1e;
    padding: 20px;
    border: 1px solid #333;
    margin: 20px 0;
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.card, .report-card {
    background: #1e1e1e;
    padding: 20px;
    border: 1px solid #333;
}
footer {
    margin-top: 40px;
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 0.8em;
}

/* Report UI */
.report-header { margin-bottom: 20px; }
.report-meta { display: flex; gap: 10px; margin-top: 10px; }
.badge { padding: 4px 8px; border-radius: 4px; font-size: 0.8em; font-weight: bold; }
.badge.warning { background: #856404; color: #ffeeba; }
.badge.info { background: #0c5460; color: #bee5eb; }
.badge.highlight { background: #721c24; color: #f8d7da; }
.badge.medium { background: #856404; }
.badge.low { background: #155724; }
.summary-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); gap: 10px; }
.summary-item { text-align: center; border: 1px solid #333; padding: 10px; }
.summary-item .label { display: block; font-size: 0.7em; color: #888; text-transform: uppercase; }
.summary-item .value { font-size: 1.2em; font-weight: bold; }
.value.highlight { color: #f8d7da; }
.report-table { width: 100%; border-collapse: collapse; margin-top: 10px; background: #1e1e1e; }
.report-table th, .report-table td { padding: 10px; border: 1px solid #333; text-align: left; }
.report-table th { background: #333; }
