/* Step indicator */
.apply-steps {
    display: flex;
    align-items: center;
    gap: 0;
}

.apply-step {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.45;
    transition: opacity 0.3s;
}

    .apply-step.active {
        opacity: 1;
    }

.step-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #282F37;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.apply-step.active .step-num {
    background-color: #198754;
}

.step-label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.apply-step-divider {
    flex: 1;
    height: 2px;
    background-color: #dee2e6;
    margin: 0 12px;
    min-width: 30px;
}

/* Upload card */
.apply-upload-card {
    border: 2px dashed #dee2e6;
    border-radius: 10px;
    transition: border-color 0.2s;
}

.resume-drop-zone {
    cursor: pointer;
    padding: 20px;
    border-radius: 8px;
    transition: background-color 0.2s;
}

    .resume-drop-zone:hover,
    .resume-drop-zone.drag-over {
        background-color: #f0f4ff;
    }

    .resume-drop-zone.drag-over {
        border: 2px dashed #0d6efd;
    }

.resume-selected-info {
    font-size: 14px;
}

/* Form cards */
.apply-form-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.apply-form-card-header {
    background-color: #282F37;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 16px;
}

/* AI-filled badge */
.ai-filled-badge {
    font-size: 10px;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    padding: 2px 6px;
    display: inline-block;
    margin-top: 3px;
    vertical-align: middle;
}

.input-with-badge {
    position: relative;
}

    .input-with-badge .ai-filled-badge {
        position: absolute;
        top: -10px;
        right: 4px;
        z-index: 1;
    }

/* reCAPTCHA */
.g-recaptcha {
    display: inline-block;
}
