.qc-upload-card {
    max-width: 720px;
    margin: 40px auto;
    padding: 36px;
    border: 1px solid #dbe7ff;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.qc-upload-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #edf4ff;
    color: #2563eb;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.qc-upload-card h2 {
    margin: 0 0 10px;
    font-size: 32px;
    color: #0f172a;
}

.qc-upload-card p {
    margin: 0 0 26px;
    color: #64748b;
}

.qc-dropzone {
    margin: 0 auto 24px;
    padding: 42px 24px;
    border: 2px dashed #bfdbfe;
    border-radius: 20px;
    background: #f8fbff;
    color: #0f172a;
}

.qc-upload-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 18px;
    background: linear-gradient(135deg,#2563eb,#06b6d4);
    color:#fff;
    display:grid;
    place-items:center;
    font-weight:800;
}

.qc-dropzone strong {
    display:block;
    margin-bottom:6px;
    font-size:18px;
}

.qc-dropzone span {
    color:#64748b;
    font-size:14px;
}

.qc-button {
    border:0;
    border-radius:999px;
    padding:14px 28px;
    background:#2563eb;
    color:#fff;
    font-weight:700;
    cursor:pointer;
}

/* ---------- FILE LIST ---------- */

.qc-file-list{
    margin-top:20px;
}

.qc-file-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;

    padding:12px 16px;

    border:1px solid #dbe7ff;
    border-radius:14px;
    background:#f8fbff;

    text-align:left;
}

.qc-file-name{
    flex:1;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    font-weight:600;
    color:#0f172a;
}

.qc-file-remove{
    flex:0 0 30px;

    width:30px;
    height:30px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:none;
    border-radius:50%;

    background:#e0ecff;
    color:#2563eb;

    font-size:20px;
    font-weight:700;
    line-height:1;

    cursor:pointer;
    transition:.2s ease;
}

.qc-file-remove:hover{
    background:#2563eb;
    color:#fff;
}