body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
}

.section {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 10px;
}

input[type="text"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

button {
    padding: 10px 20px;
    border: none;
    background-color: #1DB954;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #1ed760;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Play Button Styles */
.play-button {
    background-color: #1DB954;
    border: none;
    border-radius: 50%;
    width: 48px;  /* Set to match fetch button height */
    height: 48px;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.play-button img {
    width: 24px;
    height: 24px;
}

.play-button:hover {
    background-color: #1ed760;
}

.play-button:disabled {
    background-color: #ccc;
}

/* Align play button to the right of the Playlist heading */
.playlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#playlistContainer {
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 6px;
}

#playlistContainer div {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 4px;
}
