body {
    font-family: Arial, sans-serif;
    margin: 20px;
    padding: 0;
    background: no-repeat center center fixed;
    background-size: cover;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 40px);
    box-sizing: border-box;
}
.player-container {
    width: 70%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.playlist-and-info {
    display: flex;
    gap: 20px;
}
.playlist {
    width: 70%;
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.playlist-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
    transition: background 0.3s;
}
.playlist-item:hover {
    background: #f0f0f0;
}
.playlist-item.active {
    background: #ececec;
    font-weight: bold;
}
.song-info {
    width: 30%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 10px;
border: 1px solid #ddd;
border-radius: 5px;
background-size: cover; 
background-position: center;
background-repeat: no-repeat;
}
.song-info h3, .song-info p {
    margin: 5px 0;
}
.controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.progress-bar {
    width: 100%;
}
audio {
    width: 100%;
}