body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	color: #333;
}

.report-container {
	max-width: 600px;
	margin: 0 auto;
	background: #f9fafb;
	padding: 20px;
	border-radius: 8px;
}

.report-header {
	background: linear-gradient(120deg, #213547, #2b76b8);
	color: #fff;
	padding: 20px;
	border-radius: 8px;
	margin-bottom: 20px;
}

.stat-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 15px;
	margin-bottom: 20px;
}

.stat-box {
	background: #fff;
	padding: 15px;
	border-radius: 6px;
	text-align: center;
	border-left: 4px solid;
}

.stat-box.critical {
	border-left-color: #dc3545;
}

.stat-box.error {
	border-left-color: #fd7e14;
}

.stat-box.warning {
	border-left-color: #ffc107;
}

.stat-number {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 5px;
}

.stat-label {
	font-size: 12px;
	color: #666;
}

.report-section {
	background: #fff;
	padding: 15px;
	margin-bottom: 15px;
	border-radius: 6px;
}

.report-section h3 {
	margin-top: 0;
	color: #1d2327;
}

.report-list {
	margin: 0;
	padding-left: 20px;
}

.report-list li {
	margin-bottom: 8px;
}

.report-list small,
.report-empty,
.report-footer {
	color: #999;
}

.report-link-wrap {
	margin: 0;
}

.report-footer {
	text-align: center;
	font-size: 12px;
}

a {
	color: #2b76b8;
	text-decoration: none;
}
