/* Betrifft NUR ul-Elemente, die sich innerhalb einer Textbox befinden */
.textboxListen ul {
  list-style-type: none; 
  margin-top: 0.5rem;       
  margin-bottom: 1rem;    
  padding-left: 1.2em;    
  margin-left: 0;         
  position: relative; /* Wichtig, damit das absolute ::before sich richtig ausrichtet */
}

.textboxListen ul li::before {
  content: "⏹"; 
  position: absolute;
  left: 0;
  margin-top: -3px;
  color: #3e5661; 
  font-size: 1.25rem;
}