.chat {
  font-size: 1.5rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: 10px;
  min-height: 3rem; /* Genug Platz für eine Zeile */
}

@media screen and (max-width: 600px) {
  .chat {
    font-size: 1.2rem;
    white-space: normal;
    min-height: 4rem; /* Genug Platz für zwei Zeilen */
  }
}

.highlight {
  color: #48e5c2; /* Farbe für "Good" */
  font-weight: bold;
}
