<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* CSS Document */

/* Leaf Report - Two Column Layout */
/* Default 50/50 layout */
.column_left {
    float: left;
    width: 48%;
    padding-right: 1%;
    text-align: left;
}

.column_right {
    float: right;
    width: 48%;
    padding-left: 1%;
    text-align: right;
}

/* Optional: Wide Left Layout */
.columns_container.wide-left .column_left {
    width: 58%;
    padding-right: 2% !important;
}

.columns_container.wide-left .column_right {
    width: 36% !important;
    padding-left: 0% !important;
}

/* Ensure table inside right column doesn't overflow or break float */
.column_right table {
    width: 100%;
    box-sizing: border-box;
}

/* Apply box-sizing to both columns to account for padding correctly */
.column_left, .column_right {
    box-sizing: border-box;
}

/* Tighten row spacing in Statistical Comparisons table */
table.performance th,
table.performance td {
  padding: 2px 6px;
  line-height: 1.0;
  vertical-align: middle;
}</pre></body></html>