.missionaries-page-wrapper {
    background-color: #F8FAFB;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    font-family: 'Work Sans', 'Inter', sans-serif;
    color: #1e293b;
}

.apply-header-stepper-box {
    background-color: #ffffff;
    width: 100%;
    border-bottom: 1px solid #e2e8f0;
    padding-top: 40px;
    padding-bottom: 22px;
}

.apply-header-stepper-inner {
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 1200px) {
    .apply-header-stepper-inner {
        padding-left: 128px;
        padding-right: 128px;
    }
    .apply-container {
        padding-left: 164px;
        padding-right: 164px;
    }
}
@media (max-width: 1199px) {
    .apply-container,
    .apply-header-stepper-inner {
        padding-left: 40px;
        padding-right: 40px;
    }
}
@media (max-width: 768px) {
    .apply-container,
    .apply-header-stepper-inner {
        padding-left: 16px;
        padding-right: 16px;
    }
}

.apply-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    align-self: stretch;
    box-sizing: border-box;
    width: 100%;
    padding-top: 36px;
    padding-bottom: 36px;
}

.apply-container-success {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.apply-header {
    text-align: center;
    margin-bottom: 32px;
}

.apply-header h1 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: #111827;
    margin: 0 0 4px 0;
}

.apply-header p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #6b7280;
    max-width: 520px;
    margin: 0 auto;
}

.stepper-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.stepper-line {
    position: absolute;
    top: 10px;
    left: 50px;
    right: 50px;
    height: 2px;
    background-color: #cbd5e1;
    z-index: 1;
}

.stepper-line-progress {
    display: none;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    background-color: transparent;
    cursor: pointer;
    width: 100px;
    text-align: center;
}

.step-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid #cbd5e1;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.step-item.active .step-circle {
    border-color: #0ea5e9;
    position: relative;
}

.step-item.active .step-circle::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background-color: #0ea5e9;
    border-radius: 50%;
}

.step-item.completed .step-circle {
    border-color: #0ea5e9;
    background-color: #0ea5e9;
    position: relative;
}

.step-item.completed .step-circle::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.step-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    color: #111827;
    transition: color 0.2s ease;
}

.step-item.active .step-label {
    color: #0ea5e9;
    font-weight: 600;
}

.step-item.completed .step-label {
    color: #0ea5e9;
}


.apply-project-wrapper .wizard-card {
    background: #FFFFFF;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.apply-project-wrapper .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.apply-project-wrapper .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    color: #1f2937;
    background-color: #FFFFFF;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.form-group textarea {
    resize: vertical;
    height: 132px;
}

.skills-tags-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.skills-input-wrapper {
    display: flex;
    gap: 10px;
}

.skills-input-wrapper input {
    flex: 1;
}

.btn-add-skill {
    padding: 0 16px;
    background-color: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-add-skill:hover {
    background-color: #e5e7eb;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skill-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #f1fafe;
    color: #0ea5e9;
    height: 24px;
    padding: 0 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    box-sizing: border-box;
    transition: all 0.2s;
}

.skill-badge i {
    color: #0ea5e9;
    font-size: 9px;
    margin-left: 2px;
    display: inline-flex;
    align-items: center;
}

.btn-remove-skill {
    background: none;
    border: none;
    color: #0ea5e9;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 14px;
}

.btn-remove-skill:hover {
    color: #0369a1;
}

.project-summary-box {
    display: flex;
    gap: 24px;
    align-items: center;
    background-color: #FFFFFF;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    width: 100%;
    align-self: stretch;
    box-sizing: border-box;
}

.project-summary-img {
    width: 72px;
    height: 72px;
    border-radius: 4px;
    object-fit: cover;
}

.project-summary-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

.project-summary-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #111827;
    line-height: 20px;
    margin: 0;
}

.project-summary-spots {
    font-size: 12px;
    font-weight: 400;
    color: #6b7280;
    margin-left: 2px;
}

.project-summary-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 0;
}

.project-summary-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #f3f4f6;
    border: none;
    height: 24px;
    padding: 0 8px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #374151;
}

.summary-badge-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.summary-badge-icon-sm {
    width: 12px;
    height: 12px;
}

.review-header {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
    margin-bottom: 4px;
}

.review-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #374151;
    line-height: 24px;
    margin: 0;
}

