      body {
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 12px;
    margin: 20px;
    background: linear-gradient(180deg, #f4f7fb 0%, #eef3f9 100%);
    color: #1f2937;
}

h3 {
    text-align: center;
    margin: 4px 0;
    font-weight: 700;
    color: #1e3a5f;
    letter-spacing: 0.3px;
}

.report-table {
    width: auto;
    margin: 20px auto;
    border-collapse: collapse;
    table-layout: auto;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    border: 1px solid #7f8ea3;
}

.report-table th,
.report-table td {
    border: 1px solid #7f8ea3;
    padding: 6px 8px;
    vertical-align: middle;
    transition: background 0.2s ease, color 0.2s ease;
}

.report-table th {
    text-align: center;
    background: linear-gradient(180deg, #dde7f3 0%, #cfdced 100%);
    font-weight: 700;
    color: #1b365d;
}

.report-table th.main-heading {
    text-align: center;
    font-size: 15px;
    background: linear-gradient(180deg, #c6d7eb 0%, #b7cce5 100%);
    color: #102a43;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    box-shadow: inset 0 -1px 0 rgba(255,255,255,0.35);
}

.report-table td {
    text-align: right;
    background: #ffffff;
}

.col-no {
    width: 38px;
    min-width: 38px;
    text-align: center !important;
    font-weight: 700;
    color: #243b53;
    background: #f8fafc;
}

.col-particular {
    width: 420px;
    min-width: 420px;
    max-width: 420px;
    text-align: left !important;
    white-space: normal;
    word-break: break-word;
    line-height: 1.35;
    color: #243b53;
}

.col-year {
    width: 90px;
    min-width: 90px;
    white-space: nowrap;
    text-align: right !important;
    font-weight: 600;
    color: #243b53;
}

.top-head th {
    background: linear-gradient(180deg, #eef4fb 0%, #e2ebf6 100%);
    font-size: 11px;
    color: #16324f;
}

.section-row td {
    font-size: 13px;
    font-weight: 700;
    text-align: left !important;
    text-transform: uppercase;
    border-top: 2px solid #425b76;
    border-bottom: 1px solid #7f8ea3;
    background: linear-gradient(180deg, #edf2f7 0%, #e2e8f0 100%);
    color: #102a43;
    letter-spacing: 0.5px;
}

.bold-row td {
    font-weight: 700;
    background: #f7fafc;
    color: #102a43;
}

.blank-row td {
    height: 18px;
    background: #fbfdff;
}

/* soft zebra effect */
.report-table tr:nth-child(even):not(.top-head):not(.section-row):not(.blank-row) td {
    background: #fcfdff;
}

/* hover effect */
.report-table tr:hover td {
    background: #eef5ff;
}

/* nicer first data area feel */
.report-table tr td:first-child {
    box-shadow: inset 0 0 0 9999px rgba(255,255,255,0.02);
}

.report-table.compact {
    width: auto;
    margin: 10px auto;
}

.report-table.compact .col-date {
    width: 90px;
    min-width: 90px;
}

.report-table.compact .col-particular {
    width: 180px;
    min-width: 180px;
}

.report-table.compact .col-year {
    width: 80px;
    min-width: 80px;
}

.pdf-page {
    page-break-after: always;
}

.pdf-page:last-child {
    page-break-after: auto;
}

/* print friendly */
@media print {
    body {
        margin: 0;
        background: #fff;
    }

    .report-table {
        box-shadow: none;
    }

    .report-table tr:hover td {
        background: inherit;
    }
}