@media (max-width: 767.98px) {
  .app-mobile-table,
  .app-mobile-table tbody,
  .app-mobile-table tr,
  .app-mobile-table td {
    display: block;
    width: 100%;
  }

  .app-mobile-table thead { display: none; }

  .app-mobile-table tbody tr {
    margin-bottom: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: var(--app-color-surface);
    border: 1px solid var(--app-color-border);
    border-radius: var(--app-radius-md);
  }

  .app-mobile-table tbody td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 2.75rem;
    padding: 0.625rem 0;
    text-align: right;
    border-bottom: 1px solid #edf0f2;
  }

  .app-mobile-table tbody td:last-child { border-bottom: 0; }
  .app-mobile-table .app-desktop-rowspan-hidden { display: flex; }

  .app-mobile-table tbody td::before {
    flex: 0 0 6rem;
    color: var(--app-color-text-muted);
    font-size: var(--app-text-xs);
    font-weight: 600;
    text-align: left;
    content: attr(data-label);
  }

  .app-mobile-table tbody td > * {
    min-width: 0;
    max-width: 100%;
  }
}
