@media (max-width: 767px) {
  .tracking-table,
  .tracking-table thead,
  .tracking-table tbody,
  .tracking-table th,
  .tracking-table td,
  .tracking-table tr {
    display: block;
    width: 100%;
  }

  .tracking-table thead {
    display: none;
  }

  .tracking-table tr {
    margin-bottom: 15px;
    border: 1px solid #ccc;
    padding: 10px;
    background: #fefefe;
    border-radius: 6px;
  }

  .tracking-table td {
    text-align: right;
    padding: 8px;
    position: relative;
    font-size: 14px;
    line-height: 1.6;
  }

  .tracking-table td::before {
    content: attr(data-label);
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #444;
  }
}