/* commonSizeBS.css */

/* Inherits most styles from balanceSheet.css via shared classes */

/* Adjust column widths for 3-column layout (description, amount, percentage) */
.common-size-bs-report-wrapper .bs-table th.description-column,
.common-size-bs-report-wrapper .bs-table td.description-column {
    width: 50%;
}

.common-size-bs-report-wrapper .bs-table th.amount-column,
.common-size-bs-report-wrapper .bs-table td.amount-column {
    width: 25%;
}

.common-size-bs-report-wrapper .bs-table th.percentage-column,
.common-size-bs-report-wrapper .bs-table td.percentage-column {
    width: 25%;
    text-align: right;
    padding-right: 10px;
}
