/* Retter-Portal v1.3.47
   Ausschließlich Inventar mobil: die letzte äußere Tabellenhülle vollständig entfernen.
   Ursache: inventory-table-wrap ist ein SECTION-Element und wurde von den bisherigen
   DIV-spezifischen Reset-Selektoren nicht getroffen. */

@media (max-width:760px){
  /* Beide Inventar-Hüllen nehmen mobil keinerlei eigene Box mehr ein. */
  html body .app-shell .main section.content .live-results > .inventory-table-shell,
  html body .app-shell .main section.content .inventory-table-shell,
  html body .app-shell .main section.content .inventory-table-shell > section.inventory-table-wrap,
  html body .app-shell .main section.content section.card.table-wrap.data-table-card.inventory-table-wrap{
    display:contents!important;
    margin:0!important;
    padding:0!important;
    border:0!important;
    border-radius:0!important;
    outline:0!important;
    background:none!important;
    background-image:none!important;
    box-shadow:none!important;
    filter:none!important;
    overflow:visible!important;
  }

  html body .app-shell .main section.content .inventory-table-shell::before,
  html body .app-shell .main section.content .inventory-table-shell::after,
  html body .app-shell .main section.content section.inventory-table-wrap::before,
  html body .app-shell .main section.content section.inventory-table-wrap::after{
    display:none!important;
    content:none!important;
    border:0!important;
    background:none!important;
    box-shadow:none!important;
  }

  html body .app-shell .main section.content .inventory-scroll-guide{
    display:none!important;
  }

  /* Genau die einzelne Tabellenzeile bleibt als einzige Datensatzkarte sichtbar. */
  html body .app-shell .main section.content .inventory-table.responsive-table > tbody{
    display:grid!important;
    width:100%!important;
    grid-template-columns:minmax(0,1fr)!important;
    gap:12px!important;
    margin:0!important;
    padding:0!important;
    border:0!important;
    background:transparent!important;
    box-shadow:none!important;
  }
}
