.report-filter-page,
.report-sheet-page {
    display: grid;
    gap: 0.85rem;
}

.report-filter-hero,
.report-sheet-hero {
    overflow: hidden;
    border: 1px solid rgba(15, 118, 110, 0.14);
    border-radius: 0.95rem;
    background: #0f766e;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
    color: #fff;
}

.dark .report-filter-hero,
.dark .report-sheet-hero {
    background: #0b5f59;
    color: #fff;
}

.report-filter-hero__content,
.report-sheet-hero__content {
    display: grid;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
}

@media (min-width: 1024px) {
    .report-filter-hero__content,
    .report-sheet-hero__content {
        grid-template-columns: minmax(0, 1.6fr) minmax(16rem, 0.7fr);
        align-items: end;
    }
}

.report-filter-hero__copy,
.report-sheet-hero__copy {
    display: grid;
    gap: 0.35rem;
}

.report-filter-hero__eyebrow,
.report-sheet-hero__eyebrow,
.report-sheet-group__eyebrow,
.report-sheet-summary__card span {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.report-filter-hero__eyebrow,
.report-sheet-hero__eyebrow {
    color: rgba(255, 255, 255, 0.76);
}

.report-filter-hero__title,
.report-sheet-hero__title {
    margin: 0;
    color: #fff;
    font-size: clamp(0.95rem, 1.6vw, 1.2rem);
    font-weight: 850;
    line-height: 1.15;
}

.report-filter-hero__description,
.report-sheet-hero__description {
    max-width: 60rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
    line-height: 1.45;
}

.report-sheet-hero__meta {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.72rem;
    line-height: 1.35;
}

.report-filter-hero__aside {
    display: grid;
    gap: 0.75rem;
}

.report-filter-hero__pill {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    padding: 0.95rem 1rem;
}

.report-filter-hero__pill span {
    display: block;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.report-filter-hero__pill strong {
    display: block;
    margin-top: 0.35rem;
    color: #fff;
    font-size: 0.98rem;
    font-weight: 800;
}

.report-filter-card,
.report-sheet-group,
.report-sheet-empty {
    border: 1px solid rgba(15, 118, 110, 0.12);
    border-radius: 0.95rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 251, 0.96));
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.05);
}

.dark .report-filter-card,
.dark .report-sheet-group,
.dark .report-sheet-empty {
    border-color: rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.78);
}

.report-filter-form {
    display: grid;
    gap: 0.8rem;
    padding: 0.9rem;
}

.report-filter-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.report-filter-heading__eyebrow {
    color: #0f766e;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.report-filter-heading__title {
    margin: 0.2rem 0 0;
    color: #0f172a;
    font-size: 1.05rem;
    font-weight: 850;
}

.dark .report-filter-heading__title {
    color: #f8fafc;
}

.report-filter-grid {
    display: grid;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .report-filter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1280px) {
    .report-filter-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.report-filter-field {
    display: grid;
    gap: 0.3rem;
}

.report-filter-field label {
    color: #0f172a;
    font-size: 0.76rem;
    font-weight: 700;
}

.dark .report-filter-field label {
    color: #f8fafc;
}

.report-filter-field input,
.report-filter-field select {
    width: 100%;
    border: 1px solid rgba(15, 118, 110, 0.14);
    border-radius: 0.75rem;
    background: rgba(248, 250, 252, 0.95);
    color: #0f172a;
    min-height: 2.4rem;
    padding: 0.55rem 0.75rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.dark .report-filter-field input,
.dark .report-filter-field select {
    border-color: rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.66);
    color: #f8fafc;
}

.report-filter-field input:focus,
.report-filter-field select:focus {
    outline: none;
    border-color: rgba(20, 184, 166, 0.75);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.12);
}

.report-filter-actions {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
}

.report-sheet-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.report-sheet-hero__chips span {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    padding: 0.22rem 0.55rem;
    font-size: 0.68rem;
    font-weight: 700;
}

.report-sheet-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 0.4rem;
    width: 100%;
}

.report-sheet-hero__actions-back {
    margin-left: auto;
}

.report-sheet-summary {
    display: grid;
    gap: 0.6rem;
}

