@media screen and (max-width: 600px) {
  table, thead, tbody, tfoot, th, td, tr {
    display: block;
  }

  thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  tbody tr, tfoot tr {
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    padding: 0.5rem;
    background: #fff;
  }
  
  tfoot tr {
    border: 2px solid #333;
    background-color: #f9f9f9;
  }

  td {
    border: none;
    /* Add a bottom border to separate fields */
    border-bottom: 1px solid #eee; 
    position: relative;
    padding-left: 50%;
    text-align: right;
    /* Added padding to give the text breathing room above/below lines */
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  /* Clean up: Remove the border from the last item in the card */
  td:last-child {
    border-bottom: none;
  }

  td::before {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: bold;
    content: attr(data-label);
  }
}