<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LLM Cost Ops Report</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
line-height: 1.6;
color: #333;
max-width: 600px;
margin: 0 auto;
padding: 20px;
background-color: #f5f5f5;
}
.container {
background-color: #ffffff;
border-radius: 8px;
padding: 30px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.header {
border-bottom: 3px solid #4472C4;
padding-bottom: 20px;
margin-bottom: 30px;
}
.header h1 {
margin: 0;
color: #4472C4;
font-size: 24px;
}
.header p {
margin: 5px 0 0 0;
color: #666;
font-size: 14px;
}
.info-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
margin: 20px 0;
}
.info-item {
padding: 15px;
background-color: #f8f9fa;
border-radius: 4px;
}
.info-item label {
display: block;
font-size: 12px;
color: #666;
text-transform: uppercase;
margin-bottom: 5px;
font-weight: 600;
}
.info-item value {
display: block;
font-size: 16px;
color: #333;
font-weight: 500;
}
.footer {
margin-top: 30px;
padding-top: 20px;
border-top: 1px solid #e0e0e0;
font-size: 12px;
color: #666;
text-align: center;
}
.attachment-notice {
background-color: #e3f2fd;
border-left: 4px solid #2196F3;
padding: 15px;
margin: 20px 0;
border-radius: 4px;
}
.attachment-notice p {
margin: 0;
color: #1976D2;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>{{report_type}} Report</h1>
<p>Generated on {{generated_at}}</p>
</div>
<div class="info-grid">
<div class="info-item">
<label>Report ID</label>
<value>{{report_id}}</value>
</div>
<div class="info-item">
<label>Total Records</label>
<value>{{total_records}}</value>
</div>
<div class="info-item">
<label>Date Range Start</label>
<value>{{date_range_start}}</value>
</div>
<div class="info-item">
<label>Date Range End</label>
<value>{{date_range_end}}</value>
</div>
</div>
<div class="attachment-notice">
<p><strong>Attachment:</strong> The complete report is attached to this email. Please download and review the attached file for detailed information.</p>
</div>
<div class="footer">
<p>This is an automated report from LLM Cost Ops</p>
<p>For questions or support, please contact your administrator</p>
</div>
</div>
</body>
</html>