.fr-table td {
    white-space: normal;
}

/* Mobile view */
@media (max-width: 600px) {
    thead {
        display: none;
    }

    tr {
        /*display: block;
        padding: 1rem;*/
        border-bottom: 1px solid;
    }

    .fr-table td {
        display: flex;
        justify-content: space-between;
        text-align: right;
    }

    td::before {
        content: attr(data-label);
        font-weight: bold;
    }
}