
@media screen and (max-width: 768px) {
  .hb_table thead {
    display: none;
  }

  .hb_table,
  .hb_table tbody,
  .hb_table tr,
  .hb_table td {
    display: block;
    width: 100%;
  }

  .hb_table tr {
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    padding: 1rem;
    background: #fff;
    border-radius: 6px;
  }

  .hb_table td {
    text-align: left;
    padding: 0.75rem 0.5rem 0.75rem 45%;
    position: relative;
    min-height: 40px;
    word-wrap: break-word;
  }

  .hb_table td::before {
    content: attr(data-label);
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    padding: 0.75rem 0.5rem;
    font-weight: bold;
    text-align: left;
    white-space: normal;
    color: #333;
    background: transparent;
    z-index: 1;
  }
}
