/**
 * TablePress RowGroup Totals Styles
 * 
 * Styles for group rows with totals.
 */

/* Style for total cells in group rows - same background as empty cells */
table.dataTable tr.dtrg-group td.rowgroup-total {
	font-weight: bold;
	text-align: right;
	padding-right: 1em;
	color: var(--rowgroup-text-color, var(--text-color));
	background-color: var(--rowgroup-bg-color, #e0e0e0);
}

/* Style for empty cells in group rows (non-numeric columns) */
table.dataTable tr.dtrg-group td.rowgroup-empty {
	background-color: var(--rowgroup-bg-color, #e0e0e0);
}

/* Ensure group row cells align properly */
table.dataTable tr.dtrg-group th,
table.dataTable tr.dtrg-group td {
	vertical-align: middle;
}

