body {
    background-color: #282c34;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    width: 90%;
    max-width: 600px;
    background: #3e4145;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

h1 {
    margin-bottom: 20px;
}

.player {
    margin-bottom: 20px;
}

audio {
    width: 100%;
    margin-bottom: 10px;
}

.controls {
    margin: 10px 0;
}

.btn {
    background-color: #ffff;
    color: #282c34;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #21a1f1;
}

.playlist-container {
    max-height: 300px; /* Adjust height as needed */
    overflow-y: auto; /* Enable vertical scrolling */
    margin-top: 20px; /* Spacing above playlist */
}

.song-list {
    list-style: none;
    padding: 0;
}

.song-list li {
    cursor: pointer;
    padding: 10px;
    margin: 5px 0;
    background: #4a4e54;
    border-radius: 5px;
    transition: background 0.3s;
}

.song-list li:hover {
    background: #61dafb;
}

.song-list li.active {
    background: #21a1f1;
    font-weight: bold;
}