@media (min-width: 900px) {
    .report-sheet-summary {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1280px) {
    .report-sheet-summary {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

.report-sheet-summary__card {
    display: grid;
    gap: 0.2rem;
    border-radius: 0.8rem;
    border: 1px solid rgba(15, 118, 110, 0.1);
    background: rgba(255, 255, 255, 0.88);
    padding: 0.65rem 0.75rem;
    box-shadow: 0 8px 14px rgba(15, 23, 42, 0.04);
}

.dark .report-sheet-summary__card {
    border-color: rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.78);
}

.report-sheet-summary__card strong {
    color: #0f172a;
    font-size: 1rem;
    font-weight: 850;
    line-height: 1.2;
}

.dark .report-sheet-summary__card strong {
    color: #f8fafc;
}

.report-sheet-summary__card small {
    color: #64748b;
    font-size: 0.68rem;
    line-height: 1.45;
}

.dark .report-sheet-summary__card small {
    color: #94a3b8;
}

.report-sheet-summary__card.is-staff span { color: #0f766e; }
.report-sheet-summary__card.is-run span { color: #2563eb; }
.report-sheet-summary__card.is-basic span { color: #7c3aed; }
.report-sheet-summary__card.is-allowance span { color: #059669; }
.report-sheet-summary__card.is-deduction span { color: #e11d48; }
.report-sheet-summary__card.is-net span { color: #d97706; }

.report-repo-page {
    display: grid;
    gap: 0.85rem;
}

.report-repo-toolbar {
    display: grid;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .report-repo-toolbar {
        grid-template-columns: repeat(2, minmax(0, 14rem));
        align-items: end;
    }
}

.report-repo-list {
    display: grid;
    gap: 1rem;
}

@media (min-width: 1100px) {
    .report-repo-list--compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.report-repo-card {
    border: 1px solid rgba(15, 118, 110, 0.12);
    border-radius: 0.95rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 251, 0.96));
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.05);
    padding: 0.95rem;
}

.dark .report-repo-card {
    border-color: rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.78);
}

.report-repo-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.9rem;
}

.report-repo-card__title {
    margin: 0.18rem 0 0;
    color: #0f172a;
    font-size: 1.02rem;
    font-weight: 850;
}

.dark .report-repo-card__title {
    color: #f8fafc;
}

.report-repo-card__meta {
    margin: 0.25rem 0 0;
    color: #64748b;
    font-size: 0.74rem;
}

.dark .report-repo-card__meta {
    color: #94a3b8;
}

.report-repo-grid {
    display: grid;
    gap: 0.75rem;
}

@media (min-width: 900px) {
    .report-repo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1280px) {
    .report-repo-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.report-repo-tile {
    display: grid;
    gap: 0.6rem;
    border: 1px solid rgba(15, 118, 110, 0.1);
    border-radius: 0.8rem;
    background: rgba(255, 255, 255, 0.86);
    padding: 0.8rem;
}

.dark .report-repo-tile {
    border-color: rgba(148, 163, 184, 0.16);
    background: rgba(15, 23, 42, 0.72);
}

.report-repo-tile__title {
    margin: 0;
    color: #0f172a;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.3;
}

.dark .report-repo-tile__title {
    color: #f8fafc;
}

.report-repo-tile__empty {
    margin: 0;
    color: #94a3b8;
    font-size: 0.75rem;
}

.report-repo-tile__files {
    display: grid;
    gap: 0.6rem;
}

.report-repo-file {
    display: grid;
    gap: 0.55rem;
    border: 1px dashed rgba(15, 118, 110, 0.18);
    border-radius: 0.75rem;
    background: rgba(240, 253, 250, 0.55);
    padding: 0.65rem;
}

.dark .report-repo-file {
    border-color: rgba(148, 163, 184, 0.16);
    background: rgba(15, 23, 42, 0.56);
}

.report-repo-file__meta {
    display: grid;
    gap: 0.35rem;
}

.report-repo-file__badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.12);
    color: #0f766e;
    padding: 0.2rem 0.5rem;
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.dark .report-repo-file__badge {
    background: rgba(45, 212, 191, 0.14);
    color: #99f6e4;
}

.report-repo-file__time {
    color: #64748b;
    font-size: 0.7rem;
    line-height: 1.4;
}

.dark .report-repo-file__time {
    color: #94a3b8;
}

.report-repo-file__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.report-sheet-groups {
    display: grid;
    gap: 1rem;
}

.report-sheet-toolbar,
.report-sheet-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid rgba(15, 118, 110, 0.1);
    border-radius: 0.8rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 250, 0.95));
    padding: 0.65rem 0.85rem;
    box-shadow: 0 8px 14px rgba(15, 23, 42, 0.04);
}

.dark .report-sheet-toolbar,
.dark .report-sheet-pagination {
    border-color: rgba(148, 163, 184, 0.16);
    background: rgba(15, 23, 42, 0.78);
}

.report-sheet-toolbar__search {
    display: grid;
    gap: 0.35rem;
    min-width: min(100%, 26rem);
    flex: 1;
}

.report-sheet-toolbar__search label,
.report-sheet-toolbar__per-page label {
    color: #0f172a;
    font-size: 0.78rem;
    font-weight: 700;
}

.dark .report-sheet-toolbar__search label,
.dark .report-sheet-toolbar__per-page label {
    color: #f8fafc;
}

.report-sheet-toolbar__search input,
.report-sheet-toolbar__per-page select {
    border: 1px solid rgba(15, 118, 110, 0.14);
    border-radius: 0.7rem;
    background: rgba(248, 250, 252, 0.95);
    color: #0f172a;
    min-height: 2.2rem;
    padding: 0.45rem 0.65rem;
}

.dark .report-sheet-toolbar__search input,
.dark .report-sheet-toolbar__per-page select {
    border-color: rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.66);
    color: #f8fafc;
}

