.icfrephs-content table td>i {
    font-size: 1rem;
}

.sl-num {
    width: 10%;
    font-weight: 500;
}

.phs-content-table {
    counter-reset: serial-number;
    /* Set the serial number counter to 0 */
}

.phs-content-table tbody tr td:first-child::after {
    counter-increment: serial-number;
    /* Increment the serial number counter for each row */
    content: counter(serial-number);
    /* Display the counter value */
}

.phs-content-table tr>td>a {
    font-size: 0.8rem;
}

.phs-content-table tr>td>a>i {
    font-size: 1rem;
    color: var(--text-color-bg-blue);
}

.updated-at {
    font-weight: 500;
    width: 20%;
}

.phs-content-table th.sl-num {
    width: 10%;
}

.phs-content-table th.updated-on {
    width: 20%;
}

@media screen and (max-width: 600px) {
    .phs-content-table tr {
        border-bottom: unset;

    }

    .phs-content-table td:last-child {
        border-bottom: 1px solid var(--border-color-1);
    }
}