/* PDF Report Styles */

* {
    font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
}

body {
    font-size: 12px;
    margin: 20px;
    color: #333;
}

.header {
    text-align: center;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.header h1 {
    color: #3b82f6;
    margin: 0;
    font-size: 24px;
}

.header p {
    color: #666;
    margin: 5px 0 0;
}

.filters {
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.filters span {
    margin-left: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.stat-box {
    background: #f8f9fa;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
}

.stat-box .value {
    font-size: 20px;
    font-weight: bold;
    color: #3b82f6;
}

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

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: right;
}

th {
    background: #3b82f6;
    color: white;
}

tr:nth-child(even) {
    background: #f8f9fa;
}

.badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
    color: white;
}

.footer {
    margin-top: 30px;
    text-align: center;
    font-size: 10px;
    color: #999;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

@media print {
    body { margin: 0; }
}
