body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #121212;
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    box-sizing: border-box;
    min-width: 320px;
}

#player-container {
    width: 100%;
    max-width: 700px; /* Maximale Breite */
    background-color: #1e1e1e;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    text-align: center;
    overflow: hidden;
}


#cover img {
    width: 300px;
    height: 300px;
    object-fit: cover;
}

#station-info {
    margin-bottom: 20px;
}

#station-name {
    font-size: 1.5em;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

#metadata {
    font-size: 1.1em;
    font-weight: bold;
    color: #bbb;
    margin: 10px 0;
}

#song-history-container {
    text-align: left;
    margin-top: 20px;
}

#song-history-container ul {
    list-style-type: none;
    padding-left: 0;
}

#song-history-container li {
    font-size: 1em;
    color: #ddd;
    margin: 5px 0;
}

#load-more {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #1db954;
    border: none;
    color: #fff;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
}

#load-more:hover {
    background-color: #1aa343;
}

.controls i {
    font-size: 2.5em;
    cursor: pointer;
    color: #aaa;
    transition: color 0.3s ease-in-out;
}

.controls i:hover {
    color: #1db954;
}
