@media (max-width: 768px) {
  table thead {
    display: none;
  }

  table,
  table tbody,
  table tr,
  table td,
  table th {
    display: block;
    width: 100%;
    text-align: left !important; /* ✅ Force left alignment */
  }

  table tr {
    margin-bottom: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 0.75rem;
    background-color: #fff;
  }

  table td::before {
    content: attr(data-label);
    font-weight: 600;
    display: block;
    color: #105d98;
    margin-bottom: 0.25rem;
    text-align: left !important; /* ✅ Label also left aligned */
  }
}
