/*
  Target from your DevTools:
  body.jr-memory-page #bp-memory-form-wrapper .memory-entry .table-container

  Goal (mobile-only): change width from 100% to 330px (enforced),
  and remove/neutralize max-width: 100%.
*/

@media (max-width: 900px) {
  body.jr-memory-page #bp-memory-form-wrapper .memory-entry .table-container {
    width: 330px !important;
    max-width: none !important; /* replaces max-width: 100% */
    overflow: hidden !important;
    box-sizing: border-box !important;
  }
}
