/* Hervorhebung der Zeile und Spalte */
.highlight {
  background-color: rgba(255, 235, 59, 0.2)!important; /* Gelbe Hervorhebung, du kannst die Farbe ändern */
}

.effektiv {
  background-color: rgba(0, 255, 0, 0.2)!important; /* Transparentes Grün für "+" */
}

.ineffektiv {
  background-color: rgba(255, 0, 0, 0.2)!important; /* Transparentes Rot für "-" */
}

.immun {
  background-color: rgba(46, 46, 46, 0.5)!important; /* Transparentes Schwarz für "x" */
}
/*
.neutral {
  background-color: rgba(128, 128, 128, 0.1)!important;  Dezentes Grau für leere Felder 
} */

#pokemon-typen-tabelle {
  display: flex!important;
  justify-content: center!important;  /* Zentriert die Tabelle horizontal */
  align-items: center!important;      /* Zentriert die Tabelle vertikal */
  height: 100vh!important;            /* Nutze die gesamte Bildschirmhöhe für vertikale Zentrierung */
}

#pokemon-typen-tabelle > table{
  width: 70%!important;
  height: 70%!important;
  border-collapse: collapse!important;
  text-align: center!important;
}

#pokemon-typen-tabelle > table td,
#pokemon-typen-tabelle > table th{
  width: 12px!important;
  height: 12px!important;
  padding: 2px;

  text-align: center!important;  /* Text zentrieren (falls nötig) */
}