.report-sheet-toolbar__meta {
    display: flex;
    align-items: end;
    gap: 1rem;
}

.report-sheet-toolbar__per-page {
    display: grid;
    gap: 0.35rem;
}

.report-sheet-toolbar__count,
.report-sheet-pagination__status {
    color: #475569;
    font-size: 0.85rem;
    font-weight: 700;
}

.dark .report-sheet-toolbar__count,
.dark .report-sheet-pagination__status {
    color: #cbd5e1;
}

.report-sheet-group {
    overflow: hidden;
}

.report-sheet-group__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 0.9rem;
    border-bottom: 1px solid rgba(15, 118, 110, 0.1);
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(59, 130, 246, 0.08));
}

.dark .report-sheet-group__header {
    border-bottom-color: rgba(148, 163, 184, 0.16);
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(59, 130, 246, 0.08));
}

.report-sheet-group__title {
    margin: 0.2rem 0 0;
    color: #0f172a;
    font-size: 0.92rem;
    font-weight: 850;
}

.dark .report-sheet-group__title {
    color: #f8fafc;
}

.report-sheet-group__eyebrow {
    color: #0f766e;
}

.report-sheet-group__count {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.12);
    color: #0f766e;
    padding: 0.22rem 0.55rem;
    font-size: 0.68rem;
    font-weight: 800;
}

.dark .report-sheet-group__count {
    background: rgba(20, 184, 166, 0.16);
    color: #99f6e4;
}

.report-sheet-table-wrap {
    overflow-x: auto;
}

.report-sheet-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 860px;
}

.report-sheet-table thead th {
    background: linear-gradient(180deg, #0f766e, #115e59);
    color: #fff;
    padding: 0.62rem 0.7rem;
    text-align: left;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.report-sheet-table td {
    padding: 0.6rem 0.7rem;
    border-bottom: 1px solid rgba(15, 118, 110, 0.08);
    color: #334155;
    font-size: 0.78rem;
    vertical-align: top;
}

.dark .report-sheet-table td {
    border-bottom-color: rgba(148, 163, 184, 0.12);
    color: #cbd5e1;
}

.report-sheet-table tbody tr:nth-child(even) td {
    background: rgba(248, 250, 252, 0.74);
}

.dark .report-sheet-table tbody tr:nth-child(even) td {
    background: rgba(30, 41, 59, 0.34);
}

.report-sheet-table tbody tr:hover td {
    background: rgba(20, 184, 166, 0.08);
}

.report-sheet-table .is-right {
    text-align: right;
}

.report-sheet-table__primary {
    color: #0f172a;
    font-weight: 800;
    white-space: normal;
    min-width: 8rem;
    line-height: 1.25;
}

.dark .report-sheet-table__primary {
    color: #f8fafc;
}

.report-sheet-table__secondary {
    margin-top: 0.18rem;
    color: #64748b;
    font-size: 0.68rem;
}

.dark .report-sheet-table__secondary {
    color: #94a3b8;
}

.report-sheet-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.12);
    color: #0369a1;
    padding: 0.2rem 0.45rem;
    font-size: 0.66rem;
    font-weight: 800;
}

.dark .report-sheet-pill {
    background: rgba(14, 165, 233, 0.16);
    color: #7dd3fc;
}

.report-sheet-table .is-positive {
    color: #059669;
    font-weight: 700;
}

.report-sheet-table .is-debit {
    color: #1d4ed8;
    font-weight: 800;
}

.report-sheet-table .is-credit,
.report-sheet-table .is-negative {
    color: #e11d48;
    font-weight: 700;
}

