@media screen and (max-width: 720px) {
  #grid-container {
    overflow-x: scroll;
  }
}
table {
  width: 100%;
  /* Die Tabelle passt sich der Breite des Containers an */
  table-layout: fixed;
  /* Fixe Zellenbreite */
  border-collapse: collapse;
  /* Vermeidung von doppelten Rahmen */
  background-color: #ffffff;
}
table td,
table th {
  width: 7.69%;
  /* Für eine 13x13 Tabelle, 100% / 13 */
  height: 50px;
  /* Höhe definieren, um quadratische Zellen zu erreichen */
  text-align: center;
  /* Zentriert den Inhalt horizontal */
  vertical-align: middle;
  /* Zentriert den Inhalt vertikal */
  border: 1px solid #ffffff;
  /* Rahmen um jede Zelle */
  font-size: 14px;
  /* Schriftgröße */
  overflow: hidden;
  /* Inhalt, der über die Zelle hinausgeht, wird ausgeblendet */
}
table th {
  background-color: #f4f4f4;
  /* Hintergrundfarbe für Kopfzellen */
  font-weight: bold;
}
table td {
  /* Optionale Styling-Ergänzungen */
  transition: background-color 0.3s;
  /* Glatter Übergang bei Farbänderung */
}
@media screen and (min-width: 992px) {
  .instruction-box {
    margin-top: 2rem;
  }
}
.legend-container {
  align-items: start;
  /* Legende linksbündig ausrichten */
  margin-bottom: 20px;
  /* Abstand zur Tabelle */
  justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .legend-container {
    flex-direction: column;
  }
}
.legend-item {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.legend-color {
  width: 20px;
  /* Quadratische Farbbox */
  height: 20px;
  margin-right: 10px;
  /* Abstand zwischen Farbbox und Text */
  border: 1px solid #ddd;
  /* Leichter Rahmen um die Farbbox */
}
.legend-container h4 {
  margin-bottom: 10px;
  /* Abstand zwischen Titel und Einträgen */
  font-weight: bold;
}
nav {
  margin-bottom: 2rem;
}
footer {
  background-color: #f3f3f3;
}
.display-none {
  display: none;
}
/*# sourceMappingURL=custom.css.map */