/* ── Bulletin agrométéorologique — styles écran + impression ── */


.bulletin-wrap {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10pt;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 16px;
    margin-top: 8px;
}

.bulletin-header {
    background-color: #ffffff;
    color: #222;
    border-radius: 6px;
    border: 1px solid #ddd;
    padding: 6px 10px;
    margin-bottom: 8px;
}

.bulletin-period-band {
    background-color: #FFF9C4;
    border: 1px solid #F9A825;
    border-radius: 4px;
    text-align: center;
    font-size: 13pt;
    font-weight: bold;
    padding: 6px 0;
    margin-bottom: 12px;
    color: #333;
}

.bulletin-section-title {
    font-size: 10pt;
    font-weight: bold;
    color: white;
    padding: 5px 10px;
    border-radius: 4px 4px 0 0;
    margin-bottom: 0;
}

.bulletin-section-body {
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    padding: 8px 10px;
    margin-bottom: 10px;
    font-size: 9pt;
    background: #fafafa;
}

.bulletin-section-body ul {
    margin: 0;
    padding-left: 16px;
}

.bulletin-section-body li {
    margin-bottom: 4px;
    line-height: 1.4;
}

.bulletin-crop-block {
    border-left: 4px solid #4CAF50;
    padding: 6px 10px;
    margin-bottom: 8px;
    background: #F9FBE7;
    border-radius: 0 4px 4px 0;
    font-size: 9pt;
}

.bulletin-crop-block.SG { border-left-color: #795548; background: #EFEBE9; }
.bulletin-crop-block.PN { border-left-color: #FF8F00; background: #FFF8E1; }
.bulletin-crop-block.RI { border-left-color: #0288D1; background: #E1F5FE; }

.bulletin-zone-item {
    padding: 4px 8px;
    margin-bottom: 5px;
    border-radius: 4px;
    font-size: 8.5pt;
    background: #FAFAFA;
    border: 1px solid #E0E0E0;
}

.bulletin-appreciation-bon    { color: #2E7D32; font-weight: bold; }
.bulletin-appreciation-moyen  { color: #E65100; font-weight: bold; }
.bulletin-appreciation-faible { color: #B71C1C; font-weight: bold; }

.bulletin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 7pt;
    margin-top: 4px;
}

.bulletin-table th {
    background-color: #1565C0;
    color: white;
    padding: 2px 4px;
    text-align: center;
    border: 1px solid #aaa;
}

.bulletin-table td {
    padding: 2px 4px;
    border: 1px solid #ccc;
    text-align: center;
}

.bulletin-table-summary {
    font-size: 6.5pt;
    color: #555;
    font-style: italic;
    margin-top: 3px;
    margin-bottom: 6px;
    padding: 3px 6px;
    background: #F8F9FA;
    border-left: 3px solid #1565C0;
    border-radius: 0 3px 3px 0;
    line-height: 1.4;
}

.bulletin-table tr:nth-child(even) td { background-color: #E8EAF6; }
.bulletin-table tr.crop-header td {
    background-color: #E3F2FD;
    font-weight: bold;
    text-align: left;
}

.bulletin-footer {
    border-top: 2px solid #1565C0;
    padding-top: 8px;
    margin-top: 12px;
    font-size: 8pt;
    color: #555;
    text-align: center;
}

/* ── Impression ──────────────────────────────────────────────── */
@media print {
    .d-print-none      { display: none !important; }
    .bulletin-wrap     { border: none; padding: 0; margin: 0; }
    .bulletin-header   { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
    .bulletin-period-band { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
    .bulletin-section-title { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
    .bulletin-table th { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
    body               { font-size: 9pt; }
    .container-fluid   { padding: 0 !important; }
}
