document.addEventListener('DOMContentLoaded', function () {
const tables = document.querySelectorAll('table:not([class*="docutils"])');
tables.forEach(table => {
table.classList.add('docutils', 'align-default');
table.querySelectorAll('th').forEach(th => {
th.classList.add('head');
});
const row = table.querySelectorAll('tr');
for (let i = 0; i < row.length; i++) {
row[i].classList.add(i % 2 === 0 ? 'row-odd' : 'row-even')
}
table.querySelectorAll('td[rowspan]').forEach(cell => {
cell.style.borderRight = '1px solid #e1e4e5';
});
});
});