/* Grundlegender Stil für den Audio-Player-Link */
.asuwa-audio-player {
    margin: 20px 0;
    padding: 10px;
    background-color: #f2f2f2;
    text-align: center;
    border-radius: 5px;
}

.asuwa-audio-link {
    display: inline-block;
    padding: 10px 15px;
    background-color: #1e88e5;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.asuwa-audio-link:hover {
    background-color: #0a4e8a;
}


#asuwa-audio-player-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

#asuwa-open-audio-player {
    padding: 10px 20px;
    background-color: #1e88e5;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#asuwa-open-audio-player:hover {
    background-color: #0a4e8a;
}
#equalizer {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  width: 100px !important;
  height: 80px !important;
    margin-left: 1em !important;
    

}
@media screen and (min-width: 1000px)
{
    #asuwa-audio-player-popup {
        margin-right: 3em !important;
    margin-bottom: 2em !important;
     
}
}


.bar {
  width: 15%;
  height: 20%;
  background-color: #BB322D;
  animation: equalize 1.8s infinite ease-in-out;
}

/* Individual animation for each bar */
.bar:nth-child(1) { animation-delay: -1.4s; }
.bar:nth-child(2) { animation-delay: -2.3s; }
.bar:nth-child(3) { animation-delay: -1.2s; }
.bar:nth-child(4) { animation-delay: -3.1s; }
.bar:nth-child(5) { animation-delay: 0s; }

@keyframes equalize {
  0%, 100% { height: 10%; }
  20% { height: 30%; }
  30% { height: 40%; }
  40% { height: 45%; }
  50% { height: 50%; }
}
audio {margin-left: -0.7em !important; 
margin-top: 1em;}

@media screen and (max-width: 921px) {
    #asuwa-audio-player-header {
        display: none; /* Verbirgt den Button standardmäßig auf kleinen Bildschirmen */
    }
}
