@media (max-width: 768px) {
  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
    width: 100%;
  }

  tr {
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 10px;
  }

  td {
    display: flex;
    justify-content: space-between;
    padding: 6px 10px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
  }
  
  td::before {
    content: attr(data-label);
    font-weight: bold;
    margin-right: 10px;
  }
  body{
    padding: 20px;
  }
}

