/* audio-player.css */
@font-face {
    font-family: 'AvenirNextLTPro-Heavy';
    src: url('https://kostenlose-playlists.de/wp-content/uploads/2024/03/AvenirNextLTPro-Heavy.woff') format('woff'),
         url('https://kostenlose-playlists.de/wp-content/uploads/2024/03/AvenirNextLTPro-Heavy.ttf') format('truetype');
}
 
@font-face {
    font-family: 'AvenirNextLTPro-Medium';
    src: url('https://kostenlose-playlists.de/wp-content/uploads/2024/03/AvenirNextLTPro-Medium.woff') format('woff');
}

.audio-player {
    width: 100%;
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
}

.player-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    display: none;
    padding: 10px;
}

.icecast-metadata {
    display: flex row;
    justify-content: center;
    align-items: center;
}

.play-pause-button {
    background-color: #ffffff;
    color: #D71E84;
    border-radius: 100%;
    border: none;
    padding: 10px;
    font-size: xx-large;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 30px;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.play-pause-svg {
    width: 20px;
    height: 20px;
}

.artist-metadata {
    width: fit-content;
    font-family: 'AvenirNextLTPro-Medium';
    font-style: normal;
    font-size: 1.2em;
}

.song-metadata {
    width: fit-content;
    font-family: 'AvenirNextLTPro-Heavy';
    font-style: normal;
    font-size: 1.5em;
    font-weight:bolder;
}