AI-Powered Resume Screening Tool
Analyze resumes against a job description to find the best candidates.
Screening Report
No candidates were processed. Please check the resume format.
`; resultsContainer.classList.remove('hidden'); return; } // Sort results by match score, descending results.sort((a, b) => b.matchScore - a.matchScore); results.forEach(candidate => { const card = document.createElement('div'); card.className = 'result-card bg-white shadow-md rounded-lg p-6'; const scoreColor = getScoreColor(candidate.matchScore); card.style.borderColor = scoreColor; const strengthsHtml = candidate.strengths.map(s => `
${candidate.matchScore}%
${candidate.candidateIdentifier}
${candidate.summary}
Strengths
- ${strengthsHtml}
Weaknesses
- ${weaknessesHtml}
