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

.jukebox {
    text-align: center;
    background: #333;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

audio {
    margin-bottom: 20px;
    width: 100%;
    max-width: 400px;
}

#playlist {
    list-style: none;
    padding: 0;
}

#playlist li {
    padding: 10px;
    margin: 5px 0;
    cursor: pointer;
    background: #444;
    border-radius: 5px;
    transition: background 0.3s;
}

#playlist li:hover, #playlist li.active {
    background: #555;
}
