/**
 * TALOS Full-Page Table — inset row dividers
 * The line starts aligned with first cell content (px-6 = 1.5rem)
 * and ends aligned with last cell content (px-6 = 1.5rem).
 */
.talos-full-table tbody tr {
    position: relative;
}

.talos-full-table tbody tr:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 1px;
    background-color: var(--separator-light);
}
