
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', sans-serif; background: linear-gradient(135deg, #283593 0%, #3949ab 100%); min-height: 100vh; padding: 15px; }
.container { max-width: 1100px; margin: 5px auto; background: white; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); overflow: hidden; }
.header { background: linear-gradient(135deg, #283593, #3949ab); color: white; padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.header h2 { font-size: 18px; font-weight: 800; }
.header-right { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.btn-back { background: rgba(255,255,255,0.2); color: white; border: 2px solid white; padding: 7px 13px; border-radius: 6px; font-weight: 600; font-size: 13px; text-decoration: none; }
.btn-print { background: white; color: #283593; border: none; padding: 7px 13px; border-radius: 6px; font-weight: 700; font-size: 13px; cursor: pointer; }
.content { padding: 15px 20px; }
.version { font-size: 10px; opacity: 0.5; text-align: right; padding: 4px 20px 8px; }

/* Year selector */
.year-bar { display: flex; gap: 8px; align-items: center; margin-bottom: 16px; flex-wrap: wrap; }
.year-bar label { font-size: 13px; font-weight: 700; color: #555; }
.year-select { padding: 8px 14px; border: 2px solid #e0e0e0; border-radius: 8px; font-size: 14px; font-weight: 700; outline: none; cursor: pointer; }
.year-select:focus { border-color: #3949ab; }
.btn-gerar { background: #3949ab; color: white; border: none; padding: 9px 20px; border-radius: 8px; font-weight: 700; font-size: 13px; cursor: pointer; }
.btn-gerar:hover { background: #283593; }
.btn-csv { background: #e8f5e9; color: #2e7d32; border: none; padding: 9px 16px; border-radius: 8px; font-weight: 700; font-size: 13px; cursor: pointer; }

/* Totals box */
.totals-box { background: linear-gradient(135deg, #283593, #3949ab); color: white; border-radius: 12px; padding: 16px; margin-bottom: 20px; }
.totals-title { font-size: 14px; font-weight: 800; opacity: 0.85; margin-bottom: 10px; }
.totals-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.total-item { background: rgba(255,255,255,0.15); border-radius: 8px; padding: 10px; text-align: center; }
.total-item .tl { font-size: 10px; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.5px; }
.total-item .tv { font-size: 18px; font-weight: 800; margin-top: 3px; }

/* Table */
.section-title { font-size: 13px; font-weight: 800; color: #333; text-transform: uppercase; letter-spacing: 0.5px; margin: 16px 0 10px; padding-bottom: 5px; border-bottom: 2px solid #e0e0e0; }
.tbl-wrap { overflow-x: auto; margin-bottom: 20px; }
.tbl { width: 100%; border-collapse: collapse; font-size: 13px; }
.tbl th { background: #283593; color: white; padding: 9px 10px; text-align: right; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.3px; }
.tbl th:first-child, .tbl th:nth-child(2), .tbl th:nth-child(3) { text-align: left; }
.tbl td { padding: 9px 10px; border-bottom: 1px solid #f0f0f0; text-align: right; }
.tbl td:first-child, .tbl td:nth-child(2), .tbl td:nth-child(3) { text-align: left; }
.tbl tr:hover td { background: #f5f5f5; }
.tbl tfoot td { background: #e8eaf6; font-weight: 800; color: #283593; border-top: 2px solid #283593; padding: 10px; }
.badge { display: inline-block; padding: 2px 8px; border-radius: 10px; font-size: 11px; font-weight: 700; }
.badge-green { background: #e8f5e9; color: #2e7d32; }
.badge-red { background: #fdecea; color: #c62828; }
.badge-blue { background: #e3f2fd; color: #1565c0; }
.badge-grey { background: #f5f5f5; color: #555; }

/* Pre-Deed section */
.predeed-alert { background: #fff3e0; border-left: 4px solid #ff9800; border-radius: 8px; padding: 12px 14px; margin-bottom: 16px; }
.predeed-alert strong { color: #e65100; }
.predeed-alert p { font-size: 12px; color: #666; margin-top: 4px; line-height: 1.5; }

/* Monthly breakdown */
.month-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 20px; }
.month-card { border: 1px solid #e0e0e0; border-radius: 8px; padding: 10px; text-align: center; }
.month-card .m-name { font-size: 11px; font-weight: 800; color: #555; text-transform: uppercase; }
.month-card .m-val { font-size: 16px; font-weight: 800; color: #283593; margin-top: 4px; }
.month-card .m-cnt { font-size: 10px; color: #999; margin-top: 2px; }
.month-card.has-data { border-color: #3949ab; background: #f3e5f5; }

@media print {
    .no-print { display: none !important; }
    body { background: white !important; padding: 0 !important; }
    .container { box-shadow: none !important; border-radius: 0 !important; }
    .totals-box { background: #283593 !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}
@media (max-width: 600px) {
    .totals-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .month-grid { grid-template-columns: repeat(3, 1fr) !important; }
}

