/* public/css/resume_optimizer.css */
.resume-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    margin: 40px auto 0 auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    max-width: 900px;
    padding: 2.5rem 1.5rem;
    text-align: left;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.resume-title {
    color: #0d6efd;
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

.drop-zone {
    border: 3px dashed #dee2e6;
    border-radius: 10px;
    padding: 3rem 1.5rem;
    text-align: center;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.2s ease;
}

.drop-zone:hover, .drop-zone.drag-over {
    border-color: #0d6efd;
    background: #f0f5ff;
}

.scorecard-display {
    display: none;
    margin-top: 2.5rem;
    animation: fadeIn 0.4s ease-out;
}

.radial-score-box {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 5px solid #0d6efd;
}

.score-circle {
    width: 100px;
    height: 100px;
    background: #0d6efd;
    color: white;
    font-size: 2rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.checklist-card {
    background: #fff;
    border: 1px solid #e3e6f0;
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.item-status {
    font-size: 1.1rem;
    line-height: 1;
}

.action-bar {
    margin-top: 2rem;
    text-align: right;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
