/* CSS für Spieler-Statistik-Tabelle */

/* Marktwert-Spalten Styling */
.content-tabelle
  table.table-statistik.marktwerte:not(.transfers)
  tr
  td.mwaktuell,
.content-tabelle
  table.table-statistik.marktwerte:not(.transfers)
  tr
  th.mwaktuell {
  padding: auto 10px;
}

.content-tabelle
  table.table-statistik.marktwerte:not(.transfers)
  tr
  td.mwprognose,
.content-tabelle
  table.table-statistik.marktwerte:not(.transfers)
  tr
  th.mwprognose {
  background-color: var(--fd-bg-hover);
  padding: auto 10px;
}

/* Responsive: Verstecke Prognose auf mobilen Geräten */
@media (max-width: 768px) {
  td.mwprognose,
  th.mwprognose {
    display: none;
  }
}
