/* Container für den Audio-Player mit Hintergrundbild */
.audio-cover-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 350px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 25px;
    margin: 25px 0;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Optional: Ein leichter dunkler Verlauf, damit der Player besser lesbar ist */
.audio-cover-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
    border-radius: 0 0 12px 12px;
    pointer-events: none;
}

/* Anpassung des Audio-Players selbst */
.audio-cover-container audio {
    width: 85%;
    z-index: 1; /* Stellt sicher, dass der Player über dem Verlauf liegt */
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Page footer */
.footer {
  position: fixed; 
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 35px;
  border: none;
  padding: 2px;
  margin: 0;
  background: linear-gradient(to bottom, white, black);
  font-family: Verdana, sans-serif;
  font-size: 10px;
  color: #FF25C6;
}


