/* ─────────────────────────────────────────────
 * Block Editor — psuo/pdf-uploader
 * ───────────────────────────────────────────── */

.psuo-block {
    border:         2px dashed #ccc;
    border-radius:  10px;
    padding:        24px;
    background:     #fafafa;
    transition:     border-color 0.2s ease, background 0.2s ease;
    font-family:    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Drag hover */
.psuo-block--dragging {
    border-color:   #0073aa;
    background:     #eef5fa;
}

/* Title */
.psuo-block__title {
    margin:         0 0 8px;
    font-size:      17px;
    color:          #1e1e1e;
}

/* Parent info */
.psuo-block__parent {
    margin:         0 0 16px;
    font-size:      13px;
    color:          #777;
}

/* ── Drop Zone ── */
.psuo-block__dropzone {
    text-align:     center;
    padding:        16px 0;
}

.psuo-block__dropzone-text {
    margin:         0 0 12px;
    font-size:      14px;
    color:          #666;
}

.psuo-block__dropzone .components-button.is-primary {
    padding:        12px 28px;
    font-size:      15px;
}

/* ── Progress ── */
.psuo-block__progress {
    text-align:     center;
    padding:        12px 0;
}

.psuo-block__progress p {
    margin:         8px 0;
    font-size:      14px;
    color:          #555;
}

.psuo-block__bar-bg {
    width:          100%;
    height:         10px;
    background:     #e0e0e0;
    border-radius:  5px;
    overflow:       hidden;
    margin-top:     10px;
}

.psuo-block__bar-fill {
    height:         100%;
    background:     linear-gradient( 90deg, #0073aa, #00a0d6 );
    border-radius:  5px;
    transition:     width 0.3s ease;
}

/* ── Results ── */
.psuo-block__results {
    margin-top:     20px;
    padding-top:    16px;
    border-top:     2px solid #e0e0e0;
}

.psuo-block__results h4 {
    margin:         0 0 10px;
    font-size:      15px;
    color:          #1e1e1e;
}

.psuo-block__results ul {
    list-style:     none;
    margin:         0;
    padding:        0;
}

.psuo-block__results li {
    padding:        7px 0;
    border-bottom:  1px solid #eee;
    font-size:      14px;
    color:          #333;
}

.psuo-block__results li:last-child {
    border-bottom:  none;
}

.psuo-block__results a {
    color:          #0073aa;
    font-size:      13px;
    text-decoration:none;
}

.psuo-block__results a:hover {
    text-decoration:underline;
}
