/* cashFlowStatement.css */

.cashflow-statement-report-wrapper {
    font-family: var(--font-serif-report); /* Using global var from dashboardStyles.css */
    font-size: 11pt;
    line-height: 1.4;
    color: #000;
    padding: 20px;
    border: 1px solid #ccc;
    background-color: #fff;
    max-width: 1200px; /* Maximum width for readability */
    margin: 0 auto; /* Center the content */
}

.cashflow-statement-report-wrapper .report-title {
    font-size: 16pt;
    font-weight: bold;
    text-align: center;
    margin-bottom: 5px;
}

.cashflow-statement-report-wrapper .report-subtitle {
    font-size: 10pt;
    text-align: center;
    margin-bottom: 25px;
    font-style: italic;
}

.cashflow-statement-report-wrapper .cfs-table {
    width: 100%;
    border-collapse: collapse;
}

.cashflow-statement-report-wrapper .cfs-table td {
    padding: 3px 2px;
    border: none;
    vertical-align: top;
}

.cashflow-statement-report-wrapper .cfs-table td.description-column {
    width: 75%; /* More space for descriptions */
}
.cashflow-statement-report-wrapper .cfs-table td.amount-column {
    width: 25%;
    text-align: right;
    padding-right: 10px;
}

.cashflow-statement-report-wrapper .cfs-main-heading {
    font-weight: bold;
    font-size: 11pt;
    padding-top: 12px;
    padding-bottom: 4px;
    /* No underline for main CFS sections, items are listed below */
}

.cashflow-statement-report-wrapper .cfs-item {
    padding-left: 20px !important; /* Indentation for individual items */
}
.cashflow-statement-report-wrapper .cfs-item.sub-item {
    padding-left: 40px !important; /* Deeper indent for sub-items if needed */
}


.cashflow-statement-report-wrapper .cfs-total-line td { /* For Net Cash from Operating/Investing/Financing */
    font-weight: normal; /* Label not bold, amount is */
    border-top: 1px solid #000;
    padding-top: 3px;
    padding-bottom: 1px;
}
.cashflow-statement-report-wrapper .cfs-total-line td.label-like { /* For the "Net Cash from..." label */
    font-weight: bold;
    padding-left: 0px !important; /* Align with section heading */
}
.cashflow-statement-report-wrapper .cfs-total-line td.amount-column {
    font-weight: bold;
}


.cashflow-statement-report-wrapper .cfs-major-total-line td { /* For Net Increase/Decrease in Cash */
    font-weight: bold;
    border-top: 1px solid #000;
    padding-top: 4px;
    border-bottom: 2.5px double #000;
    padding-bottom: 4px;
}

.cashflow-statement-report-wrapper .whitespace-row-cfs td {
    padding-top: 8px; /* Create vertical space between sections */
}