/* ── PDF Export Styles ────────────────────────────────────────── */
/* Used by weasyprint for server-side PDF generation.             */
/* NOT loaded by the browser — referenced only in Jinja2 templates */

@page {
    size: A4 landscape;
    margin: 15mm 20mm 20mm 20mm;

    @top-center {
        content: "Biomed Dashboard";
        font-size: 8pt;
        color: #7F8C9B;
    }
    @bottom-right {
        content: "Página " counter(page) " de " counter(pages);
        font-size: 8pt;
        color: #7F8C9B;
    }
    @bottom-left {
        content: "Gerado automaticamente — Biomed Dashboard";
        font-size: 8pt;
        color: #7F8C9B;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
    font-size: 10pt;
    color: #2C3E50;
    line-height: 1.4;
}

.pdf-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #1B2A4A;
    padding-bottom: 8px;
    margin-bottom: 20px;
}

.pdf-header h1 {
    font-size: 18pt;
    color: #1B2A4A;
    margin: 0;
}

.pdf-header .date {
    font-size: 10pt;
    color: #7F8C9B;
}

.pdf-section {
    margin-bottom: 16px;
    page-break-inside: avoid;
}

.pdf-section h2 {
    font-size: 13pt;
    color: #1B2A4A;
    border-bottom: 1px solid #E1E5EB;
    padding-bottom: 4px;
    margin-bottom: 10px;
}

/* KPI grid */
.kpi-grid {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.kpi-box {
    flex: 1;
    border: 1px solid #E1E5EB;
    border-radius: 6px;
    padding: 10px 14px;
    text-align: center;
}

.kpi-box .label {
    font-size: 8pt;
    color: #7F8C9B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kpi-box .value {
    font-size: 16pt;
    font-weight: 700;
    color: #1B2A4A;
}

.kpi-box .detail {
    font-size: 8pt;
    color: #7F8C9B;
}

/* Tables */
.pdf-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 9pt;
    margin-bottom: 12px;
}

.pdf-table thead th {
    background: #1B2A4A;
    color: white;
    padding: 6px 10px;
    text-align: left;
    font-weight: 600;
}

.pdf-table tbody td {
    padding: 5px 10px;
    border-bottom: 1px solid #E1E5EB;
}

.pdf-table tbody tr:nth-child(even) {
    background: #F8FAFC;
}

/* Charts */
.pdf-chart {
    text-align: center;
    margin: 12px 0;
}

.pdf-chart img {
    max-width: 100%;
    height: auto;
}

/* Utilities */
.text-right { text-align: right; }
.text-center { text-align: center; }
.text-success { color: #10b981; }
.text-danger { color: #ef4444; }
.text-warning { color: #f59e0b; }
.mt-1 { margin-top: 8px; }
.mb-1 { margin-bottom: 8px; }
