/* style.css */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f5f5f5;
    color: #333;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.player {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.album-art img {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
}

.player-controls {
    flex: 1;
}

audio {
    width: 100%;
    margin: 10px 0;
}

.progress-container {
    width: 100%;
    height: 5px;
    background: #ddd;
    border-radius: 5px;
    margin: 10px 0;
}

.progress {
    height: 100%;
    background: #4CAF50;
    width: 0%;
    border-radius: 5px;
    transition: width 0.1s linear;
}

.controls {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

button {
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    background: #4CAF50;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #45a049;
}

.playlist {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.playlist ul {
    list-style: none;
    padding: 0;
}

.playlist li {
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.playlist li:hover {
    background: #f8f8f8;
}