/* Scout Report — isolated styles (upload overlay, name/badge layout) */

.scout-report-identity {
    align-items: center;
}

.scout-report-name-block {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 12px;
}

.scout-report-name-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    max-width: 100%;
}

.scout-report-name-row h2 {
    flex: 0 1 auto;
    min-width: 0;
    margin: 0;
    text-align: left;
}

.scout-report-name-row .scout-report-pos-badge {
    flex: 0 0 auto;
    margin-left: 0;
}

.scout-report-name-block .scout-report-subtitle {
    margin-top: 8px;
    margin-bottom: 0;
}

.scout-report-avatar-wrap {
    position: relative;
    width: 132px;
    height: 132px;
    flex: 0 0 auto;
    border-radius: 50%;
    cursor: pointer;
}

.scout-report-avatar-wrap.scout-report-avatar-wrap--readonly {
    cursor: default;
}

.scout-report-avatar-wrap .scout-report-avatar {
    width: 100%;
    height: 100%;
}

.scout-report-avatar-overlay {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-align: center;
    background: rgba(7, 9, 13, 0.72);
    color: #f1c979;
    font-family: var(--font-heading, 'Bebas Neue', sans-serif);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.22s ease;
    pointer-events: none;
}

.scout-report-avatar-wrap:not(.scout-report-avatar-wrap--readonly):hover .scout-report-avatar-overlay,
.scout-report-avatar-wrap:not(.scout-report-avatar-wrap--readonly):focus-within .scout-report-avatar-overlay,
.scout-report-avatar-wrap.drag-over .scout-report-avatar-overlay {
    opacity: 1;
}

.scout-report-avatar-wrap.drag-over .scout-report-avatar-overlay {
    background: rgba(128, 4, 4, 0.82);
    color: #fff;
}

.scout-report-avatar-wrap:not(.scout-report-avatar-wrap--readonly):hover .scout-report-avatar,
.scout-report-avatar-wrap.drag-over .scout-report-avatar {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.45), 0 0 28px rgba(179, 0, 0, 0.35);
}

@media (max-width: 640px) {
    .scout-report-name-block {
        padding-top: 8px;
        align-items: center;
        text-align: center;
    }

    .scout-report-name-row {
        justify-content: center;
        gap: 8px;
    }

    .scout-report-name-row h2 {
        text-align: center;
    }

    .scout-report-name-block .scout-report-subtitle {
        text-align: center;
    }
}

/* Resume PDF upload — premium dropzone (matches scout video upload style) */
.scout-resume-pdf-section h3 {
    margin-bottom: 14px;
}

.scout-resume-pdf-dropzone {
    min-height: 148px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 22px 18px;
    margin-bottom: 18px;
    border-radius: 14px;
    border: 1px dashed rgba(212, 175, 55, 0.45);
    background: rgba(255, 255, 255, 0.035);
    color: #fff;
    cursor: pointer;
    transition: border-color 0.25s, background 0.25s, transform 0.25s;
    text-align: center;
}

.scout-resume-pdf-dropzone i.fa-cloud-upload-alt {
    color: #d4af37;
    font-size: 1.7rem;
}

.scout-resume-pdf-label {
    font-family: 'Bebas Neue', var(--font-heading);
    letter-spacing: 0.08em;
    font-size: 1.25rem;
}

.scout-resume-pdf-hint,
.scout-resume-pdf-or {
    margin: 0;
    color: #ccc;
    font-size: 0.88rem;
    line-height: 1.45;
}

.scout-resume-pdf-dropzone small {
    color: #999;
    font-size: 0.78rem;
}

.scout-resume-pdf-dropzone:hover,
.scout-resume-pdf-dropzone:focus-visible,
.scout-resume-pdf-dropzone.drag-over {
    outline: none;
    border-color: rgba(198, 40, 40, 0.8);
    background: rgba(128, 4, 4, 0.14);
    transform: translateY(-1px);
}

.scout-resume-pdf-dropzone--readonly {
    cursor: default;
}

.scout-resume-pdf-dropzone--readonly:hover,
.scout-resume-pdf-dropzone--readonly:focus-visible {
    border-color: rgba(212, 175, 55, 0.45);
    background: rgba(255, 255, 255, 0.035);
    transform: none;
}

.scout-resume-pdf-dropzone.is-uploading {
    opacity: 0.65;
    pointer-events: none;
}

.scout-resume-pdf-existing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 6px 0;
}

.scout-resume-pdf-icon {
    color: #e74c3c;
    font-size: 2.4rem;
}

.scout-resume-pdf-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 100%;
}

.scout-resume-pdf-filename {
    font-weight: 600;
    color: #f5f5f5;
    word-break: break-word;
}

.scout-resume-pdf-date {
    color: #999;
    font-size: 0.82rem;
}

.scout-resume-pdf-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.scout-resume-pdf-btn {
    font-size: 0.82rem;
    padding: 8px 14px;
}
