.elements {
  display: flex;
  flex-direction: column;
}

video {
width: 650px;
max-width: 100%;
}

#audioplayer {
  background: linear-gradient(135deg, rgba(15,108,191,0.25) 0%, rgba(15,108,191,0.05) 70%, rgba(15,108,191,0.25) 100%);
  padding: 10px;
  border-radius: 0.5rem;
  width: 100%;
  min-width: 300px;
  max-width: 2000px;
  margin: 0 auto;
  text-align: center;
}

/* Stil für die Playlist */
#playlist {
  list-style: none;
  padding: 10px;
  margin: 10px;
}

#playlist li {
  padding: 5px;
  cursor: pointer;
  text-align: left;
  background-color: #f5f5f5;
  opacity: 50%;
  margin-bottom: 2px;
}

#playlist li:hover {
  background-color: #f5f5f5;
  opacity: 90%;
}

#active {
  background-color: #f5f5f5;
  opacity: 100% !important;
}
#playlist {
  counter-reset: mycounter 0;
}

#playlist li::before {
  counter-increment: mycounter;
  content: counter(mycounter) ". ";
}