.review-subtitle {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
    letter-spacing: 0.2px;
    line-height: 22px;
    margin: 0;
}

.review-card {
    background: #FFFFFF;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding-top: 22px;
    width: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.review-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 22px;
}

.review-item-columns {
    display: flex;
    gap: 24px;
}

.review-column {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.review-label {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
    letter-spacing: 0.2px;
    line-height: 22px;
    margin-bottom: 4px;
}

.review-value {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #111827;
    letter-spacing: 0.2px;
    line-height: 20px;
}

.review-value-quote {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #111827;
    letter-spacing: 0.2px;
    line-height: 20px;
    white-space: pre-line;
}

.review-profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.review-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.review-profile-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.review-profile-name-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.review-profile-name {
    font-family: 'Work Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    line-height: 24px;
}

.review-profile-location {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
}

.badge-org {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #f3f4f6;
    height: 24px;
    padding: 0 8px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #374151;
}

.review-consent-checks {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.review-card-divider {
    background-color: #e5e7eb;
    height: 1px;
    width: 100%;
    margin-top: 24px;
}

.review-card-divider-dashed-v3 {
    display: block;
    height: 1px;
    width: 100%;
    background-image: repeating-linear-gradient(
        to right,
        #e5e7eb 0,
        #e5e7eb 8px,
        transparent 8px,
        transparent 16px
    );
    background-repeat: repeat-x;
    background-position: left;
}

.review-card-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 22px 32px 22px;
}

.apply-project-wrapper .wizard-card.success-card {
    padding: 20px 0 32px 0;
}

.success-card {
    display: flex;
    width: 564px;
    padding: 20px 0 32px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    align-self: center;
    box-sizing: border-box;
}

.success-header {
    display: flex;
    width: 100%;
    padding: 0 22px;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    box-sizing: border-box;
}

.success-green-icon {
    width: 32px;
    height: 32px;
    aspect-ratio: 1/1;
    flex-shrink: 0;
}

.success-card h2 {
    font-family: 'Work Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #111827;
    margin: 0;
    line-height: normal;
    letter-spacing: 0.0111em;
}

.success-divider {
    height: 1px;
    background-color: #e5e7eb;
    width: 100%;
}

.success-description-wrapper {
    display: flex;
    width: 100%;
    padding: 12px 22px;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    box-sizing: border-box;
    align-self: stretch;
}

.success-card p {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #6b7280;
    text-align: center;
    margin: 0;
    line-height: 20px;
    letter-spacing: 0.0125em;
}

.success-buttons-wrapper {
    display: flex;
    width: 100%;
    padding: 0 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    box-sizing: border-box;
    align-self: stretch;
}

.success-buttons-row {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-self: stretch;
    gap: 12px;
    box-sizing: border-box;
}

.btn-explore-projects {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    height: 38px;
    padding: 0 16px;
    border-radius: 4px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #374151;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
    transition: background-color 0.2s, border-color 0.2s;
}

.btn-explore-projects:hover {
    background-color: #f9fafb;
    border-color: #c5c9d0;
}

.btn-view-application {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    height: 38px;
    padding: 0 16px;
    border-radius: 4px;
    border: 1px solid #f0f9ff;
    background: #0ea5e9;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
    box-sizing: border-box;
    transition: background-color 0.2s;
}

.btn-view-application:hover {
    background-color: #0284c7;
}

.wizard-buttons {
    display: flex;
    width: 100%;
    margin-top: 30px;
    padding: 0 22px;
    box-sizing: border-box;
}

.wizard-buttons-step1 {
    justify-content: space-between;
}

.wizard-buttons-step2 {
    justify-content: flex-end;
    gap: 12px;
}

.btn-prev {
    padding: 0 16px;
    height: 38px;
    background-color: #FFFFFF;
    color: #374151;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-prev:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
}

.apply-project-wrapper .btn-next, .apply-project-wrapper .btn-submit {
    padding: 0 16px;
    height: 38px;
    background-color: #0ea5e9;
    color: #FFFFFF;
    border: 1px solid #f0f9ff;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.apply-project-wrapper .btn-next:hover, .apply-project-wrapper .btn-submit:hover {
    background-color: #0284c7;
}

.btn-submit-success {
    padding: 0 16px;
    height: 38px;
    background-color: #0ea5e9;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s;
}

.btn-submit-success:hover {
    background-color: #0284c7;
}

.apply-container form {
    width: 100%;
    align-self: stretch;
    display: flex;
    flex-direction: column;
}

.verify-profile-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-family: 'Inter', sans-serif;
    width: 100%;
    align-self: stretch;
}

