/**
 * Email report HTML template styles.
 * Loaded by class-scheduled-reports when building report email body (not a WordPress page).
 *
 * @package TrustLens
 */

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.6;
	color: #333;
}
.container {
	max-width: 600px;
	margin: 0 auto;
	padding: 20px;
}
.header {
	background: #2271b1;
	color: white;
	padding: 20px;
	text-align: center;
	border-radius: 8px 8px 0 0;
}
.content {
	background: #f9f9f9;
	padding: 20px;
	border-radius: 0 0 8px 8px;
}
.section {
	background: white;
	padding: 15px;
	margin: 15px 0;
	border-radius: 4px;
	border: 1px solid #e0e0e0;
}
.section h3 {
	margin-top: 0;
	color: #2271b1;
}
.stat-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}
.stat {
	text-align: center;
	padding: 10px;
}
.stat-value {
	font-size: 24px;
	font-weight: bold;
	color: #2271b1;
}
.stat-label {
	font-size: 12px;
	color: #666;
	text-transform: uppercase;
}
.segment-badge {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 3px;
	font-size: 12px;
}
.segment-vip {
	background: #dff0d8;
	color: #3c763d;
}
.segment-trusted {
	background: #d9edf7;
	color: #31708f;
}
.segment-normal {
	background: #f5f5f5;
	color: #666;
}
.segment-caution {
	background: #fcf8e3;
	color: #8a6d3b;
}
.segment-risk {
	background: #f2dede;
	color: #a94442;
}
.segment-critical {
	background: #a94442;
	color: white;
}
table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}
th,
td {
	padding: 8px;
	text-align: left;
	border-bottom: 1px solid #e0e0e0;
}
th {
	background: #f5f5f5;
}
.footer {
	text-align: center;
	padding: 20px;
	color: #666;
	font-size: 12px;
}
