/* ──────────────────────────────────────────────────────────
   Agusta PDF Converter  •  Full stylesheet
   (original look preserved; only progress-bar & helper text tweaks)
─────────────────────────────────────────────────────────── */

.agusta-pdfc{
    font-family:system-ui,sans-serif;
    max-width:640px;
    margin:2rem auto;
    padding:2rem;
    background:#fff;
    border-radius:1.25rem;
    box-shadow:0 15px 25px rgba(0,0,0,.08)
}
.agusta-pdfc__title{
    margin:0 0 1rem;
    font-size:1.5rem;
    font-weight:600;
    text-align:center
}

/* ── drag-and-drop box ──────────────────────────────────── */
.agusta-pdfc__drop{
    position:relative;
    border:3px dashed #008186;
    border-radius:.75rem;
    padding:1rem 1rem;
    text-align:center;
    cursor:pointer;
    transition:.2s
}
.agusta-pdfc__drop.is-hover{background:#f3fff6}
.agusta-pdfc__drop input[type=file]{position:absolute;inset:0;opacity:0;cursor:pointer}
.agusta-pdfc__browse{
    display:inline-block;
    padding:.5rem 1.1rem;
    margin-left:.3rem;
    background:#008186;
    color:#fff;
    border-radius:.5rem;
    font-weight:600;
    cursor:pointer;
    transition:transform .2s
}
.agusta-pdfc__browse:hover{transform:translateY(-2px)}

.agusta-pdfc__error{color:#d33;margin-top:.6rem;font-size:.875rem}

/* ── file-list ──────────────────────────────────────────── */
.agusta-pdfc__list{
    list-style:none;
    margin:1rem 0 0;
    padding:0;
    max-height:160px;
    overflow:auto
}
.agusta-pdfc__list li{
    display:flex;
    align-items:center;
    gap:.5rem;
    padding:.35rem .5rem;
    border-bottom:1px solid #eee;
    font-size:.875rem
}
.agusta-pdfc__fname{flex:1 1 auto;word-break:break-all}
.agusta-pdfc__remove{
    background:none;border:none;color:#d33;font-size:1.25rem;line-height:1;
    cursor:pointer;border-radius:.3rem;padding:0 .4rem
}
.agusta-pdfc__remove:hover{background:#d33;color:#fff}

/* ── tiny square icons ─────────────────────────────────── */
.agusta-pdfc__icon{
    width:24px;height:24px;border-radius:4px;color:#fff;font-size:.75rem;
    font-weight:700;display:inline-flex;align-items:center;justify-content:center
}
.agusta-pdfc__icon.word  {background:#2b579a}
.agusta-pdfc__icon.excel {background:#1d6f42}
.agusta-pdfc__icon.ppt   {background:#d04423}
.agusta-pdfc__icon.html  {background:#e44d26}
.agusta-pdfc__icon.text  {background:#6c6c6c}
.agusta-pdfc__icon.image {background:#ec7600}
.agusta-pdfc__icon.file  {background:#999}
.agusta-pdfc__icon.pdf   {background:#f40f02}   /* Acrobat red */

/* ── main buttons ───────────────────────────────────────── */
.agusta-pdfc__upload{
    width:100%;padding:.75rem 1rem;margin:1rem 0 0;border:none;
    background:#008186;color:#fff;border-radius:.5rem;font-size:1rem;font-weight:600;
    cursor:pointer;transition:opacity .2s,transform .2s
}
.agusta-pdfc__upload:disabled{opacity:.5;cursor:not-allowed}
.agusta-pdfc__upload:not(:disabled):hover{transform:translateY(-2px)}

.agusta-pdfc__download{
    display:inline-block;margin-top:1rem;padding:.65rem 1.2rem;
    background:#fd5900;color:#fff;border-radius:.5rem;text-decoration:none;font-weight:600
}

/* ── progress bar track ────────────────────────────────── */
.agusta-pdfc__bar{
    position:relative;            /* positioning context for fill */
    width:100%;height:18px;
    background:#e0e0e0;
    border-radius:9px;
    margin:1rem 0;
    overflow:hidden
}

/* ── progress fill (Orange) ─────────────────────────────── */
#agustaProgress{
    position:absolute; top:0; left:0;   /* JS controls width */
    width:0; height:100%;
    background:#fd5900;
    border-radius:9px;
    display:flex;align-items:center;justify-content:center;
    color:#fff;font-size:.75rem;
    transition:width .25s ease
}

/* ── helper texts (total upload & result info) ─────────── */
.agusta-pdfc__total{margin:.4rem 0 0;font-size:.75rem;color:#444}
.agusta-pdfc__info {display:block;margin-top:.5rem;font-size:.8rem;color:#333}

/* ── footnote tips list ───────────────────────────────── */
.agusta-pdfc__tips{
    margin:1.5rem 0 0;
    font-size:.75rem;
    color:#666;
    list-style:disc;
    padding-left:1.1rem
}
