    body {
        font-family: "Georgia", serif;
        background: #f4f9ff; /* very light blue */
        margin: 0;
        padding: 40px;
        color: #444;
    }

    h1 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: #5a9dc8; /* deep soft blue */
    }

    /* Single album art at the top */
    .album-art-top {
        width: 320px;
        height: 320px;
        margin: 0 auto 35px auto;
        border-radius: 14px;
        background-image: url('../images/album_art_small.png');
        background-size: cover;
        background-position: center;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        border: 4px solid #ffb27c; /* soft orange border */
    }

    .song-list {
        max-width: 750px;
        margin: 0 auto;
        counter-reset: song;
    }

    .song {
        background: white;
        padding: 10px 14px;
        margin-bottom: 8px;
        border-radius: 10px;
        border-left: 6px solid #ffb27c; /* orange accent */
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        counter-increment: song;
    }

    .song::before {
        content: counter(song, decimal-leading-zero);
        font-variant-numeric: tabular-nums;
        font-weight: bold;
        color: #9bb6c9;
        min-width: 2ch;
        text-align: right;
        flex-shrink: 0;
    }

    .song-title {
        font-size: 1.05rem;
        font-weight: bold;
        color: #5a9dc8; /* blue */
        flex: 1;
        min-width: 0;
    }

    .controls {
        display: flex;
        gap: 6px;
        align-items: center;
        flex-shrink: 0;
    }

    button {
        padding: 8px 14px;
        margin-bottom: 3px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        background: #a3d5ff; /* light blue button */
        color: #083d77;
        font-size: 0.9rem;
        font-weight: bold;
    }

    button:hover {
        background: #8bc9ff;
    }

    /* Compact icon-only buttons inside song rows */
    .controls button,
    .controls a.download {
        width: 36px;
        height: 36px;
        padding: 0;
        margin: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        line-height: 1;
        border-radius: 50%;
    }

    a.download {
        text-decoration: none;
        padding: 8px 14px;
        background: #ffb27c; /* orange */
        color: white;
        border-radius: 6px;
        font-size: 0.9rem;
        font-weight: bold;
    }

    a.download:hover {
        background: #ffa366;
    }

    .progress-container {
    width: 100%;
    height: 8px;
    background: #d0e9ff; /* pale blue */
    border-radius: 4px;
    cursor: pointer;
    margin-top: 5px;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: #ffb27c; /* soft orange */
    border-radius: 4px;
}

#global-progress-container {
    width: 100%;
    max-width: 600px;
    height: 10px;
    background: #d0e9ff; /* pale blue */
    border-radius: 5px;
    margin: 15px auto;
    cursor: pointer;
}

#global-progress-bar {
    width: 0%;
    height: 100%;
    background: #ffb27c; /* soft orange */
    border-radius: 5px;
}
