body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: radial-gradient(circle, rgba(204, 255, 102, 0.8), rgba(0, 102, 0, 0.8));
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  padding-top: 30px;
  animation: fadeIn 1.5s ease forwards;
  opacity: 0;
    -webkit-tap-highlight-color: transparent; /* für mobile Geräte */
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

..puzzle-table img {
  user-select: none;            /* Keine Textauswahl */
  -webkit-user-drag: none;      /* Kein Dragging in Safari/Chrome */
  pointer-events: auto;         /* Klicks weiter zulassen */
  cursor: pointer;
}

.puzzle-table td {
  padding: 0;
  margin: 0;
  user-select: none;
}

.logo-text-container {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-direction: row;  /* ← Logo und Text nebeneinander */
  justify-content: center;
  text-align: left;
}

.logo {
  max-width: 220px;
}

.headline-text {
  font-size: 2rem;
  color: #2c6b2f;
  font-weight: bold;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  margin: 0;
}

.puzzle-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.puzzle-table {
  border-collapse: collapse;
}

.puzzle-table td {
  padding: 2px;
}

.puzzle-table img {
  width: 100px;
  height: 100px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

#shuffleBtn {
  padding: 12px 24px;
  font-size: 1rem;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 102, 0, 0.4);
  transition: background 0.3s, transform 0.2s;
}

#shuffleBtn:hover {
  background-color: #218838;
  transform: scale(1.05);
}

.spielbereich {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

#puzzle-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.status-leiste {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
  flex-wrap: wrap;
}

#zeit {
  font-size: 1.2rem;
  font-weight: bold;
}

#auswertung.versteckt {
  display: none;
}

#auswertung {
  font-size: 1.2rem;
  color: #2c6b2f;
}