@media screen and (max-width: 768px) {

  #responsiveTable td[data-field="id"] {
    display: none;
  }

  #responsiveTable tr[data-label="ID"] {
    display: none;
  }

  #responsiveTable tr {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding: 1rem;
  }

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

  #responsiveTable tr {
    margin-bottom: 2rem;
  }

  #responsiveTable td {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    padding: 0.5rem;
  }

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

  #responsiveTable td span,
  #responsiveTable td a {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  #responsiveTable td button {
    margin-left: auto;
  }
}