/* Add vertical borders to table cells */
.md-typeset table td,
.md-typeset table th {
    border-left: 1px solid rgba(0,0,0,0.12); /* Adjust color and opacity as needed */
    border-right: 1px solid rgba(0,0,0,0.12);
}

/* Add border to the last cell */
.md-typeset table td:last-child,
.md-typeset table th:last-child {
    border-right: 1px solid rgba(0,0,0,0.12);
}

/* Optionally, add horizontal borders for clarity */
.md-typeset table th,
.md-typeset table td {
    border-top: 1px solid rgba(0,0,0,0.12);
    border-bottom: 1px solid rgba(0,0,0,0.12);
}