body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.music-player {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.album-cover img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.control-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.control-buttons button {
    background-color: transparent;
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
}

.control-buttons button:hover {
    color: #999;
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

#progressBar, #volumeSlider {
    flex-grow: 1;
    appearance: none;
    background: #333;
    height: 5px;
    border-radius: 5px;
    outline: none;
}

#progressBar::-webkit-slider-thumb, 
#volumeSlider::-webkit-slider-thumb {
    appearance: none;
    width: 15px;
    height: 15px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
}

.playlist {
    max-height: 300px;
    overflow-y: auto;
}

.playlist-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #333;
    cursor: pointer;
}

.playlist-item:hover {
    background-color: #222;
}

.playlist-item-info {
    flex-grow: 1;
    text-align: left;
}

.playlist-item-download {
    color: white;
    text-decoration: none;
    margin-left: 10px;
}