
body{
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Default-Styling (für Maus) */
#action-button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

#action-button:hover {
  background-color: lightblue;
}

/* Zusätzliche Klasse für Touchgeräte */
.touch #action-button {
  font-size: 20px;
  padding: 16px 24px;
}

/* Optional: Hover deaktivieren */
.touch #action-button:hover {
  background-color: initial;
}