.report-sheet-table .is-net {
    color: #0f766e;
    font-weight: 850;
}

.report-sheet-table .is-gross {
    color: #2563eb;
    font-weight: 800;
}

.report-sheet-breakdown {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.report-sheet-breakdown span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(225, 29, 72, 0.08);
    color: #be123c;
    padding: 0.34rem 0.68rem;
    font-size: 0.74rem;
    font-weight: 700;
}

.dark .report-sheet-breakdown span {
    background: rgba(225, 29, 72, 0.14);
    color: #fda4af;
}

.report-payslip-grid {
    display: grid;
    gap: 0.55rem;
    padding: 0.35rem;
    align-items: start;
    grid-auto-rows: 1fr;
}

@media (min-width: 900px) {
    .report-payslip-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1500px) {
    .report-payslip-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.report-payslip-card {
    display: grid;
    gap: 0.3rem;
    border: 1px solid rgba(15, 118, 110, 0.32);
    border-left: 4px solid #0f766e;
    border-radius: 0.7rem;
    background:
        linear-gradient(180deg, #f0fdf4, #ecfdf5);
    box-shadow: 0 6px 12px rgba(15, 23, 42, 0.05);
    padding: 0.4rem 0.45rem;
    height: 100%;
}

.dark .report-payslip-card {
    border-color: rgba(148, 163, 184, 0.18);
    background:
        radial-gradient(circle at top right, rgba(20, 184, 166, 0.10), transparent 16rem),
        rgba(15, 23, 42, 0.90);
}

.report-payslip-card__header,
.report-payslip-card__footer,
.report-payslip-card__profile {
    display: grid;
    gap: 0.22rem;
}

.report-payslip-card__header {
    padding: 0.18rem 0.22rem 0.28rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.48);
    border: 1px solid rgba(15, 118, 110, 0.12);
}

@media (min-width: 760px) {
    .report-payslip-card__header,
    .report-payslip-card__footer,
    .report-payslip-card__profile {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .report-payslip-card__footer,
    .report-payslip-card__profile {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1300px) {
    .report-payslip-card__profile {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.report-payslip-card__title {
    margin: 0;
    color: #0f172a;
    font-size: 0.76rem;
    font-weight: 850;
    line-height: 1.2;
}

.dark .report-payslip-card__title {
    color: #f8fafc;
}

.report-payslip-card__meta,
.report-payslip-card__meta-row span,
.report-payslip-card__section-head span,
.report-payslip-line span,
.report-payslip-card__footer span,
.report-payslip-card__net span {
    color: #64748b;
    font-size: 0.58rem;
}

.dark .report-payslip-card__meta,
.dark .report-payslip-card__meta-row span,
.dark .report-payslip-card__section-head span,
.dark .report-payslip-line span,
.dark .report-payslip-card__footer span,
.dark .report-payslip-card__net span {
    color: #94a3b8;
}

.report-payslip-card__meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.18rem 0.45rem;
    border-top: 1px dashed rgba(15, 118, 110, 0.14);
    border-bottom: 1px dashed rgba(15, 118, 110, 0.14);
    padding: 0.25rem 0;
    background: rgba(255, 255, 255, 0.34);
    border-radius: 0.45rem;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
}

.report-payslip-card__meta-row strong {
    color: #334155;
    font-weight: 700;
}

.dark .report-payslip-card__meta-row strong {
    color: #e2e8f0;
}

.report-payslip-card__net {
    justify-self: end;
    display: grid;
    gap: 0.05rem;
    text-align: right;
}

.report-payslip-card__net strong,
.report-payslip-card__section-head h5,
.report-payslip-line strong,
.report-payslip-card__footer strong {
    color: #0f172a;
}

.dark .report-payslip-card__net strong,
.dark .report-payslip-card__section-head h5,
.dark .report-payslip-line strong,
.dark .report-payslip-card__footer strong {
    color: #f8fafc;
}

.report-payslip-card__net strong {
    font-size: 0.76rem;
    font-weight: 900;
    color: #0f766e;
}

.report-payslip-card__footer > div {
    display: grid;
    gap: 0.14rem;
    padding: 0.24rem 0.3rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(15, 118, 110, 0.16);
}

.report-payslip-card__footer > div:nth-child(1) {
    background: #dbeafe;
}

.report-payslip-card__footer > div:nth-child(2) {
    background: #ffe4e6;
}

.report-payslip-card__footer > div:nth-child(3) {
    background: #d1fae5;
}

.dark .report-payslip-card__footer > div {
    background: rgba(30, 41, 59, 0.38);
    border-color: rgba(148, 163, 184, 0.1);
}

.report-payslip-card__body {
    display: grid;
    gap: 0.28rem;
}

@media (min-width: 900px) {
    .report-payslip-card__body {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.report-payslip-card__section {
    display: grid;
    gap: 0.2rem;
    border: 1px solid rgba(15, 118, 110, 0.18);
    border-radius: 0.55rem;
    background: rgba(255, 255, 255, 0.62);
    padding: 0.26rem;
}

.dark .report-payslip-card__section {
    border-color: rgba(148, 163, 184, 0.12);
    background: rgba(30, 41, 59, 0.34);
}

.report-payslip-card__section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.45rem;
    padding: 0.16rem 0.24rem;
    border-radius: 0.45rem;
}

.report-payslip-card__section:first-child .report-payslip-card__section-head {
    background: #ccfbf1;
}

.report-payslip-card__section:last-child .report-payslip-card__section-head {
    background: #ffe4e6;
}

.report-payslip-card__section-head h5 {
    margin: 0;
    font-size: 0.64rem;
    font-weight: 850;
}

.report-payslip-lines {
    display: grid;
    gap: 0.12rem;
}

.report-payslip-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem;
    border-radius: 0.45rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 118, 110, 0.08);
    padding: 0.18rem 0.24rem;
    min-height: 1.9rem;
}

.dark .report-payslip-line {
    background: rgba(15, 23, 42, 0.48);
}

.report-payslip-line.is-deduction strong,
.report-payslip-card__footer .is-deduction {
    color: #e11d48;
}

.report-payslip-card__footer .is-gross {
    color: #2563eb;
}

.report-payslip-card__footer .is-net {
    color: #0f766e;
}

.report-sheet-empty {
    padding: 1.2rem 1rem;
    color: #64748b;
    font-size: 0.8rem;
    text-align: center;
}

.report-sheet-table__banner {
    background: #f8fafc !important;
    color: #0f172a !important;
    font-size: 0.7rem;
    font-weight: 800;
}

.report-sheet-table__banner span {
    display: inline-block;
    margin-left: 0.5rem;
    color: #0f766e;
    font-weight: 700;
}

.report-sheet-table tfoot td {
    background: rgba(15, 118, 110, 0.06);
    border-top: 2px solid rgba(15, 118, 110, 0.12);
    font-weight: 850;
}

.dark .report-sheet-table tfoot td {
    background: rgba(15, 23, 42, 0.88);
    border-top-color: rgba(45, 212, 191, 0.18);
}

.report-sheet-table__total-label {
    color: #0f172a;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dark .report-sheet-table__total-label {
    color: #f8fafc;
}

.report-sheet-table__total-debit {
    color: #1d4ed8;
    font-weight: 900;
}

.report-sheet-table__total-credit {
    color: #be123c;
    font-weight: 900;
}

.report-sheet-deduction-groups {
    display: grid;
    gap: 0.85rem;
}

.report-sheet-deduction-card {
    overflow: hidden;
    border: 1px solid rgba(15, 118, 110, 0.1);
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.98);
}

.dark .report-sheet-deduction-card {
    border-color: rgba(148, 163, 184, 0.14);
    background: rgba(15, 23, 42, 0.82);
}

.report-sheet-deduction-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.7rem 0.9rem;
    border-bottom: 1px solid rgba(15, 118, 110, 0.08);
    background: #f8fffd;
}

.dark .report-sheet-deduction-card__header {
    border-bottom-color: rgba(148, 163, 184, 0.14);
    background: rgba(30, 41, 59, 0.58);
}

.report-sheet-deduction-card__eyebrow {
    margin: 0;
    color: #0f766e;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.report-sheet-deduction-card__title {
    margin: 0.2rem 0 0;
    color: #0f172a;
    font-size: 0.95rem;
    font-weight: 850;
}

.dark .report-sheet-deduction-card__title {
    color: #f8fafc;
}

.report-sheet-deduction-card__total {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(225, 29, 72, 0.1);
    color: #be123c;
    padding: 0.35rem 0.7rem;
    font-size: 0.78rem;
    font-weight: 900;
}

.dark .report-sheet-deduction-card__total {
    background: rgba(225, 29, 72, 0.16);
    color: #fda4af;
}

.dark .report-sheet-empty {
    color: #94a3b8;
}

@media (max-width: 900px) {
    .report-sheet-toolbar,
    .report-sheet-pagination {
        flex-direction: column;
        align-items: stretch;
    }

    .report-sheet-toolbar__meta {
        justify-content: space-between;
    }
}
