table.invoice-table {
    width: 100%;
}

table.invoice-table thead {
    background-color: #e9edf0;
}

table.invoice-table thead th {
    padding: 15px 10px;
}

table.invoice-table tbody tr {
    border-bottom: 1px solid #ccc;
}

table.invoice-table tbody td {
    padding: 15px 10px;
}

@media screen and (max-width: 768px) {
    .woocommerce-account .woocommerce-MyAccount-content {
        width: 100%;
    }

    table.invoice-table thead {
        display: none;
    }

    table.invoice-table tbody tr {
        border-bottom: 3px solid #ccc;
    }
    
    table.invoice-table tbody td {
        display: block;
        text-align: right !important;
        padding: 5px;
        border-bottom: 1px solid #ccc;
    }

    table.invoice-table tbody td::before {
        content: attr(data-title) ": ";
        font-weight: 700;
        float: left;
    }
}