.verify-profile-header-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
}

.verify-profile-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #374151;
    margin: 0;
}

.verify-profile-subtitle {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.profile-preview-card {
    display: flex;
    padding: 22px 0 32px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    background: #FFF;
    box-sizing: border-box;
}

.profile-preview-card-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    padding: 0 22px;
    align-self: stretch;
    box-sizing: border-box;
}

.profile-card-divider {
    height: 1px;
    align-self: stretch;
    background: #E5E7EB;
}

.profile-preview-header {
    padding: 0 22px;
    width: 100%;
    box-sizing: border-box;
    align-self: stretch;
    margin-bottom: 0;
}

.profile-preview-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile-preview-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-preview-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-preview-name {
    font-family: 'Work Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.profile-preview-badge-org {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #f1f5f9;
    color: #475569;
    height: 24px;
    padding: 0 10px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
}

.profile-preview-location {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    color: #64748b;
    margin: 6px 0 0 0;
}

.profile-preview-details-grid {
    display: grid;
    padding: 0 22px;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-self: stretch;
    box-sizing: border-box;
}

.profile-preview-detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    color: #6b7280;
    letter-spacing: 0.2px;
    font-weight: 400;
    text-transform: none;
}

.detail-value {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #111827;
    letter-spacing: 0.2px;
}

.detail-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.badge-skill {
    background-color: #f1fafe;
    color: #0ea5e9;
    padding: 0 8px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
}

.profile-completeness-card {
    display: flex;
    padding: 22px 0 32px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    background: #FFF;
    box-sizing: border-box;
}

.project-requirements-card {
    display: flex;
    padding: 22px 0 32px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    background: #FFF;
    box-sizing: border-box;
}

.project-requirements-card .card-section-title {
    padding: 0 22px;
    margin: 0;
    align-self: stretch;
    box-sizing: border-box;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
}

.requirements-content-wrapper {
    padding: 0 22px;
    align-self: stretch;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.profile-completeness-card .card-section-title {
    padding: 0 22px;
    margin: 0;
    align-self: stretch;
    box-sizing: border-box;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
}

.completeness-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 22px;
    box-sizing: border-box;
    width: 100%;
}

.profile-card-divider-inset {
    height: 1px;
    align-self: stretch;
    background: #E5E7EB;
}

