function testCol(){
const container = html`<div style="display: flex; flex-direction: row;"></div>`;
const col1 = container.appendChild(html`<div style="width: 50%; padding-right: 10px"></div>`);
const col2 = container.appendChild(html`<div style="width: 50%; padding-left: 10px"></div>`);
const selectStep1 = politicalLeaderButton();
selectStep1.style.width = "100%";
const selectStep2 = Inputs.select(new Map(speechButton(pol_button_fraction)), {value: speechButton(pol_button_fraction)[0], label: ""});
selectStep2.style.width = "100%";
col1.appendChild(selectStep1);
col2.appendChild(selectStep2);
return [container, selectStep1, selectStep2];
}