/* CareerPilot Recruiter Impact — Phase 4 */

/* The Copilot cards replace the older duplicated section choices. */
#careerPilotCopilotPanel ~ .ai-option-button {
    display: none;
}

.careerpilot-impact-list {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.careerpilot-impact-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(245, 158, 11, 0.24);
    border-radius: 13px;
    background: rgba(245, 158, 11, 0.05);
}

.careerpilot-impact-rank {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 10px;
    background: rgba(245, 158, 11, 0.14);
    color: #b45309;
    font-weight: 900;
}

.careerpilot-impact-item strong {
    display: block;
    margin-bottom: 4px;
}

.careerpilot-impact-item p {
    margin: 0;
    color: var(--text-muted, #667085);
    font-size: 13px;
    line-height: 1.45;
}

.careerpilot-impact-value {
    color: #13a879;
    font-size: 16px;
    font-weight: 900;
    white-space: nowrap;
}

.careerpilot-impact-item button {
    grid-column: 2 / -1;
    justify-self: start;
    padding: 9px 12px;
    border: 1px solid rgba(47, 111, 237, 0.3);
    border-radius: 9px;
    background: rgba(47, 111, 237, 0.08);
    color: #2f6fed;
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
}

.careerpilot-impact-complete {
    padding: 14px;
    border-radius: 12px;
    background: rgba(19, 168, 121, 0.1);
    color: #0f8f68;
    font-weight: 800;
}

.careerpilot-next-step-button,
.careerpilot-next-step-link {
    display: inline-flex;
    min-height: 44px;
    margin-top: 16px;
    padding: 11px 15px;
    align-items: center;
    justify-content: center;
    border: 1px solid #2f6fed;
    border-radius: 11px;
    background: #2f6fed;
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    text-decoration: none;
}

body.dark-mode .careerpilot-impact-item {
    background: rgba(245, 158, 11, 0.08);
}

@media (max-width: 720px) {
    .careerpilot-impact-item {
        grid-template-columns: auto 1fr;
    }

    .careerpilot-impact-value {
        grid-column: 2;
    }

    .careerpilot-impact-item button {
        grid-column: 1 / -1;
        width: 100%;
    }
}