.completeness-progress-container {
    padding: 0;
    align-self: stretch;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.completeness-checklist-wrapper {
    padding: 0;
    align-self: stretch;
    box-sizing: border-box;
}

.card-section-title {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    letter-spacing: 0.2px;
    margin: 0 0 12px 0;
    text-transform: none;
}

.completeness-percentage-row {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #222b45;
    margin-bottom: 0;
}

.progress-bar-bg-completeness {
    height: 9px;
    background-color: #f3f4f6;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0;
}

.progress-bar-fill-completeness {
    height: 100%;
    background-color: #0ea5e9;
    border-radius: 8px;
}

.progress-bar-fill-completeness.progress-pct-0,
.stepper-line-progress.progress-pct-0 { width: 0%; }
.progress-bar-fill-completeness.progress-pct-5,
.stepper-line-progress.progress-pct-5 { width: 5%; }
.progress-bar-fill-completeness.progress-pct-10,
.stepper-line-progress.progress-pct-10 { width: 10%; }
.progress-bar-fill-completeness.progress-pct-15,
.stepper-line-progress.progress-pct-15 { width: 15%; }
.progress-bar-fill-completeness.progress-pct-20,
.stepper-line-progress.progress-pct-20 { width: 20%; }
.progress-bar-fill-completeness.progress-pct-25,
.stepper-line-progress.progress-pct-25 { width: 25%; }
.progress-bar-fill-completeness.progress-pct-30,
.stepper-line-progress.progress-pct-30 { width: 30%; }
.progress-bar-fill-completeness.progress-pct-35,
.stepper-line-progress.progress-pct-35 { width: 35%; }
.progress-bar-fill-completeness.progress-pct-40,
.stepper-line-progress.progress-pct-40 { width: 40%; }
.progress-bar-fill-completeness.progress-pct-45,
.stepper-line-progress.progress-pct-45 { width: 45%; }
.progress-bar-fill-completeness.progress-pct-50,
.stepper-line-progress.progress-pct-50 { width: 50%; }
.progress-bar-fill-completeness.progress-pct-55,
.stepper-line-progress.progress-pct-55 { width: 55%; }
.progress-bar-fill-completeness.progress-pct-60,
.stepper-line-progress.progress-pct-60 { width: 60%; }
.progress-bar-fill-completeness.progress-pct-65,
.stepper-line-progress.progress-pct-65 { width: 65%; }
.progress-bar-fill-completeness.progress-pct-70,
.stepper-line-progress.progress-pct-70 { width: 70%; }
.progress-bar-fill-completeness.progress-pct-75,
.stepper-line-progress.progress-pct-75 { width: 75%; }
.progress-bar-fill-completeness.progress-pct-80,
.stepper-line-progress.progress-pct-80 { width: 80%; }
.progress-bar-fill-completeness.progress-pct-85,
.stepper-line-progress.progress-pct-85 { width: 85%; }
.progress-bar-fill-completeness.progress-pct-90,
.stepper-line-progress.progress-pct-90 { width: 90%; }
.progress-bar-fill-completeness.progress-pct-95,
.stepper-line-progress.progress-pct-95 { width: 95%; }
.progress-bar-fill-completeness.progress-pct-100,
.stepper-line-progress.progress-pct-100 { width: 100%; }

.completeness-checklist-grid {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    width: 100%;
}

.checklist-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Work Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #111827;
}

.checklist-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
}

.checklist-icon-badge i {
    font-size: 8px;
}

.checklist-item.done .checklist-icon-badge {
    background-color: #0ea5e9;
    color: #FFFFFF;
}

.checklist-item.pending .checklist-icon-badge {
    background-color: #e5e7eb;
    color: #6b7280;
}

.requirements-alert-box {
    display: flex;
    align-items: center;
    gap: 4px;
    background-color: #f0fdf4;
    border: 1px solid #dcfce7;
    color: #15803d;
    padding: 10px 12px;
    border-radius: 8px;
    font-family: 'Work Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.2px;
    margin-bottom: 0;
}

.alert-sparkle-icon-img {
    width: 12px;
    height: 12px;
    object-fit: contain;
    display: inline-block;
}

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 0;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #111827;
}

.requirement-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background-color: #0ea5e9;
    color: #FFFFFF;
    font-size: 11px;
    flex-shrink: 0;
}

.apply-motivation-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-section-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px 0 32px 0;
    gap: 18px;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.form-section-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 22px;
    box-sizing: border-box;
    width: 100%;
}

.form-section-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 22px;
    box-sizing: border-box;
    width: 100%;
}

.form-section-header .card-section-title {
    margin: 0;
}

.card-section-helper {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.card-subsection-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin: 0 0 10px 0;
}

.textarea-wrapper {
    position: relative;
    width: 100%;
}

.textarea-resizer-icon {
    position: absolute;
    right: 8px;
    bottom: 8px;
    width: 15.75px;
    height: 15.75px;
    pointer-events: none;
}

.form-control-textarea {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 14px;
    color: #1f2937;
    font-family: inherit;
    resize: vertical;
    height: 132px;
    transition: all 0.2s;
}

.form-control-textarea:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

textarea::-webkit-resizer {
    display: none !important;
}

.radio-group-horizontal {
    display: flex;
    gap: 12px;
}

.radio-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-option-label {
    display: inline-flex;
    align-items: center;
    flex: 1;
    gap: 12px;
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    color: #111827;
    font-weight: 500;
    transition: all 0.2s;
    user-select: none;
}

.radio-option-label input[type="radio"],
.radio-option-label-block input[type="radio"] {
    display: none;
}

.radio-option-label.active {
    border: 2px solid #0ea5e9;
    background-color: #f9fafb;
}

.radio-custom-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    position: relative;
    transition: all 0.2s;
}

.radio-option-label.active .radio-custom-circle,
.radio-option-label-block.active .radio-custom-circle {
    border-color: #0ea5e9;
}

