/*
 * De ce exista:
 * Acest fisier pastreaza separat stilurile pentru ecranul de completare a
 * profilului de muncitor.
 *
 * Responsabilitate:
 * Ofera ritm si claritate formularului canonic worker/me + worker/profile.
 *
 * Ce NU face:
 * Nu stilizeaza alte ecrane si nu introduce reguli de business.
 *
 * Depinde de:
 * tpl-screen-worker-profile-complete si CSS-ul shared/forms/components.
 */

.v2-screen--worker-profile-complete {
    display: grid;
    gap: 14px;
}

.v2-worker-profile-status-card {
    display: grid;
    gap: 14px;
}

.v2-worker-profile-status-card.is-pending {
    background: linear-gradient(180deg, rgba(22, 163, 74, 0.06), rgba(255, 255, 255, 0.98));
}

.v2-worker-profile-status-card.is-complete {
    background: linear-gradient(180deg, rgba(22, 163, 74, 0.08), rgba(255, 255, 255, 0.98));
}

.v2-worker-profile-error-card {
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.08), rgba(255, 255, 255, 0.98));
}

.v2-worker-profile-form-card {
    display: grid;
    gap: 14px;
}

.v2-worker-profile-missing-steps {
    display: grid;
    gap: 10px;
}

.v2-worker-profile-missing-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(229, 231, 235, 0.95);
}

.v2-worker-profile-missing-step strong {
    font-size: 0.96rem;
    color: #111827;
}

.v2-worker-profile-missing-step-index {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(22, 163, 74, 0.12);
    color: #15803d;
    font-size: 0.82rem;
    font-weight: 800;
    flex-shrink: 0;
}
