ol {
    counter-reset: list-counter; /* Initializes counter */
}

ol li {
    position: relative;
    list-style-type: none; /* Removes default numbering */
    padding-left: 20px; /* Adds space for custom number */
}

ol li:before {
    content: counter(list-counter) ". "; /* Adds custom counter */
    counter-increment: list-counter; /* Increments counter */
    position: absolute;
    left: 0;
    color: #FFFFFF; /* Replace with your desired color */
}

.t396__artboard {
    display: flex;
    justify-content: center;
}

/* Keep table head (TH) bold */
.tn-elem[data-elem-id="CL46"] table th {
    font-weight: 700 !important; 
}

/* Make only the first column bold (including both TH and TD) */
.tn-elem[data-elem-id="CL46"] table tr td:first-child,
.tn-elem[data-elem-id="CL46"] table tr th:first-child {
    font-weight: 700 !important;
    color: #000000 !important;  /* Adjust if needed */
}