.radio-option-label.active .radio-custom-circle::after,
.radio-option-label-block.active .radio-custom-circle::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #0ea5e9;
}

.radio-option-label-block {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 8px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
    background-color: #f9fafb;
}

.radio-option-label-block.active {
    border: 2px solid #0ea5e9;
}

.radio-option-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.radio-option-text strong {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
}

.radio-option-text span {
    font-family: 'Work Sans', sans-serif;
    font-size: 12px;
    color: #6b7280;
}

.animate-fade-in {
    animation: fadeIn 0.3s ease;
}

.date-range-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.btn-add-skill-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: transparent;
    color: #111827;
    border: 1px dashed #e5e7eb;
    border-radius: 12px;
    height: 24px;
    padding: 0 12px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-add-skill-tag:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
}

.skill-badge.clickable {
    cursor: pointer;
    transition: all 0.2s;
}

.skill-badge.clickable:hover {
    background-color: #fee2e2;
    color: #ef4444;
}

.add-skill-inline-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #FFFFFF;
    border: 1px solid #d1d5db;
    border-radius: 20px;
    padding: 4px 10px;
}

.form-control-inline-input {
    border: none;
    font-size: 12px;
    outline: none;
    color: #1f2937;
    width: 100px;
}

.btn-add-inline {
    background: none;
    border: none;
    color: #10b981;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
}

.btn-cancel-inline {
    background: none;
    border: none;
    color: #ef4444;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
}

.form-checkbox-accept-row {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
}

.checkbox-option-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.checkbox-option-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom-box {
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    position: relative;
    transition: all 0.2s;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.checkbox-option-label input[type="checkbox"]:checked + .checkbox-custom-box {
    border-color: #0ea5e9;
    background-color: #0ea5e9;
}

.checkbox-option-label input[type="checkbox"]:checked + .checkbox-custom-box::after {
    display: none;
}

.checkbox-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #111827;
    font-weight: 400;
}

.apply-project-wrapper .form-control {
    width: 100%;
    height: 38px;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 16px;
    color: #1f2937;
    background-color: #FFFFFF;
    box-sizing: border-box;
    font-family: inherit;
    transition: all 0.2s ease-in-out;
}

.apply-project-wrapper .form-control:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}

input[type="date"].form-control {
    position: relative;
    background-image: url('../images/icons/Icons.svg');
    background-repeat: no-repeat;
    background-position: calc(100% - 12px) center;
    background-size: 16px 18px;
    padding-right: 38px;
}

input[type="date"].form-control:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}

.form-control::placeholder,
.form-control-textarea::placeholder {
    color: #6b7280;
    font-size: 14px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    cursor: pointer;
}

.header-back-btn-circle {
    background-color: #ffffff;
    color: #64748b;
    border: 1px solid #cbd5e1;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
    margin-right: 8px;
    padding: 0;
}

.header-back-btn-circle:hover {
    background-color: #f1f5f9;
    color: #334155;
    border-color: #94a3b8;
}

.header-back-btn-circle i {
    font-size: 12px;
}

.profile-verified-badge {
    margin-left: 4px;
    font-size: 14px;
    color: #0ea5e9;
    display: inline-flex;
    align-items: center;
}

[data-theme="dark"] .apply-project-wrapper {
    background-color: var(--bg-color);
    color: var(--text-color);
}

[data-theme="dark"] .apply-project-wrapper .apply-header-stepper-box {
    background-color: var(--card-bg);
    border-bottom-color: var(--border-color);
}

[data-theme="dark"] .apply-project-wrapper .step-circle {
    background-color: var(--bg-color);
    border-color: var(--border-color);
}

[data-theme="dark"] .apply-project-wrapper .step-label {
    color: var(--text-secondary);
}

[data-theme="dark"] .apply-project-wrapper .step-item.active .step-circle {
    border-color: var(--bell-bg);
}

[data-theme="dark"] .apply-project-wrapper .step-item.active .step-circle::after {
    background-color: var(--bell-bg);
}

[data-theme="dark"] .apply-project-wrapper .step-item.active .step-label {
    color: var(--bell-bg);
}

[data-theme="dark"] .apply-project-wrapper .step-item.completed .step-circle {
    border-color: var(--bell-bg);
    background-color: var(--bell-bg);
}

