/* statementOfChangesInEquity.css */

.sce-report-wrapper {
    font-family: var(--font-serif-report); /* Defined in dashboardStyles.css or root */
    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 */
}

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

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

.sce-table {
    width: 100%;
    border-collapse: collapse;
}

.sce-table th,
.sce-table td {
    padding: 3px 2px;
    border: none;
    text-align: left;
    vertical-align: top;
}

.sce-table th {
    font-weight: bold;
    font-size: 10pt;
    padding-bottom: 5px;
    border-bottom: 1px solid #000;
}

.sce-table th.amount-column {
    text-align: right;
    padding-right: 10px;
}

.sce-table td.description-column {
    width: 35%;
    padding-left: 5px;
}

.sce-table td.amount-column {
    text-align: right;
    padding-right: 10px;
    min-width: 100px;
}

.sce-table td.total-column {
    text-align: right;
    padding-right: 10px;
    font-weight: bold;
}

.sce-table .sce-total-line td {
    font-weight: bold;
    border-top: 1px solid #000;
    padding-top: 4px;
    border-bottom: 2.5px double #000;
    padding-bottom: 4px;
}

/* Opening Balances Table */
.equity-opening-balances-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.equity-opening-balances-table th,
.equity-opening-balances-table td {
    padding: 3px 5px;
    border: none;
}

.equity-opening-balances-table th {
    font-weight: bold;
    border-bottom: 1px solid #000;
    padding-bottom: 3px;
}

.equity-opening-balances-table td {
    text-align: right;
}

.equity-opening-balances-table td:first-child {
    text-align: left;
}
