details summary {
  list-style: none; /* Standardpfeil entfernen */
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px; /* Abstand zwischen Icon und Text */
  margin-top: 10px;
}

/* Icon rotieren, wenn Details offen */
details[open] summary i {
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

/* Optional: Text hervorheben, wenn offen */
details[open] summary {
  font-weight: bold;
}