[data-theme="dark"] .apply-project-wrapper .step-item.completed .step-label {
    color: var(--bell-bg);
}

[data-theme="dark"] .apply-project-wrapper .wizard-card,
[data-theme="dark"] .apply-project-wrapper .project-summary-box,
[data-theme="dark"] .apply-project-wrapper .review-card,
[data-theme="dark"] .apply-project-wrapper .success-card {
    background-color: var(--card-bg);
    border-color: var(--border-color);
    color: var(--text-color);
}

[data-theme="dark"] .apply-project-wrapper .apply-header h1,
[data-theme="dark"] .apply-project-wrapper .project-summary-title,
[data-theme="dark"] .apply-project-wrapper .review-title,
[data-theme="dark"] .apply-project-wrapper .review-value,
[data-theme="dark"] .apply-project-wrapper .review-value-quote,
[data-theme="dark"] .apply-project-wrapper .review-profile-name,
[data-theme="dark"] .apply-project-wrapper .success-card h2 {
    color: var(--text-color);
}

[data-theme="dark"] .apply-project-wrapper .apply-header p,
[data-theme="dark"] .apply-project-wrapper .project-summary-spots,
[data-theme="dark"] .apply-project-wrapper .review-subtitle,
[data-theme="dark"] .apply-project-wrapper .review-label,
[data-theme="dark"] .apply-project-wrapper .review-profile-location,
[data-theme="dark"] .apply-project-wrapper .success-card p {
    color: var(--text-secondary);
}

[data-theme="dark"] .apply-project-wrapper .form-group label {
    color: var(--text-color);
}

[data-theme="dark"] .apply-project-wrapper .form-group input,
[data-theme="dark"] .apply-project-wrapper .form-group select,
[data-theme="dark"] .apply-project-wrapper .form-group textarea,
[data-theme="dark"] .apply-project-wrapper .form-control {
    background-color: var(--bg-color);
    border-color: var(--border-color);
    color: var(--text-color);
}

