body {
    font-family: Arial, sans-serif;
    background-color: #e8e4d8; /* Light beige background to match the image tones */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #333; /* Dark text color for readability */
}

.player-container {
    text-align: center;
    background-color: #fdfcf7; /* Off-white background for the container */
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
}

#song-image {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    margin-bottom: 20px; /* Space between the image and the audio player */
}

.song-info {
    margin-top: 10px;
}

.song-info p {
    margin: 5px 0;
}

.song-list {
    margin-top: 20px;
}

.song-list button {
    margin: 5px;
    padding: 10px;
    background-color: #333; /* Dark button background */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.song-list button:hover {
    background-color: #555; /* Slightly lighter on hover */
}

#download-all-button {
    margin: 20px 5px 0 5px;
    padding: 10px 20px;
    background-color: #333; /* Dark button background */
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#download-all-button:hover {
    background-color: #555; /* Slightly lighter on hover */
}