[data-theme="dark"] .apply-project-wrapper .form-group input:focus,
[data-theme="dark"] .apply-project-wrapper .form-group select:focus,
[data-theme="dark"] .apply-project-wrapper .form-group textarea:focus,
[data-theme="dark"] .apply-project-wrapper .form-control:focus {
    border-color: var(--bell-bg);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

[data-theme="dark"] .apply-project-wrapper .btn-add-skill {
    background-color: var(--bg-color);
    color: var(--text-color);
    border-color: var(--border-color);
}

[data-theme="dark"] .apply-project-wrapper .btn-add-skill:hover {
    background-color: var(--dropdown-hover);
}

[data-theme="dark"] .apply-project-wrapper .skill-badge {
    background-color: rgba(56, 189, 248, 0.15);
    color: #38bdf8;
}

[data-theme="dark"] .apply-project-wrapper .skill-badge i,
[data-theme="dark"] .apply-project-wrapper .btn-remove-skill {
    color: #38bdf8;
}

[data-theme="dark"] .apply-project-wrapper .btn-remove-skill:hover {
    color: #0ea5e9;
}

[data-theme="dark"] .apply-project-wrapper .badge-org {
    background-color: var(--bg-color);
    color: var(--text-secondary);
}

[data-theme="dark"] .apply-project-wrapper .review-card-divider,
[data-theme="dark"] .apply-project-wrapper .success-divider {
    background-color: var(--border-color);
}

[data-theme="dark"] .apply-project-wrapper .review-card-divider-dashed-v3 {
    background-image: repeating-linear-gradient(
        to right,
        var(--border-color) 0,
        var(--border-color) 8px,
        transparent 8px,
        transparent 16px
    );
}

[data-theme="dark"] .apply-project-wrapper .header-back-btn-circle {
    background-color: var(--card-bg);
    color: var(--text-secondary);
    border-color: var(--border-color);
}

[data-theme="dark"] .apply-project-wrapper .header-back-btn-circle:hover {
    background-color: var(--dropdown-hover);
    color: var(--text-color);
}

[data-theme="dark"] .apply-project-wrapper .btn-prev {
    background-color: var(--card-bg);
    color: var(--text-color);
    border-color: var(--border-color);
}

[data-theme="dark"] .apply-project-wrapper .btn-prev:hover {
    background-color: var(--dropdown-hover);
}

[data-theme="dark"] .apply-project-wrapper .btn-next,
[data-theme="dark"] .apply-project-wrapper .btn-submit,
[data-theme="dark"] .apply-project-wrapper .btn-view-application {
    background-color: var(--bell-bg);
    color: #ffffff;
    border: none;
}

[data-theme="dark"] .apply-project-wrapper .btn-next:hover,
[data-theme="dark"] .apply-project-wrapper .btn-submit:hover,
[data-theme="dark"] .apply-project-wrapper .btn-view-application:hover {
    background-color: var(--bell-hover);
}

[data-theme="dark"] .apply-project-wrapper .btn-explore-projects {
    background-color: var(--card-bg);
    color: var(--text-color);
    border-color: var(--border-color);
}

[data-theme="dark"] .apply-project-wrapper .btn-explore-projects:hover {
    background-color: var(--dropdown-hover);
}

[data-theme="dark"] .apply-project-wrapper .candidatura-card-details-box-v2 {
    background-color: var(--bg-color);
    border-color: var(--border-color);
}

[data-theme="dark"] .apply-project-wrapper .project-summary-badge {
    background-color: var(--bg-color);
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .wizard-card {
        padding: 24px;
    }
    .stepper-container {
        padding: 0 10px;
    }
    .review-item-columns {
        flex-direction: column;
        gap: 20px;
    }

    .project-summary-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-preview-main {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-preview-details-grid {
        grid-template-columns: 1fr;
    }

    .completeness-checklist-grid {
        flex-direction: column;
        gap: 12px;
    }

    .form-section-header,
    .form-section-body {
        padding-left: 12px;
        padding-right: 12px;
    }

    .date-range-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .profile-preview-card-title,
    .profile-preview-header,
    .profile-preview-details-grid,
    .profile-completeness-card .card-section-title,
    .completeness-body,
    .project-requirements-card .card-section-title,
    .requirements-content-wrapper {
        padding-left: 12px;
        padding-right: 12px;
    }

    .wizard-buttons {
        flex-direction: column-reverse;
        gap: 12px;
    }

    .wizard-buttons .btn-prev,
    .wizard-buttons .btn-next,
    .wizard-buttons .btn-submit {
        width: 100%;
    }

    .review-card-buttons {
        flex-direction: column-reverse;
        gap: 12px;
    }

    .review-card-buttons .btn-prev,
    .review-card-buttons .btn-submit {
        width: 100%;
    }

    .success-card {
        width: 100%;
    }

    .success-header,
    .success-buttons-wrapper {
        padding-left: 12px;
        padding-right: 12px;
    }

    .success-description-wrapper {
        padding: 12px;
    }

    .success-buttons-row {
        flex-direction: column-reverse;
    }

    .success-buttons-row .btn-explore-projects,
    .success-buttons-row .btn-view-application {
        width: 100%;
        flex: none;
    }
}


.main-container:has(.apply-project-wrapper) .main-content,
.main-container:has(.apply-container-loading) .main-content {
    padding: 0 !important;
    margin: 0 !important;
}

.main-container:has(.apply-project-wrapper) .top-header,
.main-container:has(.apply-container-loading) .top-header {
    display: none !important;
}

.apply-error-state {
    text-align: center;
    padding: 40px;
    color: #EF4444;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
    max-width: 500px;
}

.apply-error-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.apply-error-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.apply-error-message {
    color: #6B7280;
    font-size: 0.875rem;
}

.apply-error-retry-btn {
    margin-top: 16px;
    background-color: #3B82F6;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

.svg-mask-luminance {
    mask-type: luminance;
}

.detail-value-strong {
    font-weight: 600;
}

.detail-value-muted {
    color: #94A3B8;
}

.skills-list-spaced {
    margin-bottom: 12px;
}

.skill-remove-icon {
    margin-left: 4px;
    font-size: 10px;
}

.review-value-muted {
    color: #9ca3af;
}

.checkbox-check-icon-sm {
    width: 11.813px;
    height: 8.859px;
}

.consent-error-message {
    margin: 16px 22px 0 22px;
    color: #dc2626;
    font-size: 14px;
    font-weight: 500;
}

.consent-error-icon {
    margin-right: 4px;
}
